This is an automated email from the ASF dual-hosted git repository.
rusackas pushed a change to branch chore/regen-country-map-geojson
in repository https://gitbox.apache.org/repos/asf/superset.git
discard bd00ac35c39 chore(country-map): regenerate all country GeoJSON files
from the notebook
add 12d7179c21b fix(hive): select schema via USE prequery instead of
rewriting the URI database (#36603)
add 3e7ae85cc24 fix(importers): catch YAMLError instead of narrower
ParserError in load_yaml (#42426)
add 276b7e2d678 fix(importers): catch YAMLError instead of narrower
ParserError in dataset v0 importer (#42442)
add eb914b8ae35 fix(datasets): log datetime format-detection DB query
failures at WARNING (#42388)
add c792752a58b fix(db_engine_specs): preserve DATE semantics when
applying Postgres time grains (#42254) (#42329)
add 79f3fed1f98 fix(country-map): carve the Great Lakes out of USA map
states (#29503)
add a73e2485de8 feat(versioning): version-history retention cleanup job
(#41075)
add c0117f78a9c feat(dashboard): respect GranularExportControls for
download permission (#41799)
add a8e2a340f19 fix(select): exclude null-valued options from "Select all"
count (#42220)
add 3095d7b07ff fix(metadata-bar): add max-width to text for proper
ellipsis truncation (#42237)
add a10c3f0b1dd test(result_set): add regression test for empty result set
column metadata (#35962)
add 26b6f7bb5df fix(dashboard): preserve refresh_frequency when absent
from save data (#42354)
add ecc7f726a4e fix: guard potential null derefs and remove dead branches
(#42358)
add 8790eccb66c chore(country-map): regenerate all country GeoJSON files
from the notebook
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 (bd00ac35c39)
\
N -- N -- N refs/heads/chore/regen-country-map-geojson
(8790eccb66c)
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:
UPDATING.md | 10 +
.../src/components/MetadataBar/MetadataBar.tsx | 1 +
.../src/components/Select/Select.test.tsx | 29 ++
.../src/components/Select/Select.tsx | 5 +
.../src/countries/usa.geojson | Bin 514889 -> 540974 bytes
superset-frontend/src/dashboard/actions/hydrate.ts | 4 +-
superset-frontend/src/utils/findPermission.test.ts | 52 +-
superset-frontend/src/utils/findPermission.ts | 13 +
superset/commands/dataset/importers/v0.py | 2 +-
superset/commands/importers/v1/utils.py | 2 +-
superset/common/query_context_factory.py | 2 +-
superset/common/utils/query_cache_manager.py | 6 +-
superset/config.py | 51 ++
superset/daos/dashboard.py | 3 +-
superset/datasets/datetime_format_detector.py | 19 +-
superset/db_engine_specs/databricks.py | 1 +
superset/db_engine_specs/hive.py | 33 +-
superset/db_engine_specs/postgres.py | 27 +
superset/db_engine_specs/presto.py | 3 +-
superset/initialization/__init__.py | 73 ++-
superset/mcp_service/sql_lab/tool/execute_sql.py | 37 +-
...a1f6c204_version_transaction_issued_at_index.py | 48 ++
superset/tasks/celery_app.py | 2 +-
superset/tasks/version_history_retention.py | 548 +++++++++++++++++++++
superset/versioning/queries.py | 19 +-
.../versioning/retention_prune_tests.py | 510 +++++++++++++++++++
.../unit_tests/commands/importers/v1/utils_test.py | 21 +
.../common/test_query_context_factory.py | 36 ++
tests/unit_tests/config_test.py | 26 +
tests/unit_tests/dao/dashboard_test.py | 51 ++
.../datasets/commands/importers/v0/import_test.py | 30 ++
.../datasets/test_datetime_format_detector.py | 39 +-
tests/unit_tests/db_engine_specs/test_hive.py | 68 +++
tests/unit_tests/db_engine_specs/test_postgres.py | 47 ++
tests/unit_tests/initialization_test.py | 161 ++++++
.../test_version_transaction_issued_at_index.py | 90 ++++
tests/unit_tests/result_set_test.py | 50 ++
tests/unit_tests/semantic_layers/mapper_test.py | 4 +-
.../tasks/test_version_history_retention.py | 200 ++++++++
39 files changed, 2273 insertions(+), 50 deletions(-)
create mode 100644
superset/migrations/versions/2026-07-27_10-00_d3b9a1f6c204_version_transaction_issued_at_index.py
create mode 100644 superset/tasks/version_history_retention.py
create mode 100644 tests/integration_tests/versioning/retention_prune_tests.py
create mode 100644
tests/unit_tests/migrations/test_version_transaction_issued_at_index.py
create mode 100644 tests/unit_tests/tasks/test_version_history_retention.py