You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by sr...@apache.org on 2021/12/15 04:20:12 UTC

[superset] branch john-bodley--fix-updating updated (5f08e03 -> 8673072)

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

srini pushed a change to branch john-bodley--fix-updating
in repository https://gitbox.apache.org/repos/asf/superset.git.


    from 5f08e03  Update UPDATING.md
     add 485852d  ci: temp fix for mysqlclient on an OS regression bug (#17724)
     add 0d2299c  fix: migration out-of-scope bind (#17728)
     add e6db62c  fix: Change datatype of column type in BaseColumn to allow larger datatype names for complexed columns (#17360)
     add 67fdeff  fixed misspelling of apprear to appear (#17735)
     add 12d3079  chore: fixed spelling error on line 1342 of CONTRIBUTING.md (#17737)
     add fceabf6  fix: import dash with missing immune ID (#17732)
     add 89d0d38  fix(Mixed Timeseries Chart): Custom Metric Label  (#17649)
     add 07bbe84  refactor(monorepo): change coverage of core to 100% (#17698)
     add e2e7992  chore: bump FAB to 3.4.1 (#17723)
     add 2633bcc  fix: import dashboard stale filter_scopes (#17741)
     add 215ee08  feat: Update makefile with frontend build (#17734)
     add 63d9693  feat: add main datetime column to dataset editor (#17739)
     add 2a6e5e5  fix: import DB errors (#17748)
     add 37cc2c4  fix: column extra in import/export (#17738)
     add 8673072  Merge branch 'master' into john-bodley--fix-updating

No new revisions were added by this update.

Summary of changes:
 .codecov.yml                                       |   2 +-
 CONTRIBUTING.md                                    |   4 +-
 Makefile                                           |   3 +
 UPDATING.md                                        |   4 +
 requirements/base.txt                              |   2 +-
 scripts/python_tests.sh                            |   5 +
 setup.py                                           |   2 +-
 superset-frontend/jest.config.js                   |   7 +-
 .../src/color/CategoricalColorNamespace.ts         |   7 +-
 .../src/connection/SupersetClientClass.ts          |  15 +-
 .../packages/superset-ui-core/src/utils/random.ts  |   9 +-
 .../test/connection/SupersetClientClass.test.ts    |  49 +++++-
 .../test/translation/Translator.test.ts            |   6 +-
 .../test/translation/TranslatorSingleton.test.ts   |  21 ++-
 .../test/translation/index.test.ts                 |   2 +-
 .../test/translation/languagePacks/en.ts           |   2 +-
 .../test/translation/languagePacks/zh.ts           |   2 +-
 .../superset-ui-core/test/utils/logging.test.ts    |  39 +++--
 .../src/MixedTimeseries/transformProps.ts          |  25 ++-
 superset-frontend/spec/fixtures/mockDatasource.js  |   1 +
 .../src/components/Datasource/DatasourceEditor.jsx |  56 +++++-
 .../Datasource/DatasourceEditor.test.jsx           |  26 +++
 superset-frontend/src/views/CRUD/utils.test.tsx    |  28 +++
 superset-frontend/src/views/CRUD/utils.tsx         |   9 +-
 superset/connectors/base/models.py                 |   2 +-
 superset/dashboards/commands/importers/v1/utils.py |   6 +-
 superset/datasets/commands/export.py               |  15 +-
 superset/datasets/commands/importers/v1/utils.py   |  32 ++--
 superset/datasets/schemas.py                       |   5 +-
 .../datasets/examples/cleaned_sales_data.yaml      |   2 +-
 ...baac5_change_datatype_of_type_in_basecolumn.py} |  23 +--
 ...e27eaf93db_add_extra_config_column_to_alerts.py |   6 +-
 tests/integration_tests/celery_tests.py            |  12 +-
 tests/unit_tests/conftest.py                       |  41 ++++-
 .../unit_tests/{common => dashboards}/__init__.py  |   0
 .../{common => dashboards/commands}/__init__.py    |   0
 .../commands/importers}/__init__.py                |   0
 .../commands/importers/v1}/__init__.py             |   0
 .../dashboards/commands/importers/v1/utils_test.py |  74 ++++++++
 tests/unit_tests/{common => datasets}/__init__.py  |   0
 .../{common => datasets/commands}/__init__.py      |   0
 tests/unit_tests/datasets/commands/export_test.py  | 192 +++++++++++++++++++++
 .../commands/importers}/__init__.py                |   0
 .../commands/importers/v1}/__init__.py             |   0
 .../datasets/commands/importers/v1/import_test.py  | 190 ++++++++++++++++++++
 45 files changed, 795 insertions(+), 131 deletions(-)
 copy superset/migrations/versions/{181091c0ef16_add_extra_column_to_columns_model.py => 3ba29ecbaac5_change_datatype_of_type_in_basecolumn.py} (72%)
 copy tests/unit_tests/{common => dashboards}/__init__.py (100%)
 copy tests/unit_tests/{common => dashboards/commands}/__init__.py (100%)
 copy tests/unit_tests/{common => dashboards/commands/importers}/__init__.py (100%)
 copy tests/unit_tests/{common => dashboards/commands/importers/v1}/__init__.py (100%)
 create mode 100644 tests/unit_tests/dashboards/commands/importers/v1/utils_test.py
 copy tests/unit_tests/{common => datasets}/__init__.py (100%)
 copy tests/unit_tests/{common => datasets/commands}/__init__.py (100%)
 create mode 100644 tests/unit_tests/datasets/commands/export_test.py
 copy tests/unit_tests/{common => datasets/commands/importers}/__init__.py (100%)
 copy tests/unit_tests/{common => datasets/commands/importers/v1}/__init__.py (100%)
 create mode 100644 tests/unit_tests/datasets/commands/importers/v1/import_test.py