Skip to content
This repository was archived by the owner on Feb 6, 2024. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ theme= "hugo-book"
BookLogo = "img/iceberg-logo-icon.png"
versions.iceberg = "" # This is populated by the github deploy workflow and is equal to the branch name
versions.nessie = "0.18.0"
latestVersions.iceberg = "0.13.1" # This is used for the version badge on the "latest" site version
latestVersions.iceberg = "0.13.2" # This is used for the version badge on the "latest" site version
BookSection='docs' # This determines which directory will inform the left navigation menu
2 changes: 1 addition & 1 deletion landing-page/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ title = "Apache Iceberg"

[params]
description = "The open table format for analytic datasets."
latestVersions.iceberg = "0.13.1"
latestVersions.iceberg = "0.13.2"
docsBaseURL = ""

[[params.social]]
Expand Down
24 changes: 23 additions & 1 deletion landing-page/content/common/release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,29 @@ To add a dependency on Iceberg in Maven, add the following to your `pom.xml`:
...
</dependencies>
```
## 0.13.2 Release Notes

Apache Iceberg 0.13.2 was released on June XXth, 2022.

**Important bug fixes and changes:**

* **Core**
* [\#4673](https://github.com/apache/iceberg/pull/4673) fixes table corruption from OOM during commit cleanup
* [\#4514](https://github.com/apache/iceberg/pull/4514) row delta delete files were dropped in sequential commits after table format updated to v2
* [\#4464](https://github.com/apache/iceberg/pull/4464) fixes an issue were conflicting transactions have been ignored during a commit
* [\#4520](https://github.com/apache/iceberg/pull/4520) fixes an issue with wrong table predicate filtering with evolved partition specs
* **Spark**
* [\#4663](https://github.com/apache/iceberg/pull/4663) fixes NPEs in Spark value converter
* [\#4687](https://github.com/apache/iceberg/pull/4687) fixes an issue with incorrect aborts when non-runtime exceptions were thrown in Spark
* **Flink**
* Note that there's a correctness issue when using upsert mode in Flink 1.12. Given that Flink 1.12 is deprecated, it was decided to not fix this bug but rather log a warning (see also [\#4754](https://github.com/apache/iceberg/pull/4754)).
* **Nessie**
* [\#4509](https://github.com/apache/iceberg/pull/4509) fixes a NPE that occurred when accessing refreshed tables in NessieCatalog


A more exhaustive list of changes is available under the [0.13.2 release milestone](https://github.com/apache/iceberg/milestone/18?closed=1).

## Past releases

## 0.13.1 Release Notes

Expand All @@ -82,7 +105,6 @@ Apache Iceberg 0.13.1 was released on February 14th, 2022.
* [\#3986](https://github.com/apache/iceberg/pull/3986) fixes manifest location collisions when there are multiple committers
in the same Flink job.

## Past releases

### 0.13.0 Release Notes

Expand Down