From c0f4134694994f5b5bcf19bc26a61c548f4650e8 Mon Sep 17 00:00:00 2001 From: "Nessie Release Workflow [bot]" Date: Tue, 29 Nov 2022 18:37:10 +0000 Subject: [PATCH] [release] release nessie-0.45.0 --- README.md | 4 +-- SECURITY.md | 4 +-- helm/nessie/Chart.yaml | 2 +- python/HISTORY.rst | 8 +++++ python/pynessie/__init__.py | 2 +- python/setup.cfg | 2 +- python/setup.py | 2 +- site/docs/try/releases.md | 58 +++++++++++++++++++++++++++++++++ site/docs/try/server-upgrade.md | 2 +- site/mkdocs.yml | 4 +-- ui/package-lock.json | 4 +-- ui/package.json | 2 +- version.txt | 2 +- 13 files changed, 81 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index ffff4c63e3c..ddd183b1fa3 100644 --- a/README.md +++ b/README.md @@ -90,13 +90,13 @@ Nessie Iceberg's integration is compatible with Iceberg as in the following tabl | Nessie version | Iceberg version | Spark version | Hive version | Flink version | Presto version | |----------------|-----------------|----------------------------------------------------------------------|--------------|----------------|----------------| -| 0.44.0 | 1.0.0 | 3.1.x (Scala 2.12), 3.2.x (Scala 2.12+2.13), 3.3.x (Scala 2.12+2.13) | n/a | 1.14.x, 1.15.x | 0.276.x 0.277 | +| 0.45.0 | 1.0.0 | 3.1.x (Scala 2.12), 3.2.x (Scala 2.12+2.13), 3.3.x (Scala 2.12+2.13) | n/a | 1.14.x, 1.15.x | 0.276.x 0.277 | Nessie Delta Lake's integration is compatible with Delta Lake as in the following table: | Nessie version | Delta Lake version | Spark version | |----------------|---------------------------------|---------------| -| 0.44.0 | [Custom](#delta-lake-artifacts) | 3.2.X | +| 0.45.0 | [Custom](#delta-lake-artifacts) | 3.2.X | #### Delta Lake artifacts diff --git a/SECURITY.md b/SECURITY.md index d3a641bc7f0..2e826a688af 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -6,8 +6,8 @@ Currently supported versions are listed below. | Version | Supported | |----------|--------------------| -| 0.44.0 | :white_check_mark: | -| < 0.44.0 | :x: | +| 0.45.0 | :white_check_mark: | +| < 0.45.0 | :x: | All Nessie 0.x.x versions are considered beta or even alpha releases and not supported after release of Nessie 1.0.0. diff --git a/helm/nessie/Chart.yaml b/helm/nessie/Chart.yaml index 7d2d2a56b66..9afdefe368c 100644 --- a/helm/nessie/Chart.yaml +++ b/helm/nessie/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 name: nessie description: A Helm chart for Nessie type: application -version: 0.44.0 +version: 0.45.0 home: https://projectnessie.org/ icon: https://raw.githubusercontent.com/projectnessie/nessie/main/site/docs/img/nessie.svg sources: diff --git a/python/HISTORY.rst b/python/HISTORY.rst index 487405a7557..7de11668267 100644 --- a/python/HISTORY.rst +++ b/python/HISTORY.rst @@ -2,6 +2,14 @@ History ======= +0.45.0 (2022-11-29) +------------------- + +* See release notes and changelog on GitHub: https://github.com/projectnessie/nessie/releases/tag/nessie-0.45.0 +* python: ignore unimportant CVE to fix linting (#5525) +* python: fix lint with new mypy version (#5480) +* Record next development version (#5387) + 0.44.0 (2022-10-18) ------------------- diff --git a/python/pynessie/__init__.py b/python/pynessie/__init__.py index 2f8c7144601..330f636e43d 100644 --- a/python/pynessie/__init__.py +++ b/python/pynessie/__init__.py @@ -23,7 +23,7 @@ __author__ = """Project Nessie""" __email__ = "nessie-release-builder@dremio.com" -__version__ = "0.44.1" +__version__ = "0.45.0" def get_config(config_dir: Optional[str] = None, args: Optional[dict] = None) -> confuse.Configuration: diff --git a/python/setup.cfg b/python/setup.cfg index 8ad3a4cb08c..baa3d7be89c 100644 --- a/python/setup.cfg +++ b/python/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.44.1 +current_version = 0.45.0 commit = False tag = False diff --git a/python/setup.py b/python/setup.py index e37019c0699..f8adfab04c1 100644 --- a/python/setup.py +++ b/python/setup.py @@ -68,6 +68,6 @@ name="pynessie", packages=find_packages(include=["pynessie", "pynessie.*"]), url="https://github.com/projectnessie/nessie", - version="0.44.1", + version="0.45.0", zip_safe=False, ) diff --git a/site/docs/try/releases.md b/site/docs/try/releases.md index 60fa57cad6a..2abcb1aa431 100644 --- a/site/docs/try/releases.md +++ b/site/docs/try/releases.md @@ -2,6 +2,64 @@ **See [Nessie Server upgrade notes](server-upgrade.md) for supported upgrade paths.** +## 0.45.0 Release (November 29, 2022) + +See [Release information on GitHub](https://github.com/projectnessie/nessie/releases/tag/nessie-0.45.0). + +* Fix OpenAPI spec for DiffApi (#5584) +* Content generator: allow functional key patterns and more (#5575) +* CI: auto-destruct spawned Nessie Quarkus runner JVM (#5583) +* Scala/Gradle: keep Scala compiler alive, bump Scala 2.13 to 2.13.10 (#5576) +* Fix BaseExceptionMapper's NPE when an Exception's message is null (#5563) +* Add RefreshContent command (#5551) +* Fix erasing repo descriptions (#5557) +* Perftest: allow passing system properties to launched Nessie (#5556) +* Transfer: completely abstract `DatbaseAdapter` from core export/import (#5555) +* Remove dependency to database-adapter type from `ImportResult` (#5553) +* Deprecate `VersionStore.getRefLog()` (#5554) +* Nessie export/import: update abstraction for file-typed stuff (#5545) +* Nessie CLI: rename `call()` to `callWithDatabaseAdapter()` (#5540) +* Nessie import: check export version (#5543) +* Nessie CLI: Update wording for in-memory warning (#5542) +* Nessie/Quarkus: use `Instance` (#5541) +* Update verification code for Nessie CLI erase-erpository (#5539) +* Add content-info Quarkus CLI command (#5501) +* Reduce memory pressure during Quarkus CLI integration tests. (#5530) +* Bump+change Quarkus builder image to Mandrel + 22.3 (#5526) +* renovate: put python back on weekly schedule (#5519) +* Docs: Update Spark Python/Java API docs (#5517) +* Fix latest Nessie and Iceberg versions in side docs (#5499) +* Refactor Nessie-Jax-RS extension a little bit (#5486) +* renovate: fix fileMatch regexp (#5489) +* fix renovate python requirements file pattern (#5481) +* Proper put-update-operation for namespace-update (#5484) +* Move tests from o.p.jaxrs to o.p.jaxrs.tests (#5483) +* Fix a few checkstyle warnings (#5482) +* Update protobuf plugin to 0.9.1 (#5457) +* Documentation accommodating new version format of Iceberg and Nessie artifacts (#5371) +* Pull `ProtobufHelperPlugin` from `gradle-build-plugins` (#5456) +* Refactor some test code to soft-assertions (#5446) +* Move Merge/Transplant classes to the api.v1.params package (#5435) +* Move old API classes into the api.v1 package (#5419) +* Move some tests from db-adapter test code to verstion-store test code (#5445) +* Support method-level NessieApiVersions annotations (#5436) +* Introduce multi-version API test framework (#5420) +* Extract service-side interfaces for RefLog and Namespace services (#5418) +* Extract common java client builder code (#5411) +* Extract service-side interfaces for client-facing services (#5412) +* Remove OpenAPI spec properties from build script. (#5413) +* Build UI against Nessie API v1 from 0.44.0 (#5408) +* Refactor TestAuthorizationRules (#5399) +* Java 11 HttpClient (#5280) +* Testing/nit: Logging for :nessie-s3minio ITs (#5398) +* Add non-trivial tests for assign branch/tag operations (#5395) +* Fix version in the Nessie Helm Chart (#5392) +* Extract a multi-env test engine into a module. (#5339) +* Move Nessie Client construction into a JUnit5 extension (#5370) +* Record next development version (#5387) +* GH workflows: Add missing `cache-read-only: true` (#5385) +* GH create release WF: next version not properly recorded (#5386) + ## 0.44.0 Release (October 18, 2022) See [Release information on GitHub](https://github.com/projectnessie/nessie/releases/tag/nessie-0.44.0). diff --git a/site/docs/try/server-upgrade.md b/site/docs/try/server-upgrade.md index 569a3e386c9..66e8a97b8e4 100644 --- a/site/docs/try/server-upgrade.md +++ b/site/docs/try/server-upgrade.md @@ -11,7 +11,7 @@ are not supported and must be avoided. | Rolling Upgrade Supported | _From_ Nessie version | _To_ Nessie version | |---------------------------|-----------------------|---------------------| -| :heavy_check_mark: | 0.40.0 or newer | 0.44.0 or newer | +| :heavy_check_mark: | 0.40.0 or newer | 0.45.0 or newer | | :x: | < 0.40.0 | 0.40.0 or newer | | :heavy_check_mark: | 0.26.0 to 0.29.0 | 0.27.0 to 0.30.0 | | :x: | 0.25.0 or older | 0.26.0 or newer | diff --git a/site/mkdocs.yml b/site/mkdocs.yml index 01da16a6135..99a421fc8d5 100644 --- a/site/mkdocs.yml +++ b/site/mkdocs.yml @@ -23,8 +23,8 @@ extra_css: extra: versions: - java: 0.44.0 - python: v0.44.0 + java: 0.45.0 + python: v0.45.0 iceberg: 1.0.0 analytics: provider: google diff --git a/ui/package-lock.json b/ui/package-lock.json index adbc82e1dea..c3e68713ff9 100644 --- a/ui/package-lock.json +++ b/ui/package-lock.json @@ -1,12 +1,12 @@ { "name": "nessie-ui", - "version": "0.44.1", + "version": "0.45.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "nessie-ui", - "version": "0.44.1", + "version": "0.45.0", "dependencies": { "@emotion/react": "^11.10.4", "@emotion/styled": "^11.10.4", diff --git a/ui/package.json b/ui/package.json index 739a8faa5a0..52853c59db3 100644 --- a/ui/package.json +++ b/ui/package.json @@ -1,6 +1,6 @@ { "name": "nessie-ui", - "version": "0.44.1", + "version": "0.45.0", "lockfileVersion": 2, "private": true, "dependencies": { diff --git a/version.txt b/version.txt index 82930a4bd9b..633926453f9 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -0.44.1-SNAPSHOT \ No newline at end of file +0.45.0 \ No newline at end of file