This is an automated email from the ASF dual-hosted git repository.
beto pushed a change to branch ssh-tunnel-ref
in repository https://gitbox.apache.org/repos/asf/superset.git
discard 61206a182a Fix load
discard c64fb0b643 chore: cleanup ssh tunnel
add eca28582b6 feat(i18n): update Spanish translations (messages.po)
(#34206)
add 131ae5aa9d docs(development): fix typo in the dockerfile (#34387)
add bf967d6ba4 fix(charts): Fix unquoted 'Others' literal in series limit
GROUP BY clause (#34390)
add 6006a21378 docs(development): fix comment in the dockerfile (#34391)
add 0cbf4d5d4d chore(deps): bump d3-scale from 3.3.0 to 4.0.2 in
/superset-frontend/packages/superset-ui-core (#31534)
add 5c2eb0a68c build(deps): bump reselect from 4.1.7 to 5.1.1 in
/superset-frontend (#30119)
add a611278e04 fix: Console errors from various sources (#34178)
add 54a5b58e40 feat(codespaces): auto-setup Python venv with dependencies
(#34409)
add fd4570625a fix(theme-list): reorder buttons to place import leftmost
(#34389)
add becd0b8883 feat: add runtime custom font loading via configuration
(#34416)
add f168dd69a8 fix(sunburst): Fix sunburst chart cross-filter logic
(#31495)
add 762a11b0bb fix(sqllab): access legacy kv record (#34411)
add 6fc734da51 fix: prevent anonymous code in Postgres (#34412)
add c480fa7fcf fix(migrations): prevent theme seeding before themes table
exists (#34433)
add 50197fc33e chore: Add bottom border to top navigation menu (#34429)
add ea64f3122e chore: Change button labels to sentence case (#34432)
add 70394e79ef feat: Add configurable query identifiers for Mixed
Timeseries charts (#34406)
add cf5b976659 fix(dashboard): adds dependent filter select first value
fixes (#34137)
add 52544afc81 chore: cleanup ssh tunnel
add 5b25850218 Fix load
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 (61206a182a)
\
N -- N -- N refs/heads/ssh-tunnel-ref (5b25850218)
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:
.devcontainer/Dockerfile | 20 +
.devcontainer/README.md | 11 +
.devcontainer/bashrc-additions | 62 +
.devcontainer/build-and-push-image.sh | 20 +
.devcontainer/devcontainer.json | 26 +-
.devcontainer/setup-dev.sh | 84 +-
.devcontainer/start-superset.sh | 71 +-
Dockerfile | 4 +-
docker/frontend-mem-nag.sh | 44 +-
docs/docs/configuration/theming.mdx | 58 +
docs/docs/contributing/development.mdx | 2 +-
.../cypress/e2e/dashboard/nativeFilters.test.ts | 69 +
.../cypress-base/cypress/e2e/explore/chart.test.js | 6 +-
superset-frontend/package-lock.json | 43 +-
.../packages/superset-ui-core/package.json | 4 +-
.../src/chart/models/ChartProps.ts | 26 +-
.../test/chart/models/ChartProps.test.ts | 4 +-
.../components/TimeComparisonVisibility.tsx | 60 +-
.../src/MixedTimeseries/controlPanel.tsx | 17 +-
.../src/MixedTimeseries/transformProps.ts | 28 +-
.../src/MixedTimeseries/types.ts | 2 +
.../src/Sunburst/EchartsSunburst.tsx | 61 +-
.../test/MixedTimeseries/transformProps.test.ts | 83 +-
.../plugins/plugin-chart-table/src/TableChart.tsx | 87 +-
.../src/components/Chart/DrillDetail/index.ts | 1 +
...ilMenuItems.tsx => useDrillDetailMenuItems.tsx} | 179 +-
.../Header/useHeaderActionsDropdownMenu.tsx | 358 +-
.../PropertiesModal/PropertiesModal.test.tsx | 3 +-
.../components/SliceHeaderControls/index.tsx | 370 +-
.../DownloadMenuItems/DownloadMenuItems.test.tsx | 22 +-
.../components/menu/DownloadMenuItems/index.tsx | 114 +-
.../menu/ShareMenuItems/ShareMenuItems.test.tsx | 49 +-
.../components/menu/ShareMenuItems/index.tsx | 43 +-
.../FilterBar/FilterControls/FilterValue.tsx | 29 +
.../FiltersConfigModal/FilterConfigPane.test.tsx | 6 +-
.../FiltersConfigModal/FilterTitlePane.tsx | 4 +-
.../useExploreAdditionalActionsMenu/index.jsx | 475 +-
superset-frontend/src/features/home/Menu.tsx | 1 +
.../HeaderReportDropdown/index.test.tsx | 58 +-
.../ReportModal/HeaderReportDropdown/index.tsx | 274 +-
.../components/Select/SelectFilterPlugin.tsx | 59 +
superset-frontend/src/pages/ThemeList/index.tsx | 32 +-
superset/commands/sql_lab/permalink/get.py | 2 +-
superset/config.py | 10 +
superset/initialization/__init__.py | 3 +-
superset/models/helpers.py | 12 +-
superset/sql/parse.py | 10 +
superset/templates/superset/spa.html | 7 +
superset/translations/es/LC_MESSAGES/messages.po | 9264 ++++++++------------
tests/unit_tests/models/helpers_test.py | 168 +-
tests/unit_tests/sql/parse_tests.py | 37 +
51 files changed, 5853 insertions(+), 6629 deletions(-)
create mode 100644 .devcontainer/Dockerfile
create mode 100644 .devcontainer/bashrc-additions
create mode 100755 .devcontainer/build-and-push-image.sh
copy
superset-frontend/src/components/Chart/DrillDetail/{DrillDetailMenuItems.tsx =>
useDrillDetailMenuItems.tsx} (63%)