This is an automated email from the ASF dual-hosted git repository.
rusackas pushed a change to branch analagous-analogous
in repository https://gitbox.apache.org/repos/asf/superset.git
discard 7390f28a8c now I have a PR number!
discard 0a40ecae70 spelling fixed
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 256f6b8ab7 spelling fixed
add 305cd9363a now I have a PR number!
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 (7390f28a8c)
\
N -- N -- N refs/heads/analagous-analogous (305cd9363a)
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 +
.../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 +++++-
60 files changed, 954 insertions(+), 811 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%)