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 2020/09/06 10:43:34 UTC

[incubator-superset] branch 0.37 updated (4ce3bd1 -> fa787d2)

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

villebro pushed a change to branch 0.37
in repository https://gitbox.apache.org/repos/asf/incubator-superset.git.


 discard 4ce3bd1  security: disallow uuid package on jinja2 (#10794)
 discard d20125e  fix: pivot table timestamp grouping (#10774)
 discard 0663d49  fix: remove unnecessary exception when exploring non-legacy viz plugins (#10538)
 discard ce00c3d  fix(db-engine-spec): execute oracle DML statement bug in sqllab (#10706)
 discard 634a90a  refactor(database): use SupersetResultSet on SqlaTable.get_df() (#10707)
 discard df1deb2  feat(viz-plugins): add date formatting to pivot-table (#10637)
 discard 7a67a28  feat(row-level-security): add hook for customizing form dropdowns (#10683)
 discard f04d067  fix(filter-box): don't add empty filter to filtersChoices (#10687)
 discard fbe6b29  fix(jinja): extract form_data from json body (#10684)
 discard a037a47  fix: dedup groupby in viz.py while preserving order (#10633)
 discard 19cc65b  fix: allow creating table option and remove schema requirement in dataset add modal (#10369)
 discard cbba961  fix: update time range select tooltip (#10458)
 discard b9f465c  fix(dashboard): add animation state to fix tab switch re-renders (#10475)
 discard eebe3c4  fix: table viz query mode switch not working (#10552)
 discard 2f9ff1e  fix: show error if rolling window returns empty df (#10572)
 discard 6744bab  fix: embedded chart height (#10551)
 discard fdc829d  fix: handle query exceptions gracefully (#10548)
 discard 9a7c392  bugfix: table chart query mode initial value (#10544)
 discard fdb9918  update code (#10430)
 discard d86e4e6  fix: support non-string groupbys for pie chart (#10493)
 discard 1c7022e  fix: pie chart multiple groupbys (#10391)
 discard 003161e  fix: dataset delete and perm delete (#10578)
 discard 8619898  feat: make screenshot timeout configurable (#10517)
 discard 80e19fb  fix: disable false positive error (#10576)
 discard f3feb9c  fix(log): log endpoint authentication (#10435)
 discard ee70955  fix(log): don't log exceptions on test connection (#10522)
     add a72903c  security: disallow uuid package on jinja1 (#10794)
     new fa787d2  bump version and update changelog

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (4ce3bd1)
            \
             N -- N -- N   refs/heads/0.37 (fa787d2)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

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.


Summary of changes:
 CHANGELOG.md                                       |   3 +
 .../explore/visualizations/table.test.ts           |  34 ++---
 superset-frontend/package-lock.json                |  18 +--
 superset-frontend/package.json                     |   6 +-
 .../components/gridComponents/Chart_spec.jsx       |  10 +-
 .../explore/components/FilterBox_spec.jsx          |  61 --------
 superset-frontend/src/chart/Chart.jsx              |   2 -
 superset-frontend/src/chart/ChartRenderer.jsx      |   7 +-
 superset-frontend/src/components/TableSelector.jsx |  70 ++++------
 .../src/dashboard/actions/dashboardState.js        |   8 --
 .../src/dashboard/components/DashboardBuilder.jsx  |   7 -
 .../dashboard/components/gridComponents/Chart.jsx  |  27 +---
 .../dashboard/components/gridComponents/Tabs.jsx   |  11 +-
 .../src/dashboard/containers/DashboardBuilder.jsx  |   2 -
 .../dashboard/containers/DashboardComponent.jsx    |   3 +-
 .../src/dashboard/reducers/dashboardState.js       |  10 --
 superset-frontend/src/explore/App.jsx              |   4 +-
 .../components/controls/DateFilterControl.jsx      |   4 +-
 superset-frontend/src/explore/controlUtils.js      |   4 +-
 .../src/views/datasetList/DatasetModal.tsx         |   4 +-
 .../src/visualizations/FilterBox/FilterBox.jsx     |   2 +-
 superset/common/query_context.py                   |   6 +-
 superset/config.py                                 |  16 ---
 superset/connectors/sqla/models.py                 |  85 +++--------
 superset/connectors/sqla/views.py                  |   3 -
 superset/datasets/commands/delete.py               |  23 +--
 superset/db_engine_specs/base.py                   |   6 +-
 superset/db_engine_specs/bigquery.py               |   4 +-
 superset/db_engine_specs/exasol.py                 |   6 +-
 superset/db_engine_specs/hive.py                   |   6 +-
 superset/db_engine_specs/mssql.py                  |   4 +-
 superset/db_engine_specs/oracle.py                 |  15 +-
 superset/db_engine_specs/postgres.py               |   4 +-
 superset/models/core.py                            |  14 +-
 superset/models/slice.py                           |  13 +-
 superset/tasks/slack_util.py                       |   5 +-
 superset/translations/messages.pot                 |   4 +-
 superset/typing.py                                 |   4 +-
 superset/utils/core.py                             |  10 --
 superset/utils/decorators.py                       |   2 +-
 superset/utils/log.py                              |   2 +-
 superset/utils/screenshots.py                      |   8 +-
 superset/views/core.py                             |  28 ++--
 superset/views/utils.py                            |   8 --
 superset/viz.py                                    | 155 +++++----------------
 tests/charts/api_tests.py                          |  20 +--
 tests/datasets/api_tests.py                        |   7 -
 tests/datasource_tests.py                          |   2 +
 tests/sqla_models_tests.py                         |  25 ----
 tests/utils_tests.py                               |   7 -
 tests/viz_tests.py                                 | 115 +--------------
 51 files changed, 181 insertions(+), 723 deletions(-)
 delete mode 100644 superset-frontend/spec/javascripts/explore/components/FilterBox_spec.jsx


[incubator-superset] 01/01: bump version and update changelog

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

villebro pushed a commit to branch 0.37
in repository https://gitbox.apache.org/repos/asf/incubator-superset.git

commit fa787d2de40a9bf90cf2f365bbc7a75b92227bcd
Author: Ville Brofeldt <vi...@gmail.com>
AuthorDate: Sat Sep 5 20:31:06 2020 +0300

    bump version and update changelog
---
 CHANGELOG.md                   | 3 +++
 superset-frontend/package.json | 2 +-
 2 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index bcb56e0..b7ff624 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -18,6 +18,9 @@ under the License.
 -->
 ## Change Log
 
+### 0.37.1 (2020/09/05 17:28 +00:00)
+- [#10794](https://github.com/apache/incubator-superset/pull/10794) security: disallow uuid package on jinja1 (#10794) (@dpgaspar)
+
 ### 0.37.0 (2020/07/11 08:07 +00:00)
 - [#10450](https://github.com/apache/incubator-superset/pull/10450) fix: excel sheet upload is not working (#10450) (@pphszx)
 - [#10389](https://github.com/apache/incubator-superset/pull/10389) feat: support non-numeric columns in pivot table (#10389) (@villebro)
diff --git a/superset-frontend/package.json b/superset-frontend/package.json
index 9f74206..9857365 100644
--- a/superset-frontend/package.json
+++ b/superset-frontend/package.json
@@ -1,6 +1,6 @@
 {
   "name": "superset",
-  "version": "0.37.0",
+  "version": "0.37.1",
   "description": "Superset is a data exploration platform designed to be visual, intuitive, and interactive.",
   "license": "Apache-2.0",
   "directories": {