You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by vi...@apache.org on 2022/04/04 10:44:25 UTC

[superset] tag 1.5.0rc1 created (now 031fadbed8)

This is an automated email from the ASF dual-hosted git repository.

villebro pushed a change to tag 1.5.0rc1
in repository https://gitbox.apache.org/repos/asf/superset.git


      at 031fadbed8 (commit)
This tag includes the following new commits:

     new 031fadbed8 chore(releasing): use node 16 for testing and remove redundant updating note (#19505)

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[superset] 01/01: chore(releasing): use node 16 for testing and remove redundant updating note (#19505)

Posted by vi...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

villebro pushed a commit to tag 1.5.0rc1
in repository https://gitbox.apache.org/repos/asf/superset.git

commit 031fadbed8951980f18f692d7c79ad3cf4f0ef05
Author: Ville Brofeldt <33...@users.noreply.github.com>
AuthorDate: Mon Apr 4 13:40:39 2022 +0300

    chore(releasing): use node 16 for testing and remove redundant updating note (#19505)
    
    * chore(releasing): use node 16 for testing
    
    * remove note about required cache
---
 RELEASING/Dockerfile.from_local_tarball | 2 +-
 RELEASING/Dockerfile.from_svn_tarball   | 2 +-
 UPDATING.md                             | 1 -
 3 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/RELEASING/Dockerfile.from_local_tarball b/RELEASING/Dockerfile.from_local_tarball
index be08d6fb95..3cd030609b 100644
--- a/RELEASING/Dockerfile.from_local_tarball
+++ b/RELEASING/Dockerfile.from_local_tarball
@@ -34,7 +34,7 @@ RUN apt-get install -y build-essential libssl-dev \
 
 # Install nodejs for custom build
 # https://nodejs.org/en/download/package-manager/
-RUN curl -sL https://deb.nodesource.com/setup_12.x | bash - \
+RUN curl -sL https://deb.nodesource.com/setup_16.x | bash - \
     && apt-get install -y nodejs
 
 RUN mkdir -p /home/superset
diff --git a/RELEASING/Dockerfile.from_svn_tarball b/RELEASING/Dockerfile.from_svn_tarball
index 5f9bde9c3f..482ab474a5 100644
--- a/RELEASING/Dockerfile.from_svn_tarball
+++ b/RELEASING/Dockerfile.from_svn_tarball
@@ -34,7 +34,7 @@ RUN apt-get install -y build-essential libssl-dev \
 
 # Install nodejs for custom build
 # https://nodejs.org/en/download/package-manager/
-RUN curl -sL https://deb.nodesource.com/setup_12.x | bash - \
+RUN curl -sL https://deb.nodesource.com/setup_16.x | bash - \
     && apt-get install -y nodejs
 
 RUN mkdir -p /home/superset
diff --git a/UPDATING.md b/UPDATING.md
index c02b327385..2f66162fde 100644
--- a/UPDATING.md
+++ b/UPDATING.md
@@ -27,7 +27,6 @@ assists people when migrating to a new version.
 ### Breaking Changes
 
 - [17556](https://github.com/apache/superset/pull/17556): Bumps mysqlclient from v1 to v2
-- [18976](https://github.com/apache/superset/pull/18976): When running the app in debug mode, the app will default to use `SimpleCache` for `FILTER_STATE_CACHE_CONFIG` and `EXPLORE_FORM_DATA_CACHE_CONFIG`. When running in non-debug mode, a cache backend will need to be defined, otherwise the application will fail to start. For installations using Redis or other caching backends, it is recommended to use the same backend for both cache configs.
 - [17881](https://github.com/apache/superset/pull/17881): Previously simple adhoc filter values on string columns were stripped of enclosing single and double quotes. To fully support literal quotes in filters, both single and double quotes will no longer be removed from filter values.
 - [17984](https://github.com/apache/superset/pull/17984): Default Flask SECRET_KEY has changed for security reasons. You should always override with your own secret. Set `PREVIOUS_SECRET_KEY` (ex: PREVIOUS_SECRET_KEY = "\2\1thisismyscretkey\1\2\\e\\y\\y\\h") with your previous key and use `superset re-encrypt-secrets` to rotate you current secrets
 - [15254](https://github.com/apache/superset/pull/15254): Previously `QUERY_COST_FORMATTERS_BY_ENGINE`, `SQL_VALIDATORS_BY_ENGINE` and `SCHEDULED_QUERIES` were expected to be defined in the feature flag dictionary in the `config.py` file. These should now be defined as a top-level config, with the feature flag dictionary being reserved for boolean only values.