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/10/04 17:28:58 UTC

[superset] branch dependabot/npm_and_yarn/superset-websocket/types/cookie-0.5.2 updated (530d2b2136 -> 6da7e35547)

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

github-bot pushed a change to branch dependabot/npm_and_yarn/superset-websocket/types/cookie-0.5.2
in repository https://gitbox.apache.org/repos/asf/superset.git


 discard 530d2b2136 build(deps-dev): bump @types/cookie in /superset-websocket
     add 8553b06155 build(deps-dev): bump prettier from 3.0.2 to 3.0.3 in /superset-websocket (#25120)
     add 0d0a81c0d2 fix(Indian Map Changes): fixed-Indian-map-border (#24927)
     add 36ed617090 fix: Address Mypy issue which is causing CI to fail (#25494)
     add db7f5fed31 chore(async): Initial Refactoring of Global Async Queries (#25466)
     add c52c206d05 docs: add https & ldap instructions (#25477)
     add 789e6b76ae docs: add a FAQ about asset recovery from UI (#25482)
     add 23996b59a1 docs: update docker compose instructions (#25479)
     add 7a88ad3c02 docs: define localhost for docker (#25480)
     add e3244e9056 build(deps-dev): bump @types/node from 20.6.0 to 20.8.2 in /superset-websocket (#25498)
     add dbe0838f8f fix: Unable to sync columns when database or dataset name contains `+` (#25390)
     add 3e63c82ecc feat: generic marshmallow error component (#25303)
     add 53013395d7 fix: Tags Polish II (#25496)
     add ff95d0face feat: Implement using Playwright for taking screenshots in reports (#25247)
     add dab18250d7 build(deps): bump ws and @types/ws in /superset-websocket (#25508)
     add 6da7e35547 build(deps-dev): bump @types/cookie in /superset-websocket

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   (530d2b2136)
            \
             N -- N -- N   refs/heads/dependabot/npm_and_yarn/superset-websocket/types/cookie-0.5.2 (6da7e35547)

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:
 RESOURCES/FEATURE_FLAGS.md                         |    1 +
 docker/docker-bootstrap.sh                         |    8 +
 docs/docs/databases/mysql.mdx                      |    3 +-
 docs/docs/frequently-asked-questions.mdx           |    8 +
 docs/docs/installation/configuring-superset.mdx    |   17 +-
 .../installing-superset-using-docker-compose.mdx   |   13 +-
 requirements/testing.in                            |    2 +-
 requirements/testing.txt                           |    4 +-
 setup.py                                           |    1 +
 .../scripts/Country Map GeoJSON Generator.ipynb    | 3759 ++++++++++----------
 .../src/countries/india.geojson                    |    4 +-
 .../src/components/Datasource/DatasourceEditor.jsx |    6 +-
 .../Datasource/DatasourceEditor.test.jsx           |    2 +-
 .../components/Datasource/DatasourceModal.test.jsx |    2 +-
 .../src/components/Datasource/DatasourceModal.tsx  |   19 +-
 .../src/components/ErrorMessage/ErrorAlert.tsx     |    1 +
 .../ErrorMessage/MarshmallowErrorMessage.test.tsx  |   86 +
 .../ErrorMessage/MarshmallowErrorMessage.tsx       |  109 +
 .../src/components/ErrorMessage/types.ts           |   12 +-
 .../src/components/FilterableTable/index.tsx       |   31 +-
 .../src/features/tags/BulkTagModal.tsx             |   19 +-
 superset-frontend/src/features/tags/TagModal.tsx   |   36 +-
 .../useJsonTreeTheme.ts}                           |   46 +-
 superset-frontend/src/pages/AllEntities/index.tsx  |   17 +-
 superset-frontend/src/setup/setupErrorMessages.ts  |    5 +
 superset-websocket/package-lock.json               |   56 +-
 superset-websocket/package.json                    |    8 +-
 superset-websocket/src/config.ts                   |    2 +
 superset-websocket/src/index.ts                    |   20 +-
 superset/async_events/api.py                       |    6 +-
 superset/async_events/async_query_manager.py       |   45 +-
 .../data/commands/create_async_job_command.py      |   12 +-
 superset/cli/lib.py                                |    2 +-
 superset/config.py                                 |   11 +-
 superset/datasets/api.py                           |    1 -
 superset/datasets/schemas.py                       |   12 +
 superset/errors.py                                 |    3 +
 superset/exceptions.py                             |   17 +
 superset/utils/machine_auth.py                     |   68 +-
 superset/utils/screenshots.py                      |   11 +-
 superset/utils/webdriver.py                        |  288 +-
 superset/views/core.py                             |   12 +-
 .../integration_tests/tasks/async_queries_tests.py |   37 +-
 tests/integration_tests/thumbnails_tests.py        |   24 +-
 .../unit_tests/async_events}/__init__.py           |    0
 .../async_events/async_query_manager_tests.py      |   67 +
 tests/unit_tests/datasets/api_tests.py             |   73 +
 .../unit_tests/db_engine_specs/test_clickhouse.py  |    6 +-
 48 files changed, 2943 insertions(+), 2049 deletions(-)
 create mode 100644 superset-frontend/src/components/ErrorMessage/MarshmallowErrorMessage.test.tsx
 create mode 100644 superset-frontend/src/components/ErrorMessage/MarshmallowErrorMessage.tsx
 copy superset-frontend/src/{components/IndeterminateCheckbox/IndeterminateCheckbox.stories.tsx => hooks/useJsonTreeTheme.ts} (53%)
 copy {superset/advanced_data_type => tests/unit_tests/async_events}/__init__.py (100%)
 create mode 100644 tests/unit_tests/async_events/async_query_manager_tests.py
 create mode 100644 tests/unit_tests/datasets/api_tests.py