Nessie 0.73.0
·
2610 commits
to main
since this release
Nessie 0.73.0 release
- 10 commits since 0.72.4
- Maven Central: https://search.maven.org/search?q=g:org.projectnessie+v:0.73.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.73.0-java
- PyPI: https://pypi.org/project/pynessie/ (See pynessie)
- Helm Chart repo: https://charts.projectnessie.org/
Try it
The attached nessie-quarkus-0.73.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.73.0/nessie-quarkus-0.73.0-runner.jar
java -jar nessie-quarkus-0.73.0-runner.jar
Nessie GC tool is attached as nessie-gc-0.73.0
, which is an executable.
(chmod 744 nessie-gc-0.73.0
after download.)
Can also be run using java -jar nessie-gc-0.73.0
, because it is actually a Java archive.
Shell completion can be generated from the nessie-gc
tool.
The attached nessie-helm-0.73.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
Highlights
- Nessie API spec was upgraded to 2.1.3. The only change is that when a commit attempts to create a content
inside a non-existing namespace, the server will not only return aNAMESPACE_ABSENT
conflict for the
non-existing namespace itself, but will also return additionalNAMESPACE_ABSENT
conflicts for all the
non-existing ancestor namespaces.
New Features
- Nessie client: the OAuth2 authentication provider is now able to recover from transient failures when
refreshing the access token.
Full Changelog (minus renovate commits):
- Update CHANGELOG.md (#7674)
- Expose full set of Bigtable retry settings in BigTableClientsConfig (#7672)
- Report all missing namespaces at once (#7671)
- OAuth2Client: implement fault tolerance (#7669)
- Make Conflict.conflictType non nullable (#7667)
- OAuth2Client: forbid recursive calls to renewTokens() (#7663)