Skip to content

Nessie 0.73.0

Compare
Choose a tag to compare
@github-actions github-actions released this 27 Oct 16:46
· 2610 commits to main since this release

Nessie 0.73.0 release

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 a NAMESPACE_ABSENT conflict for the
    non-existing namespace itself, but will also return additional NAMESPACE_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)