Skip to content
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
35 changes: 33 additions & 2 deletions site/docs/releases.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,39 @@ To add a dependency on Iceberg in Maven, add the following to your `pom.xml`:
</dependencies>
```

### 1.10.2 release

Apache Iceberg 1.10.2 was released on May 18, 2026.

The 1.10.2 release contains bug fixes and security fixes. For full release notes visit [Github](https://github.com/apache/iceberg/releases/tag/apache-iceberg-1.10.2)

* Core
- Fix equality deletes non-deterministic schema ordering ([\#15605](https://github.com/apache/iceberg/pull/15605))
- Load snapshot after commit to prevent accidental file cleanup ([\#15650](https://github.com/apache/iceberg/pull/15650))
- Always merge deletion vectors on commit path ([\#15654](https://github.com/apache/iceberg/pull/15654))
- Do not clean up files when CREATE transactions fail with 503 ([\#15662](https://github.com/apache/iceberg/pull/15662))
- Validate v2 deletes against concurrent format upgrade ([\#16161](https://github.com/apache/iceberg/pull/16161))
- Fix row ID assignment for EXISTING entries during manifest merge ([\#16304](https://github.com/apache/iceberg/pull/16304))
* Flink
- Fix non-deterministic operator UIDs in DynamicIcebergSink ([\#15738](https://github.com/apache/iceberg/pull/15738))
- Fix LICENSE and NOTICE files ([\#16175](https://github.com/apache/iceberg/pull/16175))
* Hive
- Fix trailing slash issue for database paths in HMS ([\#16010](https://github.com/apache/iceberg/pull/16010))
* Spark
- Fix LICENSE and NOTICE files ([\#16255](https://github.com/apache/iceberg/pull/16255))
* AWS
- Fix LICENSE and NOTICE files ([\#16236](https://github.com/apache/iceberg/pull/16236))
* Azure
- Fix LICENSE and NOTICE files ([\#16242](https://github.com/apache/iceberg/pull/16242))
* GCP
- Fix LICENSE and NOTICE files ([\#16244](https://github.com/apache/iceberg/pull/16244))
* Build
- Fix CVE-2025-67721 in io.airlift:aircompressor ([\#15829](https://github.com/apache/iceberg/pull/15829))
- Bump Jackson to 2.21.2 to fix GHSA-72hv-8253-57qq ([\#15847](https://github.com/apache/iceberg/pull/15847))
- Bump Apache Avro from 1.12.0 to 1.12.1 ([\#15607](https://github.com/apache/iceberg/pull/15607))

## Past releases

### 1.10.1 release

Apache Iceberg 1.10.1 was released on Dec 22, 2025.
Expand Down Expand Up @@ -114,8 +147,6 @@ The 1.10.1 release contains bug fixes. For full release notes visit [Github](htt
- AWS: Fix leaked credentials when contacting multiple catalogs ([\#14178](https://github.com/apache/iceberg/pull/14178))
- AWS: Exclude logging dependencies from the bundle ([\#14225](https://github.com/apache/iceberg/pull/14225))

## Past releases

### 1.10.0 release

Apache Iceberg 1.10.0 was released on September 11, 2025.
Expand Down
2 changes: 1 addition & 1 deletion site/mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ markdown_extensions:
permalink: 🔗

extra:
icebergVersion: '1.10.1'
icebergVersion: '1.10.2'
nessieVersion: '0.104.5'
flinkVersion: '2.0.0'
flinkVersionMajor: '2.0'
Expand Down
3 changes: 2 additions & 1 deletion site/nav.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,10 @@ nav:
- Docs:
- Java:
# First entry determines the default landing page for the Docs tab.
- Latest (1.10.1): '!include docs/docs/latest/mkdocs.yml'
- Latest (1.10.2): '!include docs/docs/latest/mkdocs.yml'
- Nightly: '!include docs/docs/nightly/mkdocs.yml'
- Previous:
- 1.10.1: '!include docs/docs/1.10.1/mkdocs.yml'
- 1.10.0: '!include docs/docs/1.10.0/mkdocs.yml'
- 1.9.2: '!include docs/docs/1.9.2/mkdocs.yml'
- 1.9.1: '!include docs/docs/1.9.1/mkdocs.yml'
Expand Down