Skip to content

Commit 4e42502

Browse files
authored
Prep: Site for 1.2 release (#2877)
1 parent 8e344c7 commit 4e42502

File tree

2 files changed

+51
-5
lines changed

2 files changed

+51
-5
lines changed

site/content/downloads/_index.md

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,48 @@ params:
3030
## Helm Chart
3131
Repo: https://downloads.apache.org/incubator/polaris/helm-chart
3232

33+
## 1.2.0
34+
| Artifact | PGP Sig | SHA-512 |
35+
|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------|
36+
| [source tar.gz](https://dlcdn.apache.org/incubator/polaris/1.2.0-incubating/apache-polaris-1.2.0-incubating.tar.gz) | [.asc](https://downloads.apache.org/incubator/polaris/1.2.0-incubating/apache-polaris-1.2.0-incubating.tar.gz.asc) | [.sha512](https://downloads.apache.org/incubator/polaris/1.2.0-incubating/apache-polaris-1.2.0-incubating.tar.gz.sha512) |
37+
| [binary tgz](https://dlcdn.apache.org/incubator/polaris/1.2.0-incubating/polaris-bin-1.2.0-incubating.tgz) | [.asc](https://downloads.apache.org/incubator/polaris/1.2.0-incubating/polaris-bin-1.2.0-incubating.tgz.asc) | [.sha512](https://downloads.apache.org/incubator/polaris/1.2.0-incubating/polaris-bin-1.2.0-incubating.tgz.sha512) |
38+
| [binary zip](https://dlcdn.apache.org/incubator/polaris/1.2.0-incubating/polaris-bin-1.2.0-incubating.zip) | [.asc](https://downloads.apache.org/incubator/polaris/1.2.0-incubating/polaris-bin-1.2.0-incubating.zip.asc) | [.sha512](https://downloads.apache.org/incubator/polaris/1.2.0-incubating/polaris-bin-1.2.0-incubating.zip.sha512) |
39+
| [Spark 3.5 with Scala 2.12 Client Jar](https://repo1.maven.org/maven2/org/apache/polaris/polaris-spark-3.5_2.12/1.2.0-incubating/polaris-spark-3.5_2.12-1.2.0-incubating-bundle.jar) | [.asc](https://repo1.maven.org/maven2/org/apache/polaris/polaris-spark-3.5_2.12/1.2.0-incubating/polaris-spark-3.5_2.12-1.2.0-incubating-bundle.jar.asc) | [.sha512](https://repo1.maven.org/maven2/org/apache/polaris/polaris-spark-3.5_2.12/1.2.0-incubating/polaris-spark-3.5_2.12-1.2.0-incubating-bundle.jar.sha512) |
40+
| [Spark 3.5 with Scala 2.13 Client Jar](https://repo1.maven.org/maven2/org/apache/polaris/polaris-spark-3.5_2.13/1.2.0-incubating/polaris-spark-3.5_2.13-1.2.0-incubating-bundle.jar) | [.asc](https://repo1.maven.org/maven2/org/apache/polaris/polaris-spark-3.5_2.13/1.2.0-incubating/polaris-spark-3.5_2.13-1.2.0-incubating-bundle.jar.asc) | [.sha512](https://repo1.maven.org/maven2/org/apache/polaris/polaris-spark-3.5_2.13/1.2.0-incubating/polaris-spark-3.5_2.13-1.2.0-incubating-bundle.jar.sha512) |
41+
42+
Apache Polaris 1.2.0-incubating was released on October 23rd, 2025.
43+
- **Upgrade Notes**
44+
- Amazon RDS plugin enabled, this allows polaris to connect to AWS Aurora PostgreSQL using IAM authentication.
45+
46+
- **Breaking changes**
47+
- Creating or altering a namespace with a custom location outside its parent location is now prohibited by default. To restore the old behavior, set the `ALLOW_NAMESPACE_CUSTOM_LOCATION` flag to true.
48+
49+
- **New Features**
50+
- Added a finer grained authorization model for UpdateTable requests. Existing privileges continue to work for granting UpdateTable, such as `TABLE_WRITE_PROPERTIES`.
51+
However, you can now instead grant privileges just for specific operations, such as `TABLE_ADD_SNAPSHOT`
52+
- Added a Management API endpoint to reset principal credentials, controlled by the `ENABLE_CREDENTIAL_RESET` (default: true) feature flag.
53+
- The `ENABLE_SUB_CATALOG_RBAC_FOR_FEDERATED_CATALOGS` was added to support sub-catalog (initially namespace and table) RBAC for federated catalogs.
54+
The setting can be configured on a per-catalog basis by setting the catalog property: `polaris.config.enable-sub-catalog-rbac-for-federated-catalogs`.
55+
The realm-level feature flag `ALLOW_SETTING_SUB_CATALOG_RBAC_FOR_FEDERATED_CATALOGS` (default: true) controls whether this functionality can be enabled or modified at the catalog level.
56+
- Added support for S3-compatible storage that does not have STS (use `stsUavailable: true` in catalog storage configuration)
57+
- Added a Management API endpoint to reset principal credentials, controlled by the `ENABLE_CREDENTIAL_RESET` (default: true) feature flag.
58+
- **Events Persistence (Preview)**: Introduced new event types and added support for persisting events to both Relational JDBC Persistence and AWS CloudWatch.
59+
60+
**Note**: This is a preview feature. The persistence schema is subject to change in future releases, and previously stored event data MAY become unreadable (i.e., dropped) after an upgrade.
61+
62+
- **Changes**
63+
- The following APIs will now return the newly-created objects as part of the successful 201 response: createCatalog, createPrincipalRole, createCatalogRole.
64+
65+
- **Deprecations**
66+
67+
- The property `polaris.active-roles-provider.type` is deprecated and has no effect anymore.
68+
- The EclipseLink Persistence implementation has been deprecated since 1.0.0 and will be completely removed
69+
in 1.3.0 or in 2.0.0 (whichever happens earlier).
70+
- The legacy management endpoints at `/metrics` and `/healthcheck` have been deprecated in 1.2.0 and will be
71+
completely removed in 1.3.0 or in 2.0.0 (whichever happens earlier). Please use the standard management
72+
endpoints at `/q/metrics` and `/q/health` instead.
73+
74+
3375
## 1.1.0
3476
| Artifact | PGP Sig | SHA-512 |
3577
|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------|---|

site/hugo.yaml

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -103,23 +103,27 @@ menu:
103103
- name: "In Development"
104104
url: "/in-dev/unreleased/"
105105
parent: "releases"
106-
weight: 10
106+
weight: 1
107+
- name: "1.2.0"
108+
url: "/releases/1.2.0/"
109+
parent: "releases"
110+
weight: 996
107111
- name: "1.1.0"
108112
url: "/releases/1.1.0/"
109113
parent: "releases"
110-
weight: 20
114+
weight: 997
111115
- name: "1.0.1"
112116
url: "/releases/1.0.1/"
113117
parent: "releases"
114-
weight: 30
118+
weight: 998
115119
- name: "1.0.0"
116120
url: "/releases/1.0.0/"
117121
parent: "releases"
118-
weight: 40
122+
weight: 999
119123
- name: "0.9.0"
120124
url: "/releases/0.9.0/"
121125
parent: "releases"
122-
weight: 50
126+
weight: 1000
123127

124128
- name: "Downloads"
125129
identifier: "downloads"

0 commit comments

Comments
 (0)