Nessie 0.67.0
github-actions
released this
02 Aug 16:26
·
2635 commits
to main
since this release
Nessie 0.67.0 release
- 12 commits since 0.66.0
- Maven Central: https://search.maven.org/search?q=g:org.projectnessie+v:0.67.0
- 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.67.0-java
- PyPI: https://pypi.org/project/pynessie/ (See pynessie)
- Helm Chart repo: https://charts.projectnessie.org/
Try it
The attached nessie-quarkus-0.67.0-runner.jar
is a standalone uber-jar file that runs on Java 11 or newer and it is also available via Maven Central. Download and run it (requires Java 11):
wget https://github.com/projectnessie/nessie/releases/download/nessie-0.67.0/nessie-quarkus-0.67.0-runner.jar
java -jar nessie-quarkus-0.67.0-runner.jar
Nessie GC tool is attached as nessie-gc-0.67.0
, which is an executable.
(chmod 744 nessie-gc-0.67.0
after download.)
Can also be run using java -jar nessie-gc-0.67.0
, because it is actually a Java archive.
Shell completion can be generated from the nessie-gc
tool.
The attached nessie-helm-0.67.0.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
Upgrade notes
- Tracing and metrics have been migrated to Quarkus "native". The options to en/disable metrics and tracing have been removed. Please remove the options
nessie.version.store.trace.enable
,nessie.version.store.metrics.enable
from your Nessie settings.
Changes
- Nessie API spec upgraded to 2.1.1
- Support for relative hashes has been standardized and is now allowed in all v2 endpoints
- Migrate to Quarkus metrics and tracing
Full Changelog (minus renovate commits):
- Ninja: CHANGELOG
- Fix running Spark 3.3+ ITs on Java==17 (#7322)
- Nit: remove unused import (#7321)
- Fix NesQuEIT IntelliJ import (#7320)
- Remove metrics.enable and trace.enable properties in QuarkusEventConfig (#7319)
- Move to Quarkus provided observability (#6954)
- Extend relative hash support to whole API v2 (#7308)
- Add .python-version to .gitignore (#7313)
- Simplify BigTableBackendConfig.tablePrefix declaration (#7309)