Nessie 0.90.4 release
- 30 commits since 0.90.2
- Maven Central: https://search.maven.org/search?q=g:org.projectnessie.nessie+v:0.90.4
- 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.90.4-java - PyPI: https://pypi.org/project/pynessie/ (See pynessie)
- Helm Chart repo: https://charts.projectnessie.org/
Try it
The attached nessie-quarkus-0.90.4-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.90.4/nessie-quarkus-0.90.4-runner.jar
java -jar nessie-quarkus-0.90.4-runner.jar
Nessie GC tool is attached as nessie-gc-0.90.4.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.90.4 --help.
Nessie Server Admin tool is attached as nessie-server-admin-tool-0.90.4-runner.jar, which is a standalone uber-jar file that runs on Java 17 or newer. Shell completion can be generated from the tool, check its help command. Nessie Server Admin tool is also available as a Docker image: docker run --rm ghcr.io/projectnessie/nessie-server-admin:0.90.4 --help.
The attached nessie-helm-0.90.4.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
New Features
- Support for token exchange in the Nessie client has been completely redesigned. The new API and
configuration options are described in the [Nessie authentication settings]. If this feature is
enabled, each time a new access token is obtained, the client will exchange it for another one by
performing a token exchange with the authorization server. We hope that this new feature will
unlock many advanced use cases for Nessie users, such as impersonation and delegation. Please note
that token exchange is considered in beta state and both the API and configuration options are
subject to change at any time; we appreciate early feedback, comments and suggestions.
Full Changelog (minus renovate commits):
- Skip 0.90.3
- Fix compilation failure (#8817)
- Revert commits for 0.90.3 release
- JDBC: add proper support for H2 (#8751)
- Fix cache-deserialization for
UpdateableObj(#8815) - OAuth2Client: refactor scopes (#8814)
- Token exchange: documentation enhancements (#8813)
- Token exchange: more flexible subject / actor configuration (#8812)
- OAuth2Client: integration tests for token exchange (#8810)
- Fix docker-compose files after Keycloak upgrade to 25.0 (#8804)
- HTTP client: introduce specialized HttpClientResponseException (#8806)
- OAuth2Client: internal code cleanup (#8807)
- OAuthClient: configurable subject and actor token types (#8805)
- OAuth2Client: introduce proper support for token exchange (#8803)
- OAuth2Client: don't refresh tokens using token exchange (#8790)
- Disable a test on macOS (#8799)
- Helm chart: minor improvement to JDBC section in docs (#8717)
- Nessie w/ Iceberg REST / post-release site changes (#8510)
- Ninja: fix release-create workflow issues in "create github release" job