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

github-bot pushed a change to branch dependabot/npm_and_yarn/docs/lodash-4.17.21
in repository https://gitbox.apache.org/repos/asf/superset.git.


 discard ce04868  build(deps): bump lodash from 4.17.19 to 4.17.21 in /docs
     add 7d28225  build(deps): bump ssri from 6.0.1 to 6.0.2 in /docs (#14227)
     add 6d786d4  fix: Adds space under dataset change warning (#14582)
     add ada3809  fix: bring back dashboard perf logger (#14584)
     add bfbf767  fix: dashboard side actions (#14587)
     add 0d240c3  fix: properly keep state on queryEditorSetSql on tabstateview 
PUT (#14579)
     add 76a06a7  use pre-commit instead (#14581)
     add f1c32b9  feat(native-filters): add sort metric to select (#14590)
     add 31f406a  feat: API endpoint to validate databases using separate 
parameters (#14420)
     add 5f7722c  fix: error icon spacing in explore (#14597)
     add 3eef38f  refactor: change xsm Icons and dnd icons to new dynamic icons 
(#14419)
     add 331eb10  refactor: Bootstrap to AntD - Form - iteration 4 (#14546)
     add ad699e8  fix: don't show busted label for unknown data types (#14585)
     add 3f6bd1e  feat: add generic type to column payload (#14547)
     add 1248ea6  build(deps): bump lodash from 4.17.19 to 4.17.21 in /docs

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   (ce04868)
            \
             N -- N -- N   
refs/heads/dependabot/npm_and_yarn/docs/lodash-4.17.21 (1248ea6)

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.

No new revisions were added by this update.

Summary of changes:
 Makefile                                           |   4 +-
 docs/package-lock.json                             |   6 +-
 docs/src/pages/docs/Miscellaneous/issue_codes.mdx  |  24 +
 .../integration/dashboard/dashboard.helper.ts      |   4 +-
 .../cypress/integration/dashboard/load.test.ts     |   9 +-
 .../integration/explore/annotations.test.ts        |  14 +-
 superset-frontend/package-lock.json                | 604 ++++++++++-----------
 superset-frontend/package.json                     |  56 +-
 .../components/ColumnTypeLabel_spec.jsx            |  15 +-
 .../spec/javascripts/datasource/fixtures.tsx       |  11 +-
 .../explore/components/TextArea_spec.jsx           |   8 +-
 superset-frontend/src/CRUD/Field.jsx               |  40 +-
 superset-frontend/src/CRUD/Fieldset.jsx            |   4 +-
 superset-frontend/src/SqlLab/actions/sqlLab.js     |   2 +-
 .../src/components/Alert/Alert.stories.tsx         |   8 +-
 superset-frontend/src/components/Alert/index.tsx   |  12 +-
 .../src/components/DeleteModal/index.tsx           |  17 +-
 .../src/components/ErrorMessage/types.ts           |   5 +
 superset-frontend/src/dashboard/actions/hydrate.js |   3 -
 .../DashboardBuilder/DashboardContainer.tsx        |   1 +
 .../src/datasource/ChangeDatasourceModal.tsx       |  45 +-
 .../src/datasource/DatasourceEditor.jsx            |  14 +-
 .../explore/components/PropertiesModal/index.tsx   |  62 +--
 .../src/explore/components/QueryAndSaveBtns.jsx    |   5 +-
 .../DndFilterSelect.test.tsx                       |  11 +-
 .../controls/DndColumnSelectControl/Option.tsx     |   7 +-
 ...AdhocFilterEditPopoverSimpleTabContent.test.jsx |   3 +-
 .../index.jsx                                      | 139 +++--
 .../AdhocFilterEditPopoverSqlTabContent.test.jsx   |   3 +-
 .../AdhocFilterEditPopoverSqlTabContent/index.jsx  |   9 +-
 .../AdhocFilterOption/AdhocFilterOption.test.tsx   |   2 +-
 .../explore/components/controls/HiddenControl.jsx  |   4 +-
 .../MetricControl/AdhocMetricEditPopoverTitle.jsx  |   4 +-
 .../components/controls/OptionControls/index.tsx   |   8 +-
 .../components/controls/TextAreaControl.jsx        |  19 +-
 .../components/controls/TextControl/index.tsx      |  35 +-
 .../src/filters/components/Range/buildQuery.ts     |   6 +-
 .../filters/components/Select/buildQuery.test.ts   |  59 ++
 .../src/filters/components/Select/buildQuery.ts    |   1 +
 .../components/TimeGrain/TimeGrainFilterPlugin.tsx |  10 +-
 superset-frontend/src/views/store.ts               |   6 +-
 superset/config.py                                 |   2 +-
 superset/connectors/base/models.py                 |  17 +
 superset/connectors/sqla/models.py                 |  11 +
 superset/constants.py                              |   1 +
 superset/databases/api.py                          |  57 ++
 superset/databases/commands/exceptions.py          |  14 +-
 superset/databases/commands/validate.py            | 127 +++++
 superset/databases/schemas.py                      |  32 +-
 superset/db_engine_specs/base.py                   |  90 ++-
 superset/db_engine_specs/bigquery.py               |   5 +-
 superset/db_engine_specs/cockroachdb.py            |   1 +
 superset/db_engine_specs/mssql.py                  |   8 +-
 superset/db_engine_specs/mysql.py                  |   6 +-
 superset/db_engine_specs/postgres.py               |   7 +
 superset/db_engine_specs/presto.py                 |  10 +-
 superset/db_engine_specs/redshift.py               |   8 +-
 superset/errors.py                                 |  30 +
 superset/exceptions.py                             |  27 +
 tests/databases/api_tests.py                       | 150 ++++-
 tests/databases/commands_tests.py                  | 127 ++++-
 tests/db_engine_specs/base_engine_spec_tests.py    | 101 ++++
 tests/db_engine_specs/base_tests.py                |  19 +-
 tests/db_engine_specs/mysql_tests.py               |   9 +-
 tests/db_engine_specs/postgres_tests.py            |  64 ++-
 65 files changed, 1566 insertions(+), 656 deletions(-)
 create mode 100644 
superset-frontend/src/filters/components/Select/buildQuery.test.ts
 create mode 100644 superset/databases/commands/validate.py

Reply via email to