Skip to content

Commit

Permalink
[release] release nessie-0.93.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Nessie Release Workflow [bot] committed Jul 19, 2024
1 parent a286db6 commit 70c44b1
Show file tree
Hide file tree
Showing 10 changed files with 95 additions and 25 deletions.
22 changes: 16 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,23 @@ as necessary. Empty sections will not end in the release notes.

### Breaking changes

### New Features

### Changes

### Deprecations

### Fixes

### Commits

## [0.93.0] Release (2024-07-19)

### Breaking changes

- The `throttled-retry-after` advanced configuration property was renamed from
`nessie.catalog.service.s3.throttled-retry-after` to
`nessie.catalog.error-handling.throttled-retry-after`. The old property name is ignored.

- Helm chart: a few ADLS-specific options under `catalog.storage.adls` were incorrectly placed and
therefore effectively ignored by Nessie; if you are using ADLS, please re-check your configuration
and adjust it accordingly.
Expand All @@ -31,8 +44,6 @@ as necessary. Empty sections will not end in the release notes.
to provide per-client/table credentials, users have to configure object store credentials when using GCS or
ADLS via the local Iceberg configuration(s).

### Deprecations

### Fixes

- GC: Fix behavior of cutoff policy "num commits", it was 'off by one' and considered the n-th commit as non-live
Expand All @@ -43,8 +54,6 @@ as necessary. Empty sections will not end in the release notes.
- Catalog/ADLS: More informative error message if mandatory `endpoint` is missing.
- Catalog/ADLS: Use a less restrictive endpoint in the 'ObjectIO.ping' function used for health checks.

### Commits

## [0.92.1] Release (2024-07-13)

### Fixes
Expand Down Expand Up @@ -627,7 +636,8 @@ as necessary. Empty sections will not end in the release notes.
- Tests: Make `ITCassandraBackendFactory` less flaky (#7186)
- IntelliJ: Exclude some more directories from indexing (#7181)

[Unreleased]: https://github.com/projectnessie/nessie/compare/nessie-0.92.1...HEAD
[Unreleased]: https://github.com/projectnessie/nessie/compare/nessie-0.93.0...HEAD
[0.93.0]: https://github.com/projectnessie/nessie/compare/nessie-0.92.1...nessie-0.93.0
[0.92.1]: https://github.com/projectnessie/nessie/compare/nessie-0.92.0...nessie-0.92.1
[0.92.0]: https://github.com/projectnessie/nessie/compare/nessie-0.91.3...nessie-0.92.0
[0.91.3]: https://github.com/projectnessie/nessie/compare/nessie-0.91.2...nessie-0.91.3
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ Nessie Iceberg's integration is compatible with Iceberg as in the following tabl

| Nessie version | Iceberg version | Spark version (Scala 2.12+2.13) | Hive version | Flink version | Presto version | Trino version |
|----------------|-----------------|---------------------------------|--------------|------------------------|-------------------------------------|---------------|
| 0.92.1 | 1.5.0 | 3.3.x, 3.4.x, 3.5.x | n/a | 1.16.x, 1.17.x, 1.18.x | 0.277, 0.278.x, 0.279, 0.280, 0.281 | 419 |
| 0.93.0 | 1.5.0 | 3.3.x, 3.4.x, 3.5.x | n/a | 1.16.x, 1.17.x, 1.18.x | 0.277, 0.278.x, 0.279, 0.280, 0.281 | 419 |

### Distribution
To run:
Expand Down
4 changes: 2 additions & 2 deletions SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ Currently supported versions are listed below.

| Version | Supported |
|----------|--------------------|
| 0.92.1 | :white_check_mark: |
| < 0.92.1 | :x: |
| 0.93.0 | :white_check_mark: |
| < 0.93.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.
Expand Down
2 changes: 1 addition & 1 deletion helm/nessie/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: nessie
description: A Helm chart for Nessie
type: application
version: 0.92.1
version: 0.93.0
home: https://projectnessie.org/
icon: https://raw.githubusercontent.com/projectnessie/nessie/main/site/docs/img/nessie.svg
sources:
Expand Down
24 changes: 12 additions & 12 deletions helm/nessie/README.md

Large diffs are not rendered by default.

59 changes: 59 additions & 0 deletions site/docs/releases.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,65 @@

**See [Nessie Server upgrade notes](server-upgrade.md) for supported upgrade paths.**

## 0.93.0 Release (July 19, 2024)

See [Release information on GitHub](https://github.com/projectnessie/nessie/releases/tag/nessie-0.93.0).

### Breaking changes

- The `throttled-retry-after` advanced configuration property was renamed from
`nessie.catalog.service.s3.throttled-retry-after` to
`nessie.catalog.error-handling.throttled-retry-after`. The old property name is ignored.
- Helm chart: a few ADLS-specific options under `catalog.storage.adls` were incorrectly placed and
therefore effectively ignored by Nessie; if you are using ADLS, please re-check your configuration
and adjust it accordingly.

### New Features

- CLI: New `REVERT CONTENT` command to update one or more tables or views to a previous state.

### Changes

- Catalog: ADLS + GCS credentials are no longer sent to the client. It is considered insecure to expose the
server's credentials to clients, even if this is likely very convenient. Unless we have a secure mechanism
to provide per-client/table credentials, users have to configure object store credentials when using GCS or
ADLS via the local Iceberg configuration(s).

### Fixes

- GC: Fix behavior of cutoff policy "num commits", it was 'off by one' and considered the n-th commit as non-live
vs the n-th commit as the last live one.
- GC: Record failed "sweep"/"expire" runs in the repository. Before this fix, failures were reported on the console.
- GC: Fix handling of broken manifest files written by pyiceberg up to 0.6.1
- Catalog/ADLS: Don't let endpoint default to warehouse/object-store URI
- Catalog/ADLS: More informative error message if mandatory `endpoint` is missing.
- Catalog/ADLS: Use a less restrictive endpoint in the 'ObjectIO.ping' function used for health checks.

### Commits
* Add an Operating System check (#9139)
* Cache invalidations: move code to `:nessie-quarkus` (#9137)
* Catalog: decouple bucket name from bucket config key (#9116)
* Catalog/ADLS: change 'ping' endpoint (#9134)
* Add exception mappers to convert storage failures to Iceberg REST client exceptions (#8558)
* CLI: Nicer syntax rendering (#9119)
* CLI: Add `REVERT CONTENT` command (#9120)
* Catalog: update `IcebergManifestFileReader` to handle broken manifest files (#9132)
* Reference caching: update default for negative, update comments/docs (#9126)
* Catalog/ADLS: More information if manadory ADLS endpoint is missing (#9128)
* ninja: changelog
* GC: Manifest file reading with `specById` (#9131)
* Site: notes on Nessie server sizing + tips (#9127)
* Catalog / GCS: minor enhancements (#9107)
* Site: dynamo db note (#9113)
* GC: Record expiry exception in repository + record stack trace as well (#9114)
* Catalog: Don't expose ADLS + GCS credentials (#9100)
* Renovate: automerge action updates (#9106)
* Catalog: Accept object-store locations w/o trailing `/` (#9098)
* Catalog/ADLS: Don't let endpoint default to warehouse/object-store URI (#9102)
* Add `message` argument to `Objects.requireNonNull()` (#9099)
* GC: Fix behavior of cutoff policy "num commits", 'off by one' (#9096)
* Site: Fix links to nessie-bom (#9088)

## 0.92.1 Release (July 13, 2024)

See [Release information on GitHub](https://github.com/projectnessie/nessie/releases/tag/nessie-0.92.1).
Expand Down
2 changes: 1 addition & 1 deletion site/docs/server-upgrade.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ are not supported and must be avoided.

| Rolling Upgrade Supported | _From_ Nessie version | _To_ Nessie version |
|---------------------------|-----------------------|---------------------|
| :heavy_check_mark: | 0.61.0 or newer | 0.92.1 or newer |
| :heavy_check_mark: | 0.61.0 or newer | 0.93.0 or newer |
| :x: | 0.40.0 or newer | 0.61.0 or newer |
| :heavy_check_mark: | 0.40.0 or newer | 0.60.0 or newer |
| :x: | < 0.40.0 | 0.40.0 or newer |
Expand Down
2 changes: 1 addition & 1 deletion site/mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ extra_css:

extra:
versions:
nessie: 0.92.1
nessie: 0.93.0
iceberg: 1.5.2
analytics:
provider: google
Expand Down
1 change: 1 addition & 0 deletions site/nav.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ nav:
- Unreleased (nightly): '!include build/versions/nightly/mkdocs.yml'
# Do NOT change, move or remove the following line!!
# RELEASE_PLACEHOLDER_MARKER
- Nessie 0.93.0: '!include build/versions/0.93.0/mkdocs.yml'
- Nessie 0.92.1: '!include build/versions/0.92.1/mkdocs.yml'
- Nessie 0.92.0: '!include build/versions/0.92.0/mkdocs.yml'
- Nessie 0.91.3: '!include build/versions/0.91.3/mkdocs.yml'
Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.92.2-SNAPSHOT
0.93.0

0 comments on commit 70c44b1

Please sign in to comment.