Nessie 0.55.0
github-actions
released this
04 Apr 20:05
·
3430 commits
to main
since this release
Nessie 0.55.0 release
- 40 commits since 0.54.0
- Maven Central: https://search.maven.org/search?q=g:org.projectnessie+v:0.55.0
- Docker images: https://github.com/projectnessie/nessie/pkgs/container/nessie and https://quay.io/repository/projectnessie/nessie?tab=tags
- Multiplatform Java image (amd64, arm64, ppc64le, s390x):
docker pull ghcr.io/projectnessie/nessie:0.55.0-java
- Image with native amd64 binary:
docker pull ghcr.io/projectnessie/nessie:0.55.0-native
(only recommended for short running Nessie instances, amd64 only)
- Multiplatform Java image (amd64, arm64, ppc64le, s390x):
- PyPI: https://pypi.org/project/pynessie/0.55.0/
- Helm Chart repo: https://charts.projectnessie.org/
Try it
The attached executable file nessie-quarkus-0.55.0-runner
is a x86-64 native binary image and only works on compatible Linux environments.
The attached nessie-quarkus-0.55.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.55.0/nessie-quarkus-0.55.0-runner.jar
java -jar nessie-quarkus-0.55.0-runner.jar
Nessie GC tool is attached as nessie-gc
, which is an executable. Can also be run using , because it is actually a Java archive.
Shell completion can be generated from the nessie-gc tool.
The attached nessie-helm-0.55.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.
Full Changelog (minus renovate commits):
- Add min-version + spec-version-bag to
NessieConfiguration
(#6480) - IntelliJ: Exclude build directories in build-tools-integration-tests (#6489)
- Support running compatibility tests with the new data model. (#6484)
- Test code: Refactor
Json
toJsonNode
in tests (#6487) - Bump jaxb-impl from hadoop-common (#6485)
- Let errorprone not check code generated by APTs (#6486)
- Bring back logback logging (#6469)
- Remove concurrent test case execution per class (#6479)
- WF: No more need to schedule contaner-registry sync (#6454)
- Refactor CI workflow - bring back reasonable CI runtime (#6461)
- Do not let Weld register a shutdown hook (#6470)
- Skip empty commits during merge/transplant (#6468)
- Simplify BaseCommitHelper.mergeSquashFastForward() (#6467)
- Nit: remove unused version decl (#6466)
- Fix validation error messages in CommitImpl (#6450)
- Add a convenience
compileAll
Gradle task (#6456) - Fix nessie-perftest-simulations standalone (#6453)
- IntelliJ: Let IntelliJ test-runner default to CHOOSE_PER_TEST again (#6452)
- python: move safety check to separate tox env (#6451)