Skip to content
This repository has been archived by the owner on Feb 6, 2024. It is now read-only.

1.4.1 release notes #285

Merged
merged 1 commit into from
Oct 23, 2023
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
3 changes: 2 additions & 1 deletion docs/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ theme= "iceberg-theme"
search = true
versions.iceberg = "" # This is populated by the github deploy workflow and is equal to the branch name
versions.nessie = "0.71.0"
latestVersions.iceberg = "1.4.0" # This is used for the version badge on the "latest" site version
latestVersions.iceberg = "1.4.1" # This is used for the version badge on the "latest" site version
BookSection='docs' # This determines which directory will inform the left navigation menu
disableHome=true

Expand All @@ -24,6 +24,7 @@ home = [ "HTML", "RSS", "SearchIndex" ]
[menu]
versions = [
{ name = "latest", pre = "relative", url = "../latest", weight = 1 },
{ name = "1.4.1", pre = "relative", url = "../1.4.1", weight = 987 },
{ name = "1.4.0", pre = "relative", url = "../1.4.0", weight = 988 },
{ name = "1.3.1", pre = "relative", url = "../1.3.1", weight = 989 },
{ name = "1.3.0", pre = "relative", url = "../1.3.0", weight = 990 },
Expand Down
3 changes: 2 additions & 1 deletion landing-page/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ sectionPagesMenu = "main"
siteType = "landing-page"
search = true
description = "The open table format for analytic datasets."
latestVersions.iceberg = "1.4.0"
latestVersions.iceberg = "1.4.1"
docsBaseURL = ""

[[params.social]]
Expand All @@ -34,6 +34,7 @@ home = [ "HTML", "RSS", "SearchIndex" ]
[menu]
versions = [
{ name = "latest", url = "/docs/latest", weight = 1 },
{ name = "1.4.1", url = "/docs/1.4.1", weight = 987 },
{ name = "1.4.0", url = "/docs/1.4.0", weight = 988 },
{ name = "1.3.1", url = "/docs/1.3.1", weight = 989 },
{ name = "1.3.0", url = "/docs/1.3.0", weight = 990 },
Expand Down
17 changes: 16 additions & 1 deletion landing-page/content/common/release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,22 @@ To add a dependency on Iceberg in Maven, add the following to your `pom.xml`:
</dependencies>
```

### 1.4.1 Release

Apache Iceberg 1.4.1 was released on October 23, 2023.
The 1.4.1 release addresses various issues identified in the 1.4.0 release.

* Core
- Core: Do not use a lazy split offset list in manifests ([\#8834](https://github.com/apache/iceberg/pull/8834))
- Core: Ignore split offsets when the last split offset is past the file length ([\#8860](https://github.com/apache/iceberg/pull/8860))
* AWS
- Avoid static global credentials provider which doesn't play well with lifecycle management ([\#8677](https://github.com/apache/iceberg/pull/8677))
* Flink
- Reverting the default custom partitioner for bucket column ([\#8848](https://github.com/apache/iceberg/pull/8848))


## Past releases

### 1.4.0 release

Apache Iceberg 1.4.0 was released on October 4, 2023.
Expand Down Expand Up @@ -167,7 +183,6 @@ The 1.4.0 release adds a variety of new features and bug fixes.
- Bump Arrow to 12.0.1
- Bump AWS Java SDK to 2.20.131

## Past releases

### 1.3.1 release

Expand Down