Nessie 0.78.0
Nessie 0.78.0 release
- 89 commits since 0.77.1
- Maven Central: https://search.maven.org/search?q=g:org.projectnessie.nessie+v:0.78.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.78.0-java
- PyPI: https://pypi.org/project/pynessie/ (See pynessie)
- Helm Chart repo: https://charts.projectnessie.org/
Try it
The attached nessie-quarkus-0.78.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.78.0/nessie-quarkus-0.78.0-runner.jar
java -jar nessie-quarkus-0.78.0-runner.jar
Nessie GC tool is attached as nessie-gc-0.78.0
, which is an executable.
(chmod 744 nessie-gc-0.78.0
after download.)
Can also be run using java -jar nessie-gc-0.78.0
, because it is actually a Java archive.
Shell completion can be generated from the nessie-gc
tool.
Nessie GC tool is also available as a Docker image:
docker run --rm ghcr.io/projectnessie/nessie-gc:0.78.0 --help
.
The attached nessie-helm-0.78.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
New Features
- GC Tool: ability to skip creating existing tables (IF NOT EXISTS)
- Make
Authorizer
pluggable - Helm chart: add option to set sessionAffinity on Service
Fixes
- Handle re-added keys when creating squash commits
- JDBC backend: infer catalog and schema if not specified
Full Changelog (minus renovate commits):
- Ninja; update CHANGELOG.md
- Add convenience
Namespace.getParentOrEmpty()
(#8170) - Enforce covariant return types in NessieClientBuilder hierarchy (#8164)
- Revert meaning of
@WithInitializedRepository
(#8162) - Handle re-added keys when creating squash commits (#8160)
- HTTP client: add request and response filters programmatically (#8154)
- Reduce flakiness in CustomKeycloakContainer startup (#8153)
- Docker image tool: implement local image builds (#8141)
- JDBC backend: infer catalog and schema if not specified (#8131)
- Bump Scala to 2.12.19 + 2.13.13 (#8125)
- Bump Spark 3.5 to 3.5.1 (#8124)
- APIv2: Properly throw an exception when using
GetEntriesBuilder.namespaceDepth
(#7563) - Update Iceberg version in mkdocs.yml (#8122)
- Testing: Allow test instance
@NessiePersist.configMethod
(#8120) - Update Iceberg version in README.md (#8121)
- Keycloak containers: close admin clients (#8118)
- Remove unnecessary
ServerAccessContext
(#8114) - Add set of roles to
AccessContext
, inject AC instead ofPrincipal
(#8091) - Add test case for re-create table and merge (#8113)
- Add S3 user guide section for Minio (#8102)
- GC Tool: ability to skip creating existing tables (IF NOT EXISTS) (#8081)
- Persist-cache: add config object (#8112)
- Nit/noop: Remove use of anonymous
StoreConfig
impl (#8110) - Nit: correct outdated javadoc (#8107)
- Make
Authorizer
pluggable (#8090) - Helm chart: add option to set sessionAffinity on Service (#8095)
- Fix logging class in
ConfigChecks
(#8089) - Remove unused function in CachingPersistImpl (#8086)