Skip to content

Nessie 0.104.2

Compare
Choose a tag to compare
@github-actions github-actions released this 12 Jun 19:57
· 504 commits to main since this release

Try it

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

Nessie CLI is attached as nessie-cli-0.104.2.jar, which is a standalone uber-jar file that runs on Java 11 or newer. Nessie CLI is also available as a Docker image: docker run --rm -it ghcr.io/projectnessie/nessie-cli:0.104.2.

Nessie GC tool is attached as nessie-gc-0.104.2.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.104.2 --help.

Nessie Server Admin tool is attached as nessie-server-admin-tool-0.104.2-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.104.2 --help.

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

Changes

  • JDBC: Previously, the JDBC backends and Nessie GC left the fetch-size to its default, which is to fetch
    all rows when a SELECT statement is executed. This is changed to default to a fetch-size of 100 rows.
    To revert to the old behavior, set the corresponding configuration option to 0 (not recommended).
    A corresponding, new command line option for Nessie GC has been introduced as well.

Full Changelog (minus renovate commits):

  • JDBC: Let JDBC fetch-size default to 100 (#10933)
  • Testing/object-storage-mock: fix content-length for HTTP range requests (#10932)
  • Fix error messages in AssertRefSnapshotId (#10860)
  • feat(build): make archive builds reproducible (#10858)
  • Java11-client: don't share the FJP, shutdown (if possible) (#10835)
  • Add public workaround to some tests (#10836)
  • Handle Iceberg NestedField.of() deprecation (#10829)
  • Object-storage-mock: add start/stop log messages (#10832)
  • Move secrets-manager QuarkusTests to src/test/ (#10839)
  • Testing: give Quarkus 4g (#10837)
  • Update AddressResolver, prepare for Vertx 5 (#10838)
  • QUarkus: RestAssured may sometimes have the wrong port (#10840)
  • Multi-env-test-engine cosmetics (#10828)
  • Disable ITOAuth2ClientAuthelia.testOAuth2AuthorizationCode() (#10830)