From 739d09f40145622c8e4199079a8b6b280e0a6d17 Mon Sep 17 00:00:00 2001 From: Beto Dealmeida Date: Tue, 13 Oct 2020 16:54:06 -0700 Subject: [PATCH 1/2] Add note about #11098 --- UPDATING.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/UPDATING.md b/UPDATING.md index a36788c0f671..18bea0d57f21 100644 --- a/UPDATING.md +++ b/UPDATING.md @@ -25,6 +25,8 @@ assists people when migrating to a new version. * [11244](https://github.com/apache/incubator-superset/pull/11244): The `REDUCE_DASHBOARD_BOOTSTRAP_PAYLOAD` feature flag has been removed after being set to True for multiple months. +* [11098](https://github.com/apache/incubator-superset/pull/11098): includes a database migration that adds a column caled `uuid` to all models, and updates the `Dashboard.position_json` column to also have UUIDs of charts. Depending on the number of objects the migration might take up to 3-4 minutes, requiring planning for the downtime. + * [11172](https://github.com/apache/incubator-superset/pull/11172): Breaking change: SQL templating is turned off be default. To turn it on set `ENABLE_TEMPLATE_PROCESSING` to True on `DEFAULT_FEATURE_FLAGS` * [11155](https://github.com/apache/incubator-superset/pull/11155): The `FAB_UPDATE_PERMS` config parameter is no longer required as the Superset application correctly informs FAB under which context permissions should be updated. From bc0a5487c3d5140179e1b98958c26f73f2b6d526 Mon Sep 17 00:00:00 2001 From: Beto Dealmeida Date: Wed, 14 Oct 2020 07:56:16 -0700 Subject: [PATCH 2/2] Update UPDATING.md Better description Co-authored-by: Jesse Yang --- UPDATING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UPDATING.md b/UPDATING.md index 18bea0d57f21..f752884dc343 100644 --- a/UPDATING.md +++ b/UPDATING.md @@ -25,7 +25,7 @@ assists people when migrating to a new version. * [11244](https://github.com/apache/incubator-superset/pull/11244): The `REDUCE_DASHBOARD_BOOTSTRAP_PAYLOAD` feature flag has been removed after being set to True for multiple months. -* [11098](https://github.com/apache/incubator-superset/pull/11098): includes a database migration that adds a column caled `uuid` to all models, and updates the `Dashboard.position_json` column to also have UUIDs of charts. Depending on the number of objects the migration might take up to 3-4 minutes, requiring planning for the downtime. +* [11098](https://github.com/apache/incubator-superset/pull/11098): includes a database migration that adds a `uuid` column to most models, and updates `Dashboard.position_json` to include chart UUIDs. Depending on number of objects, the migration may take up to 5 minutes, requiring planning for downtime. * [11172](https://github.com/apache/incubator-superset/pull/11172): Breaking change: SQL templating is turned off be default. To turn it on set `ENABLE_TEMPLATE_PROCESSING` to True on `DEFAULT_FEATURE_FLAGS`