Nessie 0.77.1
Nessie 0.77.1 release
- 1 commits since 0.77.0
- Maven Central: https://search.maven.org/search?q=g:org.projectnessie.nessie+v:0.77.1
- Docker images: https://github.com/projectnessie/nessie/pkgs/container/nessie and https://quay.io/repository/projectnessie/nessie?tab=tags
It is a multiplatform Java image (amd64, arm64, ppc64le, s390x):docker pull ghcr.io/projectnessie/nessie:0.77.1-java
- PyPI: https://pypi.org/project/pynessie/ (See pynessie)
- Helm Chart repo: https://charts.projectnessie.org/
Try it
The attached nessie-quarkus-0.77.1-runner.jar
is a standalone uber-jar file that runs on Java 17 or newer and it is also available via Maven Central. Download and run it (requires Java 17):
wget https://github.com/projectnessie/nessie/releases/download/nessie-0.77.1/nessie-quarkus-0.77.1-runner.jar
java -jar nessie-quarkus-0.77.1-runner.jar
Nessie GC tool is attached as nessie-gc-0.77.1
, which is an executable.
(chmod 744 nessie-gc-0.77.1
after download.)
Can also be run using java -jar nessie-gc-0.77.1
, because it is actually a Java archive.
Shell completion can be generated from the nessie-gc
tool.
Nessie GC tool is also available as a Docker image:
docker run --rm ghcr.io/projectnessie/nessie-gc:0.77.1 --help
.
The attached nessie-helm-0.77.1.tgz
is a packaged Helm chart, which can be downloaded and installed via Helm.
There is also the Nessie Helm chart repo, which can be added and used to install the Nessie Helm chart.
Changelog
Highlights
- The Nessie GC tool is now published as a Docker image. See the GC Tool documentation
page for more. - Remove synchronizing to docker.io container registry, only publish to ghcr.io and quay.io.
Upgrade notes
- Projectnessie no longer publishes container images to docker.io/Docker Hub. Container images are
available from ghcr.io and quay.io.
New Features
- Add some configuration checks to highlight probably production issues
- Publish Docker images for the GC tool
Changes
- Disable default OIDC tenant when authentication is disabled
- Disable OpenTelemetry SDK when no endpoint is defined
Fixes
- Fix VersionStore panels of the Grafana dashboard
Full Changelog (minus renovate commits):
- Fix release-publishing (#8069)