Skip to content

Nessie 0.82.0

Compare
Choose a tag to compare
@github-actions github-actions released this 06 May 10:59
· 297 commits to main since this release

Nessie 0.82.0 release

Try it

The attached nessie-quarkus-0.82.0-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.82.0/nessie-quarkus-0.82.0-runner.jar
java -jar nessie-quarkus-0.82.0-runner.jar

Nessie GC tool is attached as nessie-gc-0.82.0.jar, which is a standalone uber-jar file that runs on Java 11 or newer. Shell completion can be generated from the tool, check its help command. Nessie GC tool is also available as a Docker image: docker run --rm ghcr.io/projectnessie/nessie-gc:0.82.0 --help.

The attached nessie-helm-0.82.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

Breaking changes

  • The readiness, liveness, metrics and Swagger-UI endpoints starting with /q/ have been moved from the
    HTTP port exposing the REST endpoints to a different HTTP port (9000),
    see Quarkus management interface reference docs.
    Any path starting with /q/ can be safely removed from a possibly customized configuration
    nessie.server.authentication.anonymous-paths.
  • The move of the above endpoints to the management port requires using the Nessie Helm chart for this
    release or a newer release. Also, the Helm Chart for this release will not work with older Nessie
    releases.

Full Changelog (minus renovate commits):

  • Doc-gen: trim-right before style changes (#8459)
  • Site: Fix release-workflow version bump mistakes (#8454)
  • Site: split release notes pages (#8453)
  • Move management endpoints to separate HTTP port (#8207)
  • Site: let site use wider horizontal space (#8452)
  • OAuthClient: fix AbstractFlow.isAboutToExpire (#8423)