From f0e0b75f7b626a60f34b615ad86d01a60b76a946 Mon Sep 17 00:00:00 2001 From: Prashant Date: Wed, 24 Sep 2025 16:36:08 -0700 Subject: [PATCH 1/2] Docs: Add more details about v1 schema user to upgrade from 1.0 to 1.1 --- CHANGELOG.md | 3 +++ site/content/downloads/_index.md | 3 +++ 2 files changed, 6 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index c58bdab1c3..1f00ddd256 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -107,7 +107,10 @@ Apache Polaris 1.1.0-incubating was released on September 19th, 2025. ON CONFLICT (version_key) DO UPDATE SET version_value = EXCLUDED.version_value; COMMENT ON TABLE version IS 'the version of the JDBC schema in use'; + + ALTER TABLE polaris_schema.entities ADD COLUMN IF NOT EXISTS location_without_scheme TEXT; ``` + - Please don't enable [OPTIMIZED_SIBLING_CHECK](https://github.com/apache/polaris/blob/740993963cb41c2c1b4638be5e04dd00f1263c98/polaris-core/src/main/java/org/apache/polaris/core/config/FeatureConfiguration.java#L346) feature configuration, once the above SQL statements are run. As it may lead to incorrect behavior. - **Deprecations** - The property `polaris.active-roles-provider.type` is deprecated for removal. - The `ActiveRolesProvider` interface is deprecated for removal. diff --git a/site/content/downloads/_index.md b/site/content/downloads/_index.md index b351f8ca01..18320d6ee4 100644 --- a/site/content/downloads/_index.md +++ b/site/content/downloads/_index.md @@ -69,7 +69,10 @@ Apache Polaris 1.1.0-incubating was released on September 19th, 2025. ON CONFLICT (version_key) DO UPDATE SET version_value = EXCLUDED.version_value; COMMENT ON TABLE version IS 'the version of the JDBC schema in use'; + + ALTER TABLE polaris_schema.entities ADD COLUMN IF NOT EXISTS location_without_scheme TEXT; ``` + - Please don't enable [OPTIMIZED_SIBLING_CHECK](https://github.com/apache/polaris/blob/740993963cb41c2c1b4638be5e04dd00f1263c98/polaris-core/src/main/java/org/apache/polaris/core/config/FeatureConfiguration.java#L346) feature configuration, once the above SQL statements are run. As it may lead to incorrect behavior. ## 1.0.1 | Artifact | PGP Sig | SHA-512 | From 7ae27aecb25d7848b9eaa10e075bdb9f6b84b2c6 Mon Sep 17 00:00:00 2001 From: Prashant Date: Wed, 24 Sep 2025 18:21:11 -0700 Subject: [PATCH 2/2] Address review feedback --- CHANGELOG.md | 2 +- site/content/downloads/_index.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1f00ddd256..eba8e85551 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -110,7 +110,7 @@ Apache Polaris 1.1.0-incubating was released on September 19th, 2025. ALTER TABLE polaris_schema.entities ADD COLUMN IF NOT EXISTS location_without_scheme TEXT; ``` - - Please don't enable [OPTIMIZED_SIBLING_CHECK](https://github.com/apache/polaris/blob/740993963cb41c2c1b4638be5e04dd00f1263c98/polaris-core/src/main/java/org/apache/polaris/core/config/FeatureConfiguration.java#L346) feature configuration, once the above SQL statements are run. As it may lead to incorrect behavior. + - Please don't enable [OPTIMIZED_SIBLING_CHECK](https://github.com/apache/polaris/blob/740993963cb41c2c1b4638be5e04dd00f1263c98/polaris-core/src/main/java/org/apache/polaris/core/config/FeatureConfiguration.java#L346) feature configuration, once the above SQL statements are run. As it may lead to incorrect behavior, due to missing data for location_without_scheme column. - **Deprecations** - The property `polaris.active-roles-provider.type` is deprecated for removal. - The `ActiveRolesProvider` interface is deprecated for removal. diff --git a/site/content/downloads/_index.md b/site/content/downloads/_index.md index 18320d6ee4..f941ace4a2 100644 --- a/site/content/downloads/_index.md +++ b/site/content/downloads/_index.md @@ -72,7 +72,7 @@ Apache Polaris 1.1.0-incubating was released on September 19th, 2025. ALTER TABLE polaris_schema.entities ADD COLUMN IF NOT EXISTS location_without_scheme TEXT; ``` - - Please don't enable [OPTIMIZED_SIBLING_CHECK](https://github.com/apache/polaris/blob/740993963cb41c2c1b4638be5e04dd00f1263c98/polaris-core/src/main/java/org/apache/polaris/core/config/FeatureConfiguration.java#L346) feature configuration, once the above SQL statements are run. As it may lead to incorrect behavior. + - Please don't enable [OPTIMIZED_SIBLING_CHECK](https://github.com/apache/polaris/blob/740993963cb41c2c1b4638be5e04dd00f1263c98/polaris-core/src/main/java/org/apache/polaris/core/config/FeatureConfiguration.java#L346) feature configuration, once the above SQL statements are run. As it may lead to incorrect behavior, due to missing data for location_without_scheme column. ## 1.0.1 | Artifact | PGP Sig | SHA-512 |