You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by gi...@apache.org on 2023/06/27 07:39:02 UTC

[superset] branch dependabot/pip/requirements/tox-4.6.3 updated (bea92ead32 -> ffdafc5f28)

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

github-bot pushed a change to branch dependabot/pip/requirements/tox-4.6.3
in repository https://gitbox.apache.org/repos/asf/superset.git


    omit bea92ead32 build(deps): bump tox from 4.6.1 to 4.6.3 in /requirements
     add 6dba6e32f5 fix: creating a new chart with dashboard time filters but filter can't apply again (#24405)
     add d5f88c18f6 fix(charts): Fix chart load task error handling (#24447)
     add 92e2ee9d07 chore(dao): Add generic type for better type checking (#24465)
     add 652bf6454e fix: Native filter dynamic numeric search (#24418)
     add d60040dbf7 docs: Add CTA to community calendar subscription (#24474)
     add fb08e0ecfc fix: Revert enabling CSP (#24476)
     add ea89949118 fix(oracle): denormalize column names where applicable (#24471)
     add 45901dafbb build(deps-dev): bump @typescript-eslint/eslint-plugin from 5.59.11 to 5.60.0 in /superset-websocket (#24454)
     add 2a4ef5cccf build(deps-dev): bump eslint from 8.42.0 to 8.43.0 in /superset-websocket (#24443)
     add 51a34d7d58 chore(sqllab): Remove table metadata from state (#24371)
     add c5b4ecdca5 fix: Total calculation in stacked Timeseries charts (#24477)
     add 291a10fefe feat(docker): Add support LDAP/AD authorization (#24277)
     add e6f7c73f54 build(docker): pin the underlying debain base image (#24497)
     add b9824d687e fix: Native filter dynamic numeric search (#24506)
     add e20b69587f chore(sqllab): add extra_json on tabstate (#24489)
     add cd8418496f chore: update ansi-regex (#24503)
     add ba3bdc077c build(docker): simplification of assembly to facilitate further support (#24504)
     add 036294a191 fix(sqllab): normalize changedOn timestamp (#24513)
     add 0ddc0a6738 chore: remove marshmallow-enum dependency and bump FAB (#24499)
     new ffdafc5f28 build(deps): bump tox from 4.6.1 to 4.6.3 in /requirements

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   (bea92ead32)
            \
             N -- N -- N   refs/heads/dependabot/pip/requirements/tox-4.6.3 (ffdafc5f28)

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:
 .github/workflows/bashlib.sh                       |   3 +-
 .github/workflows/docker.yml                       |   2 +-
 .github/workflows/docker_build_push.sh             |  10 +-
 Dockerfile                                         |  67 ++---
 UPDATING.md                                        |   1 -
 docker/docker-bootstrap.sh                         |  38 +--
 docs/docs/security.mdx                             |  42 ++--
 docs/src/pages/community.tsx                       |  34 ++-
 docs/static/img/calendar-icon.svg                  |   1 +
 requirements/base.txt                              |  13 +-
 requirements/development.in                        |   1 +
 requirements/development.txt                       |  12 +-
 requirements/docker.txt                            |   4 +
 setup.cfg                                          |   2 +-
 setup.py                                           |   2 +-
 superset-frontend/package-lock.json                |  89 ++-----
 superset-frontend/package.json                     |   5 +
 .../src/chart/models/ChartProps.ts                 |  18 +-
 .../superset-ui-core/src/chart/types/Base.ts       |   4 +
 .../src/models/ExtensibleFunction.ts               |   3 +-
 .../superset-ui-core/src/time-format/index.ts      |   1 +
 ...rmalizeTimestamp.ts => denormalizeTimestamp.ts} |   4 +-
 .../src/time-format/utils/normalizeTimestamp.ts    |   2 +-
 .../time-format/utils/denormalizeTimestamp.test.ts |  43 ++++
 .../src/MixedTimeseries/EchartsMixedTimeseries.tsx |   8 +-
 .../src/MixedTimeseries/transformProps.ts          |   7 +-
 .../src/Timeseries/EchartsTimeseries.tsx           |  79 ++----
 .../src/Timeseries/transformProps.ts               |  10 +-
 .../src/Timeseries/transformers.ts                 |  15 +-
 .../plugins/plugin-chart-echarts/src/types.ts      |   2 +
 .../plugin-chart-echarts/src/utils/series.ts       |  30 ++-
 superset-frontend/src/SqlLab/App.jsx               |  25 ++
 superset-frontend/src/SqlLab/actions/sqlLab.js     | 183 ++++++--------
 .../src/SqlLab/actions/sqlLab.test.js              | 118 ++++-----
 .../AceEditorWrapper/AceEditorWrapper.test.tsx     |   1 -
 .../SqlLab/components/AceEditorWrapper/index.tsx   |   6 +-
 .../SqlLab/components/SouthPane/SouthPane.test.jsx |   9 +-
 .../src/SqlLab/components/SqlEditor/index.jsx      |   1 -
 .../SqlLab/components/SqlEditorLeftBar/index.tsx   |   6 +-
 .../components/TableElement/TableElement.test.jsx  | 161 ------------
 .../components/TableElement/TableElement.test.tsx  | 177 +++++++++++++
 .../src/SqlLab/components/TableElement/index.tsx   | 125 +++++++---
 superset-frontend/src/SqlLab/fixtures.ts           |   9 +-
 .../src/SqlLab/reducers/getInitialState.js         |  37 +--
 superset-frontend/src/SqlLab/reducers/sqlLab.js    |   9 +-
 .../src/SqlLab/reducers/sqlLab.test.js             |  22 +-
 .../SqlLab/utils/reduxStateToLocalStorageHelper.js |  16 ++
 .../src/components/Chart/ChartRenderer.jsx         |   8 +
 .../src/explore/actions/saveModalActions.js        |  13 +
 .../filters/components/Select/buildQuery.test.ts   |   8 +-
 .../src/filters/components/Select/buildQuery.ts    |  16 +-
 .../src/hooks/apiResources/queryApi.ts             |   8 +-
 superset-frontend/src/hooks/apiResources/tables.ts |  61 ++++-
 superset-websocket/package-lock.json               | 277 ++++++---------------
 superset-websocket/package.json                    |   4 +-
 .../annotations/commands/delete.py                 |   2 +
 .../annotations/commands/update.py                 |   2 +
 superset/annotation_layers/commands/delete.py      |   2 +
 superset/annotation_layers/commands/update.py      |   2 +
 superset/charts/commands/update.py                 |   2 +
 superset/charts/data/commands/get_data_command.py  |   2 +-
 superset/charts/schemas.py                         |   9 +-
 superset/commands/export/models.py                 |   2 +-
 superset/common/query_context_processor.py         |   2 +-
 superset/config.py                                 |  38 +--
 superset/connectors/base/models.py                 |   9 +-
 superset/connectors/sqla/utils.py                  |   3 +
 superset/daos/annotation.py                        |   8 +-
 superset/daos/base.py                              |  35 ++-
 superset/daos/chart.py                             |   3 +-
 superset/daos/css.py                               |   4 +-
 superset/daos/dashboard.py                         |  10 +-
 superset/daos/database.py                          |   7 +-
 superset/daos/dataset.py                           |  13 +-
 superset/daos/datasource.py                        |   2 +-
 superset/daos/log.py                               |   4 +-
 superset/daos/query.py                             |   6 +-
 superset/daos/report.py                            |   3 +-
 superset/daos/security.py                          |   4 +-
 superset/daos/tag.py                               |   3 +-
 superset/dashboards/commands/delete.py             |   2 +
 superset/dashboards/commands/update.py             |   2 +
 superset/dashboards/filter_sets/commands/delete.py |   4 +-
 superset/dashboards/filter_sets/commands/update.py |   2 +
 superset/dashboards/schemas.py                     |   3 +-
 superset/databases/commands/delete.py              |   2 +
 superset/databases/schemas.py                      |   5 +-
 superset/databases/ssh_tunnel/commands/delete.py   |   2 +
 superset/db_engine_specs/base.py                   |  10 +
 superset/initialization/__init__.py                |   6 +-
 superset/models/helpers.py                         |  30 ++-
 superset/models/sql_lab.py                         |   1 +
 superset/reports/commands/delete.py                |   2 +
 superset/reports/schemas.py                        |   5 +-
 superset/row_level_security/commands/update.py     |   2 +
 superset/security/api.py                           |   3 +-
 superset/tasks/async_queries.py                    |   4 +-
 .../appbuilder/general/widgets/base_list.html      |   2 +-
 .../appbuilder/general/widgets/search.html         |   2 +-
 superset/templates/superset/export_dashboards.html |   2 +-
 .../templates/superset/form_view/csv_scripts.html  |   2 +-
 .../form_view/csv_to_database_view/edit.html       |   2 +-
 .../form_view/database_schemas_selector.html       |   2 +-
 .../templates/superset/models/database/macros.html |   8 +-
 .../templates/superset/partials/asset_bundle.html  |   2 +-
 superset/templates/superset/theme.html             |  14 +-
 tests/integration_tests/base_api_tests.py          |   2 +-
 tests/integration_tests/databases/api_tests.py     |  15 +-
 .../db_engine_specs/postgres_tests.py              |   1 -
 tests/integration_tests/reports/api_tests.py       |   6 +-
 .../unit_tests/db_engine_specs/test_databricks.py  |   1 -
 tests/unit_tests/db_engine_specs/test_mssql.py     |  14 ++
 tests/unit_tests/db_engine_specs/test_oracle.py    |  14 ++
 tests/unit_tests/tasks/test_async_queries.py       |  39 +++
 114 files changed, 1173 insertions(+), 1069 deletions(-)
 create mode 100644 docs/static/img/calendar-icon.svg
 copy superset-frontend/packages/superset-ui-core/src/time-format/utils/{normalizeTimestamp.ts => denormalizeTimestamp.ts} (89%)
 create mode 100644 superset-frontend/packages/superset-ui-core/test/time-format/utils/denormalizeTimestamp.test.ts
 delete mode 100644 superset-frontend/src/SqlLab/components/TableElement/TableElement.test.jsx
 create mode 100644 superset-frontend/src/SqlLab/components/TableElement/TableElement.test.tsx
 create mode 100644 tests/unit_tests/tasks/test_async_queries.py


[superset] 01/01: build(deps): bump tox from 4.6.1 to 4.6.3 in /requirements

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

github-bot pushed a commit to branch dependabot/pip/requirements/tox-4.6.3
in repository https://gitbox.apache.org/repos/asf/superset.git

commit ffdafc5f283913007d2c8f483ba0d50064b541ab
Author: dependabot[bot] <49...@users.noreply.github.com>
AuthorDate: Tue Jun 27 07:38:55 2023 +0000

    build(deps): bump tox from 4.6.1 to 4.6.3 in /requirements
    
    Bumps [tox](https://github.com/tox-dev/tox) from 4.6.1 to 4.6.3.
    - [Release notes](https://github.com/tox-dev/tox/releases)
    - [Changelog](https://github.com/tox-dev/tox/blob/main/docs/changelog.rst)
    - [Commits](https://github.com/tox-dev/tox/compare/4.6.1...4.6.3)
    
    ---
    updated-dependencies:
    - dependency-name: tox
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <su...@github.com>
---
 requirements/integration.txt | 17 ++++++-----------
 1 file changed, 6 insertions(+), 11 deletions(-)

diff --git a/requirements/integration.txt b/requirements/integration.txt
index 1269e505a6..20023d62ae 100644
--- a/requirements/integration.txt
+++ b/requirements/integration.txt
@@ -35,7 +35,7 @@ packaging==23.1
     #   pyproject-api
     #   tox
 pip-compile-multi==2.6.3
-    # via -r requirements/integration.in
+    # via -r integration.in
 pip-tools==6.13.0
     # via pip-compile-multi
 platformdirs==3.5.3
@@ -45,23 +45,18 @@ platformdirs==3.5.3
 pluggy==1.0.0
     # via tox
 pre-commit==3.3.3
-    # via -r requirements/integration.in
-pyproject-api==1.5.1
+    # via -r integration.in
+pyproject-api==1.5.2
     # via tox
 pyproject-hooks==1.0.0
     # via build
 pyyaml==5.4.1
     # via pre-commit
-tomli==2.0.1
-    # via
-    #   build
-    #   pyproject-api
-    #   tox
 toposort==1.10
     # via pip-compile-multi
-tox==4.6.1
-    # via -r requirements/integration.in
-virtualenv==20.23.0
+tox==4.6.3
+    # via -r integration.in
+virtualenv==20.23.1
     # via
     #   pre-commit
     #   tox