You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by ma...@apache.org on 2018/05/08 05:20:29 UTC

[incubator-superset] branch 0.25 updated (31a70e0 -> 93c9681)

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

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


    from 31a70e0  0.25.0rc3
     add d533ce0  [pylint] prepping for enabling pylint for non-errors (#4884)
     add 31f4266  translations: rename pt_BR gettext files (#4907)
     add 709a71b  requirements: bump gunicorn to 19.8.0 (#4906)
     add 3c7feb7  Heatmap improvements (#4897)
     add e1d2150  Add note about 0.25.0 upgrade in UPDATING.md (#4883)
     add 8c94e1f  Fix country_map visualization URL (#4913)
     add 9c53323  Replace NaN/Infinity with null (#4908)
     add 13da5a8  Fix for week_start_sunday and week_ending_saturday (#4911)
     add 5f6a1ce  Fix typos from linting (#4918)
     add fa4acb1  Add doc entry for BigQuery support (#4917)
     add e213ccd  [bufix] filtered column was removed (#4921)
     add 5d6e59a  Support Apache Kylin in EngineSpec (#4925)
     add 976e43e  Install superset in Kubernetes with helm chart (#4923)
     add e2d5c33  Hide restricted ui elements, remove <br> from error message (#4900)
     add 440fb77  [druid] Updating Druid refresh metadata tests (#4887)
     add 52a6bd1  rm-slices (#4899)
     add 58a02bb  Add Windsor.ai to the list of organizations (#4940)
     add f5b6367  add Airboxlab to Superset users list (#4938)
     add 8933365  Add Portugal to country_map visualization  (#4939)
     add e47d8a5  help sqllab forget the past
     add ab958c6  make queries older than 6 hours timeout
     add d87504c  Merge pull request #4833 from timifasubaa/help_sqllab_forget_the_past
     add a60d577  Update installation.rst (#4930)
     add 415d1c0  [sql lab] handle query stop race condition (#4928)
     add f21ba1a  [docs] add entry for Hive in installation.rst (#4942)
     add be69239  Merge branch 'master' into 0.25
     add 93c9681  0.25.0

No new revisions were added by this update.

Summary of changes:
 .gitignore                                         |   1 +
 .pylintrc                                          |   2 +-
 README.md                                          |   2 +
 UPDATING.md                                        |   7 +-
 docs/installation.rst                              |  21 +++-
 install/helm/superset/.helmignore                  |  21 ++++
 install/helm/superset/Chart.yaml                   |   9 ++
 install/helm/superset/templates/NOTES.txt          |  19 ++++
 install/helm/superset/templates/_helpers.tpl       |  32 ++++++
 install/helm/superset/templates/configmap.yaml     |  11 ++
 install/helm/superset/templates/deployment.yaml    |  50 +++++++++
 install/helm/superset/templates/ingress.yaml       |  38 +++++++
 install/helm/superset/templates/service.yaml       |  19 ++++
 install/helm/superset/values.yaml                  |  45 ++++++++
 requirements.txt                                   |   2 +-
 superset/__init__.py                               |   1 +
 superset/assets/package.json                       |   2 +-
 .../assets/spec/javascripts/modules/time_spec.js   |  58 +++++++++++
 .../src/SqlLab/components/QueryAutoRefresh.jsx     |  11 +-
 superset/assets/src/SqlLab/reducers.js             |   5 +-
 superset/assets/src/addSlice/AddSliceContainer.jsx |   2 +-
 superset/assets/src/chart/chartAction.js           |   1 +
 superset/assets/src/components/AlteredSliceTag.jsx |   2 +-
 .../assets/src/dashboard/components/Controls.jsx   |  30 +++---
 .../assets/src/dashboard/components/SaveModal.jsx  |   4 +-
 .../assets/src/dashboard/components/SliceAdder.jsx |  10 +-
 .../src/dashboard/components/SliceHeader.jsx       |  54 ++++++----
 superset/assets/src/explore/controls.jsx           |  13 ++-
 superset/assets/src/explore/visTypes.js            |  12 +--
 superset/assets/src/modules/time.js                |  28 ++++-
 .../src/visualizations/countries/portugal.geojson  |  22 ++++
 superset/assets/src/visualizations/country_map.js  |   2 +-
 superset/assets/src/visualizations/heatmap.js      |  14 +--
 superset/cache_util.py                             |   1 +
 superset/cli.py                                    |   1 +
 superset/config.py                                 |   1 +
 superset/connectors/base/models.py                 |   1 +
 superset/connectors/base/views.py                  |   1 +
 superset/connectors/connector_registry.py          |   1 +
 superset/connectors/druid/models.py                |   1 +
 superset/connectors/druid/views.py                 |   1 +
 superset/connectors/sqla/models.py                 |  11 +-
 superset/connectors/sqla/views.py                  |   1 +
 superset/data/__init__.py                          |   1 +
 superset/dataframe.py                              |   1 +
 superset/db_engine_specs.py                        |  47 +++++++--
 superset/db_engines/hive.py                        |   1 +
 superset/dict_import_export_util.py                |   1 +
 superset/exceptions.py                             |   2 +-
 superset/extract_table_names.py                    |   1 +
 superset/forms.py                                  |   1 +
 superset/import_util.py                            |   1 +
 superset/jinja_context.py                          |   1 +
 superset/legacy.py                                 |   1 +
 superset/migrations/env.py                         |   1 +
 superset/models/annotations.py                     |   1 +
 superset/models/core.py                            |   1 +
 superset/models/helpers.py                         |   1 +
 superset/models/sql_lab.py                         |   1 +
 superset/security.py                               |   1 +
 superset/sql_lab.py                                |   9 +-
 superset/sql_parse.py                              |   1 +
 superset/stats_logger.py                           |   1 +
 .../pt_BR/LC_MESSAGES/{pt_BR.mo => messages.mo}    | Bin
 .../pt_BR/LC_MESSAGES/{pt_BR.po => messages.po}    |   0
 superset/translations/utils.py                     |   1 +
 superset/utils.py                                  |   1 +
 superset/views/annotations.py                      |   1 +
 superset/views/base.py                             |   1 +
 superset/views/core.py                             |  45 +++++++-
 superset/views/sql_lab.py                          |   1 +
 superset/views/utils.py                            |   1 +
 superset/viz.py                                    |  12 +--
 tests/druid_tests.py                               | 114 +++++++++++----------
 tox.ini                                            |   2 +-
 75 files changed, 662 insertions(+), 162 deletions(-)
 create mode 100644 install/helm/superset/.helmignore
 create mode 100644 install/helm/superset/Chart.yaml
 create mode 100644 install/helm/superset/templates/NOTES.txt
 create mode 100644 install/helm/superset/templates/_helpers.tpl
 create mode 100644 install/helm/superset/templates/configmap.yaml
 create mode 100644 install/helm/superset/templates/deployment.yaml
 create mode 100644 install/helm/superset/templates/ingress.yaml
 create mode 100644 install/helm/superset/templates/service.yaml
 create mode 100644 install/helm/superset/values.yaml
 create mode 100644 superset/assets/spec/javascripts/modules/time_spec.js
 create mode 100644 superset/assets/src/visualizations/countries/portugal.geojson
 rename superset/translations/pt_BR/LC_MESSAGES/{pt_BR.mo => messages.mo} (100%)
 rename superset/translations/pt_BR/LC_MESSAGES/{pt_BR.po => messages.po} (100%)

-- 
To stop receiving notification emails like this one, please contact
maximebeauchemin@apache.org.