You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by gr...@apache.org on 2019/03/18 23:16:38 UTC

[incubator-superset] branch release--0.31 updated (5ace576 -> e7272d9)

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

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


    from 5ace576  0.31.0rc17
     new 50accda  [fix] Cursor jumping when editing chart and dashboard titles (#7038)
     new bd65942  Changing time table viz to pass formatTime a date (#7020)
     new c54b067  [db-engine-spec] Aligning Hive/Presto partition logic (#7007)
     new b3af6a2  [fix] explore chart from dashboard missed slice title (#7046)
     new 0ebdb56  fix inaccurate data calculation with adata rolling and contribution (#7035)
     new 8ef2789  Adding warning message for sqllab save query (#7028)
     new 6b89541  [datasource] Ensuring consistent behavior of datasource editing/saving. (#7037)
     new a5d9a4e  Adding template_params to datasource editor for sqla tables (#6869)
     new e967b26  [sqla] Fixing order-by for non-inner-joins (#6862)
     new f454ded  [main] Disable resetting main DB attributes (#6845)
     new 5d8dd14  [csv-upload] Fixing message encoding (#6971)
     new 9dd7e84  [sql-parse] Fixing LIMIT exceptions (#6963)
     new 2357c4a  Adding custom control overrides (#6956)
     new b64a452  [sql lab] improve table name detection in free form SQL (#6793)
     new c43d0fd  [sqlparse] Fixing table name extraction for ill-defined query (#7029)
     new e7272d9  0.31.0rc17

The 3867 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:
 superset/assets/package-lock.json                  |  2 +-
 superset/assets/package.json                       |  2 +-
 .../assets/src/SqlLab/components/SaveQuery.jsx     | 14 ++++
 .../assets/src/SqlLab/components/SqlEditor.jsx     |  3 +
 .../src/SqlLab/components/TabbedSqlEditors.jsx     |  4 +
 superset/assets/src/components/EditableTitle.jsx   | 30 +++-----
 .../assets/src/dashboard/actions/dashboardState.js |  5 +-
 .../assets/src/datasource/DatasourceEditor.jsx     |  8 ++
 .../explore/components/controls/MetricsControl.jsx | 31 +++++++-
 .../controlPanels/extraOverrides.js}               |  6 +-
 superset/assets/src/explore/controlPanels/index.js |  5 +-
 .../src/visualizations/TimeTable/TimeTable.jsx     |  3 +-
 superset/config.py                                 |  3 +
 superset/connectors/sqla/models.py                 | 38 +++++++---
 superset/db_engine_specs.py                        | 24 +++---
 superset/sql_parse.py                              | 88 ++++++++++------------
 superset/utils/core.py                             |  8 +-
 superset/views/base.py                             |  1 +
 superset/views/core.py                             |  2 +-
 superset/views/datasource.py                       | 11 +--
 superset/viz.py                                    |  8 +-
 tests/core_tests.py                                |  5 +-
 tests/db_engine_specs_test.py                      | 14 ++++
 tests/sql_parse_tests.py                           | 47 +++++++++++-
 24 files changed, 239 insertions(+), 123 deletions(-)
 copy superset/assets/src/{chart/chart.css => explore/controlPanels/extraOverrides.js} (84%)