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

rusackas pushed a change to branch ci/frontend-bundle-size
in repository https://gitbox.apache.org/repos/asf/superset.git


 discard ccaf919af1c fix: address bot review feedback on bundle-size tracking
 discard 7bdc6e0bed2 ci(frontend): publish nightly bundle-analyzer report; add 
Storybook/analyzer badges
 discard f7e29c15d5a ci(frontend): refresh the bundle-size baseline nightly, 
not on every push
 discard e1d7e615149 test: cover bundle-size-summary.js and fail loudly on 
missing entrypoints
 discard 987c5ada541 ci(frontend): track bundle size over time with 
benchmark-action
     add ecc7f726a4e fix: guard potential null derefs and remove dead branches 
(#42358)
     add 435e7825a6e chore(deps-dev): bump prettier from 3.9.5 to 3.9.6 in 
/superset-frontend (#42527)
     add e754b73af29 chore(deps-dev): bump baseline-browser-mapping from 
2.10.43 to 2.10.44 in /superset-frontend (#42526)
     add be012c8faad chore(deps): bump markdown-to-jsx from 9.8.2 to 9.9.0 in 
/superset-frontend (#42524)
     add 2c061f1e05b chore(deps-dev): bump the storybook group in 
/superset-frontend with 5 updates (#42523)
     add a970838b5c3 chore(deps): bump github/codeql-action/init from 4.37.1 to 
4.37.2 (#42522)
     add 2e81eb580f2 chore(deps): bump baseline-browser-mapping from 2.10.43 to 
2.10.44 in /docs (#42521)
     add dd7bbe0adfe chore(deps-dev): bump prettier from 3.9.5 to 3.9.6 in 
/docs (#42519)
     add a301e7c5119 chore(deps-dev): bump the typescript-eslint group in /docs 
with 3 updates (#42518)
     add ad15c4ddd1d chore(deps): bump the storybook group in /docs with 2 
updates (#42517)
     add 25a985893d9 chore(deps-dev): bump typescript-eslint from 8.64.0 to 
8.65.0 in /superset-websocket (#42516)
     add 39f9b7029be chore(deps): bump github/codeql-action/analyze from 4.37.1 
to 4.37.2 (#42520)
     add 526cebac73a chore(deps-dev): bump prettier from 3.9.5 to 3.9.6 in 
/superset-websocket (#42514)
     add 7b767f6c1d5 chore(ci): swap linkinator-action for lychee-action in 
docs link checker (#42501)
     add b983161eeff feat(async): cancel running chart queries under 
GLOBAL_ASYNC_QUERIES (#42305)
     add 236c9a52fda chore(deps-dev): bump @typescript-eslint/eslint-plugin 
from 8.63.0 to 8.65.0 in /superset-websocket (#42515)
     add b5c8d4a5df3 fix(mixed-timeseries): stop duplicating first metric in 
multi-metric + group-by series names (#40146)
     add e426fb7bc6e chore(ci): correct GH event type for opening new issue and 
PR in supersetbot orglabel job (#42424)
     add 181f5bc9c1e fix(mcp): capture created chart/dashboard id in 
generate_chart/generate_dashboard audit logs (#42367)
     add 5aaf9d337b5 fix(jinja): handle non-JSON body with JSON content-type in 
get_form_data (#42196)
     add 623348f190b chore(deps-dev): bump @typescript-eslint/eslint-plugin 
from 8.64.0 to 8.65.0 in /superset-frontend in the typescript-eslint group 
across 1 directory (#42512)
     add fc59d9c0cf3 fix(i18n): improve french translations (#42470)
     add 9cdb5552557 fix(docker): isolate tagged images from host packages 
(#42249)
     add 22ad3f2c34e fix(ci): make the Dependency Review check able to fail 
again (#42537)
     add 4a4f0685fd6 fix(reports): prevent bad-date crontab from crashing the 
report scheduler for all tenants (#42486)
     add 2908d630f9e ci(frontend): track bundle size over time with 
benchmark-action
     add dacaa4fec6c test: cover bundle-size-summary.js and fail loudly on 
missing entrypoints
     add 686b8df74a8 ci(frontend): refresh the bundle-size baseline nightly, 
not on every push
     add 0927395ed73 ci(frontend): publish nightly bundle-analyzer report; add 
Storybook/analyzer badges
     add c592230ac64 fix: address bot review feedback on bundle-size tracking

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   (ccaf919af1c)
            \
             N -- N -- N   refs/heads/ci/frontend-bundle-size (c592230ac64)

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/codeql-analysis.yml              |    4 +-
 .github/workflows/dependency-review.yml            |    1 -
 .github/workflows/issue_creation.yml               |    6 +-
 .github/workflows/superset-docs-verify.yml         |   77 +-
 docker-compose-image-tag.yml                       |    8 +-
 docs/package.json                                  |   14 +-
 docs/yarn.lock                                     |  194 +--
 scripts/change_detector.py                         |    1 +
 superset-frontend/package-lock.json                |  562 ++-----
 superset-frontend/package.json                     |   18 +-
 .../src/MixedTimeseries/transformProps.ts          |   36 +-
 .../test/MixedTimeseries/transformProps.test.ts    |   80 +
 .../src/components/Chart/chartAction.ts            |   29 +-
 .../src/middleware/asyncEvent.test.ts              |   38 +
 superset-frontend/src/middleware/asyncEvent.ts     |   18 +-
 superset-websocket/package-lock.json               |  679 ++++++--
 superset-websocket/package.json                    |    8 +-
 superset/async_events/api.py                       |   80 +-
 superset/async_events/async_query_manager.py       |  115 ++
 superset/async_events/cache_backend.py             |   18 +
 superset/common/query_context_factory.py           |    2 +-
 superset/common/utils/query_cache_manager.py       |    6 +-
 superset/db_engine_specs/databricks.py             |    1 +
 superset/db_engine_specs/presto.py                 |    3 +-
 superset/mcp_service/middleware.py                 |  222 ++-
 superset/tasks/async_queries.py                    |   28 +-
 superset/tasks/cron_util.py                        |   19 +-
 superset/translations/fr/LC_MESSAGES/messages.po   | 1673 ++++++++------------
 superset/views/utils.py                            |   24 +-
 tests/integration_tests/async_events/api_tests.py  |   72 +
 .../async_events/async_query_manager_tests.py      |  170 ++
 .../common/test_query_context_factory.py           |   36 +
 ...dengine.py => docker_compose_image_tag_test.py} |   34 +-
 .../mcp_service/test_middleware_logging.py         |  130 ++
 tests/unit_tests/scripts/change_detector_test.py   |    7 +
 tests/unit_tests/tasks/test_async_queries.py       |  125 ++
 tests/unit_tests/tasks/test_cron_util.py           |   21 +
 tests/unit_tests/views/test_utils.py               |   53 +
 38 files changed, 2799 insertions(+), 1813 deletions(-)
 copy tests/unit_tests/{db_engine_specs/test_tdengine.py => 
docker_compose_image_tag_test.py} (50%)
 create mode 100644 tests/unit_tests/views/test_utils.py

Reply via email to