-
Notifications
You must be signed in to change notification settings - Fork 16k
Bump the core-ui-package-updates group across 1 directory with 57 updates #58464
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
dependabot
wants to merge
39
commits into
v3-1-test
from
dependabot/npm_and_yarn/airflow-core/src/airflow/ui/v3-1-test/core-ui-package-updates-35c933d1fa
Closed
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
b456a88 to
a5ab871
Compare
8a6f7f3 to
bc2c300
Compare
) (cherry picked from commit ca9fb54) Co-authored-by: Jarek Potiuk <[email protected]>
… once (#58198) (#58214) This has to be done in global_constants module, because regeneration can happen just during importing and if we try to do it in a separate package circular dependencies might happen. (cherry picked from commit 4bde26f) Co-authored-by: Jarek Potiuk <[email protected]>
…mote (#58163) (#58179) (cherry picked from commit 8b358bd) Co-authored-by: Jarek Potiuk <[email protected]>
(cherry picked from commit ac478ad) Co-authored-by: Jens Scheffler <[email protected]>
…eset_dag_run (#57756) (#57968) (#58333) When TriggerDagRunOperator is used with deferrable=True, wait_for_completion=True, reset_dag_run=True, and a fixed trigger_run_id, the operator becomes permanently stuck in deferred state after clearing and re-running. Root cause: When reset_dag_run=True is used with a fixed run_id, the database preserves the original logical_date from the first run. However, on subsequent runs after clearing, the operator calculates a NEW logical_date based on the current time. The DagStateTrigger was being created with this newly calculated logical_date, causing a mismatch when querying the database - the trigger looked for a DAG run with the new logical_date but the database contained the original logical_date, causing the query to return zero results indefinitely. Solution: - Modified _handle_trigger_dag_run() in task_runner.py to pass execution_dates=None to DagStateTrigger when run_ids is provided, since run_id alone is sufficient and globally unique - Added test test_handle_trigger_dag_run_deferred_with_reset_uses_run_id_only to verify the fix and prevent regression The fix ensures that both deferrable and non-deferrable modes use identical logic for determining DAG run completion - querying by run_id and state only, without filtering by logical_date which can become stale when resets are involved. (cherry picked from commit 4f3d0c5) Co-authored-by: Mykola Shyshov <[email protected]>
…rs in --dev-mode (#57846) (#58080) (#58345) * Docs: Add note for WSL users about CHOKIDAR_USEPOLLING for UI hot reloading (#57846) * Breeze: Automatically set CHOKIDAR_USEPOLLING for WSL users in --dev-mode (#57846) * Breeze: Automatically set CHOKIDAR_USEPOLLING for WSL users in --dev-mode (#57846) * Update dev/breeze/src/airflow_breeze/commands/developer_commands.py --------- (cherry picked from commit e2f31e9) Co-authored-by: Lohith M <[email protected]> Co-authored-by: LIU ZHE YOU <[email protected]>
(cherry picked from commit 95a9db7) Co-authored-by: Ephraim Anierobi <[email protected]>
…58373) There were a couple of problems with genearted documentation for installation from sources for "apache-airflow" and "apache-airflow-ctl": * apache-airflow-ctl links in source installation were broken * apache-airflow did not have link to sdist and whl distributions of task-sdk (which is currently released together with apache-airflow and apache-airflow-core) * airflow-ctl was missing in development index generated locally * INSTALL that is common for all distribution sources only contained information on building apache-airflow, but did not have instrunctions on building other distributions (cherry picked from commit f4c7dad) Co-authored-by: Jarek Potiuk <[email protected]>
…8378) Closes: #57355 When a user runs `airflow config list --include-descriptions --include-examples`, multi-line values (like `dag_bundle_config_list`) would cause a `configparser.ParsingError` due to improper indentation. This fix pretty-prints the JSON value using `json.dumps(indent=4)` and then adds an additional four-space indent to each new line. This ensures the INI parser treats the entire block as a single, valid multi-line value. (cherry picked from commit d009b64) Co-authored-by: Aaron Chen <[email protected]>
…ue (#57853) (#58396) (cherry picked from commit c03fc79) Co-authored-by: Amogh Desai <[email protected]>
…EASE_PROVIDER.md` (#58392) (#58402) (cherry picked from commit 25d36db) Co-authored-by: Jake Roach <[email protected]>
…data (#58314) (#58399) The function would fail with 'TypeError: content.split is not a function' when data was not a string but also didn't have a content property. Changes: - Add type guard to check if data is string before calling .split() - Add support for single log line objects (return as array) - Simplify logic with early returns for clearer flow - Add comprehensive test suite covering all edge cases The function now handles: 1. Data with content property (returns as-is) 2. String data (parses as newline-separated JSON) 3. Object data without content (returns wrapped in array) 4. Edge cases (undefined, null, numbers, invalid JSON) (cherry picked from commit a398201) Co-authored-by: Felix Uellendall <[email protected]>
…58405) Clarify that the setting only applies to bundles supporting versioning and does not affect DAG versions displayed in the UI. (cherry picked from commit 47cea96) Co-authored-by: Jed Cunningham <[email protected]>
(cherry picked from commit 7c5b22a) Co-authored-by: Ephraim Anierobi <[email protected]>
We have inline project metadata in the prek hooks, and that means that each of the scripts will use their own venv to roon. However Airflow code and libraries does not support Python 3.14 yet (and will not for quite a while - because our dependencies will need time to catch-up. In the meantime we have to limit prek hooks to not install Python 3.14. Actually in order to have good stability, we are fine to limiting EVERYONE to use Python 3.10 for prek. There are no real benefits from using a different Python version (except maybe a little speed but prek-hooks are generally rather fast anyway) and we can definitely benefit from better stability and having exactly the same output for prek hooks by everyone. Uv will handle installation of the right python version automatically. (cherry picked from commit d31e578) Fixes: #56048 Co-authored-by: Jarek Potiuk <[email protected]>
(cherry picked from commit 2dfa8e2) Co-authored-by: Jens Scheffler <[email protected]>
…low/api_fastapi/auth/managers/simple/ui (#58443) (#58463) * Bump glob Bumps [glob](https://github.com/isaacs/node-glob) from 10.4.5 to 10.5.0. - [Changelog](https://github.com/isaacs/node-glob/blob/main/changelog.md) - [Commits](isaacs/node-glob@v10.4.5...v10.5.0) (cherry picked from commit 2475fc6) --- updated-dependencies: - dependency-name: glob dependency-version: 10.5.0 dependency-type: indirect ... * Add pnpm lock as well --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Jens Scheffler <[email protected]>
(cherry picked from commit 26464f8) Co-authored-by: Jens Scheffler <[email protected]>
…58472) This PR addresses the case where we have to manage dependencies between Airfow distributions and we have to manage the right lower bind versions for them. Since we missed a comprehensive documentation on how our dependencies are managed in general, and we had no good place to describe it, this PR not only adds code to manage it, but also extends the documentation of the "12_airflw_dependencies_and_extras.rst" chapter of the contributing documentation to include comprehensive (but also hopefully helpful) documentation explaining to contributors how our dependencies are managed. The changes in the doc: * add missing documentation explaining dependency management in airflow distributions in the monorepo * adds selective check to verify if cross-airflow-distribution dependencies have not been modified in the PR, and fails if they were, unless appropriate label is set on the PR * adds breeze tests covering the test cases of selective check (cherry picked from commit ce9364e) Co-authored-by: Jarek Potiuk <[email protected]>
5610f62 to
166003b
Compare
#51877) (#57650) (#58485) Co-authored-by: jgoedeke <[email protected]> Co-authored-by: Tzu-ping Chung <[email protected]>
…ates Dependabot couldn't find the original pull request head commit, a5ab871.
a5ab871 to
7de6c40
Compare
4104418 to
3c7271f
Compare
Contributor
Author
|
Looks like these dependencies are updatable in another way, so this is no longer needed. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
area:UI
Related to UI/UX. For Frontend Developers.
dependencies
Pull requests that update a dependency file
javascript
Pull requests that update Javascript code
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Bumps the core-ui-package-updates group with 57 updates in the /airflow-core/src/airflow/ui directory:
3.20.03.29.06.0.16.0.25.75.45.90.93.13.83.13.124.23.124.25.34.23.124.25.312.4.412.9.31.12.01.13.26.1.06.1.14.4.94.5.11.11.131.11.190.10.00.11.025.1.225.6.28.1.08.2.05.3.105.3.1319.1.119.2.018.3.1919.2.55.3.05.3.119.1.119.2.018.3.519.2.37.56.27.66.04.6.15.2.115.5.116.3.39.1.010.1.02.1.73.0.66.30.07.9.615.6.116.1.010.0.410.0.62.8.02.8.15.0.45.0.81.2.92.0.09.26.09.39.12.13.05.5.05.74.75.91.26.6.36.9.14.3.06.0.022.15.1424.10.13.9.04.2.22.1.94.0.99.26.09.39.110.1.210.1.86.1.16.1.32.20.12.21.04.12.34.15.15.4.05.5.45.2.07.0.10.4.200.4.2455.0.062.0.015.15.016.5.017.4.620.0.102.4.02.4.12.7.62.12.23.5.33.6.25.8.35.9.38.32.08.46.45.4.197.2.22.1.94.0.9Updates
@chakra-ui/reactfrom 3.20.0 to 3.29.0Release notes
Sourced from
@chakra-ui/react's releases.... (truncated)
Changelog
Sourced from
@chakra-ui/react's changelog.... (truncated)
Commits
2174f36Version Packages (#10435)5a000d2refactor: missing client directive8b07ee9docs: accordion1580aebfeat: add carousel component (#10391)69aabbfrefactor: combobox recipe873e81eVersion Packages (#10412)37d166arefactor: tabs and segment recipefb16312fix(segmentGroup): use segment-radius var for borderRadius (#10428)3243444fix: Add displayName to components (#10422)d379ae5refactor(styled-system): optimize fnsUpdates
@codemirror/lang-jsonfrom 6.0.1 to 6.0.2Changelog
Sourced from
@codemirror/lang-json's changelog.Commits
ef0c630Mark version 6.0.23996d0aAdd a usage section to readmef7bd24aMove to@codemirror/buildhelper1.0.0fdc00c1Update links in readme1bbb5edUpdate maintainer emailUpdates
@tanstack/react-queryfrom 5.75.4 to 5.90.9Release notes
Sourced from
@tanstack/react-query's releases.... (truncated)
Changelog
Sourced from
@tanstack/react-query's changelog.Commits
6226325ci: Version Packages (#9873)f7c9526ci: Version Packages (#9854)ea0ab4dci: Version Packages (#9848)c23b4a0ci: Version Packages (#9834)ecdf962ci: Version Packages (#9773)e42ddfefix(core): observing "promise" needs to implicitly observe "data" (#9772)cfc755cci: Version Packages (#9770)36ece87ci: Version Packages (#9753)4e1c433fix(hydration): fix unhandled promise rejections (#9752)f4a0cd5chore: update eslint-plugin-react-hooks (#9737)Updates
@tanstack/react-virtualfrom 3.13.8 to 3.13.12Release notes
Sourced from
@tanstack/react-virtual's releases.Changelog
Sourced from
@tanstack/react-virtual's changelog.Commits
b461e78ci: Version Packages (#1032)30bcf55chore(react-virtual): fix vite e2e build (#1030)d21ed98fix(virtual-core): scroll to index doesn't scroll to bottom correctly (#1029)2c70382ci: Version Packages (#1027)545c3c4chore(deps): update all non-major dependencies (#1022)7e9906cci: Version Packages (#1016)152bc3bchore(deps): update all non-major dependencies (#1015)d3ee618chore(deps): update all non-major dependencies (#1010)64b6f3bchore(deps): update all non-major dependencies (#1006)27f779bci: Version Packages (#1005)Updates
@uiw/codemirror-themes-allfrom 4.23.12 to 4.25.3Release notes
Sourced from
@uiw/codemirror-themes-all's releases.... (truncated)
Commits
497bc04released v4.25.3 #750b6d965ffix: Langs extension types fix (#750)212172dtype: Fix typings in gen-langs-map.cjs (#749)e853905doc: Update README.mdcaa8aa2doc: Update README.mdd6e131edoc: Update README.mdc2fbf78doc: Update README.mde0edd55released v4.25.2952e1bdfix(extensions): typing issue string instead of an union type (#747)cc35e8bwebsite: fix type issue.Updates
@uiw/react-codemirrorfrom 4.23.12 to 4.25.3Release notes
Sourced from
@uiw/react-codemirror's releases.... (truncated)
Commits
497bc04released v4.25.3 #750b6d965ffix: Langs extension types fix (#750)212172dtype: Fix typings in gen-langs-map.cjs (#749)e853905doc: Update README.mdcaa8aa2doc: Update README.mdd6e131edoc: Update README.mdc2fbf78doc: Update README.mde0edd55released v4.25.2952e1bdfix(extensions): typing issue string instead of an union type (#747)cc35e8bwebsite: fix type issue.Updates
@xyflow/reactfrom 12.4.4 to 12.9.3Release notes
Sourced from
@xyflow/react's releases.... (truncated)
Changelog
Sourced from
@xyflow/react's changelog.... (truncated)
Commits
12c516dchore(packages): bumpcb2db9fchore(reactflow): paneClickDistance default 17680cefMerge pull request #5594 from xyflow/enhance/connection-snappinga52ccc2chore(packages): bumpb298819chore(pane): handle nodes selection0d2cda7also postpone starting selection when clicking on a node11aa29balways pass current pointer position to connection1522b24chore(packages): bump2baa839simplify conditionseb7a272rename hasActiveSelection to isSelectionEnabledUpdates
axiosfrom 1.12.0 to 1.13.2Release notes
Sourced from axios's releases.
... (truncated)
Changelog
Sourced from axios's changelog.