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

rusackas pushed a change to branch disable-namespace-imports
in repository https://gitbox.apache.org/repos/asf/superset.git


 discard 0cc83607ca fixing disabled lines
 discard e3e0e5ce9e fixing bot feedback
 discard c2a83d471f need to ignore this too
 discard 3934a5fdbc disabling wildcard imports with eslint
     add 49876c3f13 build(deps-dev): bump css-minimizer-webpack-plugin from 
5.0.1 to 7.0.0 in /superset-frontend (#31668)
     add 5f18e849c1 build(deps-dev): bump css-loader from 6.8.1 to 7.1.2 in 
/superset-frontend (#31661)
     add 7bd53a84d5 feat: improve docker-compose services boot sequence (#31747)
     add 8a2aada58d fix(button): change back button styles for dropdown buttons 
(#31789)
     add 740fbf72d7 feat: redesign labels (#31575)
     add bbdc195a3b chore: Skips integration tests affected by legacy charts 
removal (#31791)
     add 41ed37ab02 fix(oauth): Handle updates to the OAuth config (#31777)
     add 472ca9d8f6 refactor(dashboard): Migrate ResizableContainer to 
TypeScript and functional component (#31452)
     add 519c3481b6 disabling wildcard imports with eslint
     add 8ebd22c1d2 need to ignore this too
     add 0cbe00fb36 fixing bot feedback
     add 7e5ae22225 fixing disabled lines

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   (0cc83607ca)
            \
             N -- N -- N   refs/heads/disable-namespace-imports (7e5ae22225)

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:
 .github/workflows/docker.yml                       |   2 +-
 docker-compose-image-tag.yml                       |  30 +-
 docker-compose-non-dev.yml                         |  30 +-
 docker-compose.yml                                 |  34 +-
 docker/.env                                        |   1 +
 docker/docker-init.sh                              |   2 +-
 docker/pythonpath_dev/superset_config.py           |   3 +
 docs/docs/contributing/development.mdx             |   5 +
 superset-frontend/package-lock.json                | 929 ++++++++++++++-------
 superset-frontend/package.json                     |   4 +-
 .../stories/superset-ui-style/Theme.stories.tsx    | 101 ++-
 .../components/SaveDatasetActionButton/index.tsx   |   2 +-
 .../src/components/AlteredSliceTag/index.tsx       |  25 +-
 .../src/components/DropdownButton/index.tsx        |   4 +-
 .../components/DropdownSelectableIcon/index.tsx    |   4 +-
 superset-frontend/src/components/Icons/Icon.tsx    |   4 +
 .../src/components/Label/Label.stories.tsx         |  88 +-
 .../src/components/Label/Label.test.tsx            |   4 +-
 superset-frontend/src/components/Label/index.tsx   |  75 +-
 .../Label/reusable/DatasetTypeLabel.tsx}           |  36 +-
 .../Label/reusable/PublishedLabel.tsx}             |  42 +-
 superset-frontend/src/components/Timer/index.tsx   |   3 +-
 .../src/dashboard/components/DashboardGrid.jsx     |   9 +-
 .../dashboard/components/DashboardGrid.test.jsx    |   6 +-
 .../dashboard/components/PublishedStatus/index.tsx |  32 +-
 .../components/gridComponents/DynamicComponent.tsx |   8 +-
 .../components/resizable/ResizableContainer.jsx    | 327 --------
 .../resizable/ResizableContainer.test.tsx          |  35 +-
 .../components/resizable/ResizableContainer.tsx    | 321 +++++++
 .../{ResizableHandle.jsx => ResizableHandle.tsx}   |   6 +-
 .../src/pages/DashboardList/index.tsx              |   6 +-
 superset-frontend/src/pages/DatasetList/index.tsx  |  22 +-
 superset/cli/examples.py                           |  30 +-
 superset/commands/database/update.py               |  29 +-
 superset/examples/bart_lines.py                    |   5 +-
 superset/examples/big_data.py                      |   9 +-
 superset/examples/birth_names.py                   |  13 +-
 superset/examples/country_map.py                   |  11 +-
 superset/examples/css_templates.py                 |   5 +-
 superset/examples/deck.py                          |  22 +-
 superset/examples/energy.py                        |   5 +-
 superset/examples/flights.py                       |   6 +-
 superset/examples/long_lat.py                      |  11 +-
 superset/examples/misc_dashboard.py                |   5 +-
 superset/examples/multiformat_time_series.py       |  11 +-
 superset/examples/paris.py                         |   6 +-
 superset/examples/random_time_series.py            |  12 +-
 superset/examples/sf_population_polygons.py        |   6 +-
 superset/examples/supported_charts_dashboard.py    |   4 +-
 superset/examples/tabbed_dashboard.py              |   5 +-
 superset/examples/world_bank.py                    |   7 +-
 superset/models/helpers.py                         |   6 +-
 superset/utils/encrypt.py                          |   7 +-
 tests/integration_tests/async_events/api_tests.py  |   2 +
 tests/integration_tests/cache_tests.py             |   4 +
 tests/integration_tests/charts/api_tests.py        |   4 +-
 tests/integration_tests/charts/commands_tests.py   |   2 +
 tests/integration_tests/core_tests.py              |  10 +
 .../integration_tests/tasks/async_queries_tests.py |   1 +
 tests/integration_tests/utils_tests.py             |   1 +
 tests/integration_tests/viz_tests.py               | 170 ----
 tests/unit_tests/commands/databases/update_test.py |  89 +-
 62 files changed, 1576 insertions(+), 1122 deletions(-)
 copy superset-frontend/src/{SqlLab/components/QueryStateLabel/index.tsx => 
components/Label/reusable/DatasetTypeLabel.tsx} (51%)
 copy 
superset-frontend/src/{explore/components/controls/MapViewControl/ExtentTag.tsx 
=> components/Label/reusable/PublishedLabel.tsx} (56%)
 delete mode 100644 
superset-frontend/src/dashboard/components/resizable/ResizableContainer.jsx
 create mode 100644 
superset-frontend/src/dashboard/components/resizable/ResizableContainer.tsx
 rename 
superset-frontend/src/dashboard/components/resizable/{ResizableHandle.jsx => 
ResizableHandle.tsx} (87%)

Reply via email to