8000 fix(deps): update all by renovate[bot] · Pull Request #192 · and-action/and-action · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

fix(deps): update all #192

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

Merged
merged 2 commits into from
May 5, 2025
Merged

fix(deps): update all #192

merged 2 commits into from
May 5, 2025

Conversation

renovate[bot]
Copy link
Contributor
@renovate renovate bot commented May 5, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@angular-devkit/build-angular 19.2.8 -> 19.2.10 age adoption passing confidence
@angular/animations (source) 19.2.7 -> 19.2.9 age adoption passing confidence
@angular/cdk 19.2.10 -> 19.2.14 age adoption passing confidence
@angular/cli 19.2.8 -> 19.2.10 age adoption passing confidence
@angular/common (source) 19.2.7 -> 19.2.9 age adoption passing confidence
@angular/compiler (source) 19.2.7 -> 19.2.9 age adoption passing confidence
@angular/compiler-cli (source) 19.2.7 -> 19.2.9 age adoption passing confidence
@angular/core (source) 19.2.7 -> 19.2.9 age adoption passing confidence
@angular/forms (source) 19.2.7 -> 19.2.9 age adoption passing confidence
@angular/language-service (source) 19.2.7 -> 19.2.9 age adoption passing confidence
@angular/material 19.2.10 -> 19.2.14 age adoption passing confidence
@angular/platform-browser (source) 19.2.7 -> 19.2.9 age adoption passing confidence
@angular/platform-browser-dynamic (source) 19.2.7 -> 19.2.9 age adoption passing confidence
@angular/router (source) 19.2.7 -> 19.2.9 age adoption passing confidence
@apollo/client (source) 3.12.11 -> 3.13.8 age adoption passing confidence
@types/node (source) 22.14.1 -> 22.15.3 age adoption passing confidence
@typescript-eslint/eslint-plugin (source) 8.30.1 -> 8.31.1 age adoption passing confidence
@typescript-eslint/parser (source) 8.30.1 -> 8.31.1 age adoption passing confidence
core-js (source) 3.41.0 -> 3.42.0 age adoption passing confidence
eslint-plugin-jsdoc 50.6.9 -> 50.6.11 age adoption passing confidence
graphql 16.10.0 -> 16.11.0 age adoption passing confidence
jasmine-core (source) 5.6.0 -> 5.7.1 age adoption passing confidence
mocha (source) 11.1.0 -> 11.2.2 age adoption passing confidence

Release Notes

angular/angular-cli (@​angular-devkit/build-angular)

v19.2.10

Compare Source

@​angular/build
Commit Type Description
067f1cba0 fix update vite to 6.2.7

v19.2.9

Compare Source

@​angular-devkit/build-angular
Commit Type Description
de52cc2c8 fix update http-proxy-middleware to v3.0.5
@​angular/build
Commit Type Description
cc5229a45 fix pass preserveSymlinks option to Karma esbuild builder
@​angular/ssr
Commit Type Description
a4e415ea6 fix support getPrerenderParams for wildcard routes
angular/angular (@​angular/animations)

v19.2.9

Compare Source

core
Commit Type Description
946b844e0d fix async EventEmitter error should not prevent stability (#​61028)
dbb87026ca fix call DestroyRef on destroy callback if view is destroyed [patch] (#​61061)
2e140a136a fix prevent stash listener conflicts [patch] (#​61063)

v19.2.8

Compare Source

forms
Commit Type Description
ea4a211216 fix make NgForm emit FormSubmittedEvent and FormResetEvent (#​60887)
angular/components (@​angular/cdk)

v19.2.14

Compare Source

v19.2.13

Compare Source

v19.2.12

Compare Source

google-maps
Commit Description
fix - 278f29e90 implicitly include google.maps types instead of the triple slash workaround (#​30942)
material
Commit Description
fix - 5fa518581 chips: icon cut off when text-spacing is increased (#​30867)
fix - 5efd099a3 schematics: surface-container-low token not emitted (#​30985)
fix - 47ae20144 table: height tokens not applying to flex table (#​30978)
fix - 9a8d136d6 tabs: flicker when animationDuration is set to zero (#​30966) (#​30968)
cdk
Commit Description
fix - 63c5e0068 overlay: reduce touch interaction delay on backdrop (#​30971)
fix - 00dac592a stepper: resolve null pointer errors (#​30944)
multiple
Commit Description
fix - 33a721716 ensure mat-option parents are the offsetParent (#​30977) (#​30980)

v19.2.11

Compare Source

cdk
Commit Type Description
0509a99d27 fix overlay: scroll was blocked when zoomed out even if scrolling wasn't an option (#​30762)
14afce23b6 fix schematics: account for new karma builder (#​30907)
material
Commit Type Description
4d0dcc49f8 fix list: update documentation (#​30883)
apollographql/apollo-client (@​apollo/client)

v3.13.8

Compare Source

Patch Changes

v3.13.7

Compare Source

Patch Changes

v3.13.6

Compare Source

Patch Changes

v3.13.5

Compare Source

Patch Changes
  • #​12461 12c8d06 Thanks @​jerelmiller! - Fix an issue where a cache-first query would return the result for previous variables when a cache update is issued after simultaneously changing variables and skipping the query.

v3.13.4

Compare Source

Patch Changes

v3.13.3

Compare Source

Patch Changes
  • #​12362 f6d387c Thanks @​jerelmiller! - Fixes an issue where calling observableQuery.getCurrentResult() when the errorPolicy was set to all would return the networkStatus as NetworkStatus.ready when there were errors returned in the result. This has been corrected to report NetworkStatus.error.

    This bug also affected the useQuery and useLazyQuery hooks and may affect you if you check for networkStatus in your component.

v3.13.2

Compare Source

Patch Changes
  • #​12409 6aa2f3e Thanks @​phryneas! - To mitigate problems when Apollo Client ends up more than once in the bundle, some unique symbols were converted into Symbol.for calls.

  • #​12392 644bb26 Thanks @​Joja81! - Fixes an issue where the DeepOmit type would turn optional properties into required properties. This should only affect you if you were using the omitDeep or stripTypename utilities exported by Apollo Client.

  • #​12404 4332b88 Thanks @​jerelmiller! - Show NaN rather than converting to null in debug messages from MockLink for unmatched variables values.

v3.13.1

Compare Source

Patch Changes

v3.13.0

Compare Source

Minor Changes
  • #​12066 c01da5d Thanks @​jerelmiller! - Adds a new useSuspenseFragment hook.

    useSuspenseFragment suspends until data is complete. It is a drop-in replacement for useFragment when you prefer to use Suspense to control the loading state of a fragment. See the documentation for more details.

  • #​12174 ba5cc33 Thanks @​jerelmiller! - Ensure errors thrown in the onCompleted callback from useMutation don't call onError.

  • #​12340 716d02e Thanks @​phryneas! - Deprecate the onCompleted and onError callbacks of useQuery and useLazyQuery.
    For more context, please see the related issue on GitHub.

  • #​12276 670f112 Thanks @​Cellule! - Provide a more type-safe option for the previous data value passed to observableQuery.updateQuery. Using it could result in crashes at runtime as this callback could be called with partial data even though its type reported the value as a complete result.

    The updateQuery callback function is now called with a new type-safe previousData property and a new complete property in the 2nd argument that determines whether previousData is a complete or partial result.

    As a result of this change, it is recommended to use the previousData property passed to the 2nd argument of the callback rather than using the previous data value from the first argument since that value is not type-safe. The first argument is now deprecated and will be removed in a future version of Apollo Client.

    observableQuery.updateQuery(
      (unsafePreviousData, { previousData, complete }) => {
        previousData;
        // ^? TData | DeepPartial<TData> | undefined
    
        if (complete) {
          previousData;
          // ^? TData
        } else {
          previousData;
          // ^? DeepPartial<TData> | undefined
        }
      }
    );
  • #​12174 ba5cc33 Thanks @​jerelmiller! - Reject the mutation promise if errors are thrown in the onCompleted callback of useMutation.

Patch Changes
  • #​12276 670f112 Thanks @​Cellule! - Fix the return type of the updateQuery function to allow for undefined. updateQuery had the ability to bail out of the update by returning a falsey value, but the return type enforced a query value.

    observableQuery.updateQuery(
      (unsafePreviousData, { previousData, complete }) => {
        if (!complete) {
          // Bail out of the update by returning early
          return;
        }
    
        // ...
      }
    );
  • #​12296 2422df2 Thanks @​Cellule! - Deprecate option ignoreResults in useMutation.
    Once this option is removed, existing code still using it might see increase in re-renders.
    If you don't want to synchronize your component state with the mutation, please use useApolloClient to get your ApolloClient instance and call client.mutate directly.

  • #​12338 67c16c9 Thanks @​phryneas! - In case of a multipart response (e.g. with @defer), query deduplication will
    now keep going until the final chunk has been received.

  • #​12276 670f112 Thanks @​Cellule! - Fix the type of the variables property passed as the 2nd argument to the subscribeToMore callback. This was previously reported as the variables type for the subscription itself, but is now properly typed as the query variables.

typescript-eslint/typescript-eslint (@​typescript-eslint/eslint-plugin)

v8.31.1

Compare Source

🩹 Fixes
  • eslint-plugin: [no-unnecessary-condition] downgrade fix to suggestion (#​11081)
❤️ Thank You

You can read about our versioning strategy and releases on our website.

v8.31.0

Compare Source

🚀 Features
  • eslint-plugin: [no-unnecessary-type-assertion] add option to ignore string const assertions (#​10979)
❤️ Thank You
  • Nicolas Le Cam

You can read about our versioning strategy and releases on our website.

typescript-eslint/typescript-eslint (@​typescript-eslint/parser)

v8.31.1

Compare Source

This was a version bump only for parser to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

v8.31.0

Compare Source

This was a version bump only for parser to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

zloirock/core-js (core-js)

v3.42.0

Compare Source

  • Changes v3.41.0...v3.42.0 (142 commits)
  • Map upsert proposal:
    • Moved to stage 2.7, April 2025 TC39 meeting
    • Validation order of WeakMap.prototype.getOrInsertComputed updated following tc39/proposal-upsert#79
    • Built-ins:
      • Map.prototype.getOrInsert
      • Map.prototype.getOrInsertComputed
      • WeakMap.prototype.getOrInsert
      • WeakMap.prototype.getOrInsertComputed
  • Don't call well-known Symbol methods for RegExp on primitive values following tc39/ecma262#3009:
    • For avoid performance regression, temporarily, only in own core-js implementations
    • Built-ins:
      • String.prototype.matchAll
      • String.prototype.match
      • String.prototype.replaceAll
      • String.prototype.replace
      • String.prototype.search
      • String.prototype.split
  • Added workaround for the Uint8Array.prototype.setFromBase64 bug in some of Linux builds of WebKit
  • Implemented early-error iterator closing following tc39/ecma262#3467, including fix of a WebKit bug, in the following methods:
    • Iterator.prototype.drop
    • Iterator.prototype.every
    • Iterator.prototype.filter
    • Iterator.prototype.find
    • Iterator.prototype.flatMap
    • Iterator.prototype.forEach
    • Iterator.prototype.map
    • Iterator.prototype.reduce
    • Iterator.prototype.some
    • Iterator.prototype.take
  • Fixed missing forced replacement of AsyncIterator helpers
  • Added closing of sync iterator when async wrapper yields a rejection following tc39/ecma262#2600. Affected methods:
  • Added detection for throwing on undefined initial parameter in Iterator.prototype.reduce (see WebKit bug)
  • core-js-compat and core-js-builder API:
    • Added 'intersect' support for targets.esmodules (Babel 7 behavior)
    • Fixed handling of targets.esmodules: true (Babel 7 behavior)
  • Compat data improvements:
gajus/eslint-plugin-jsdoc (eslint-plugin-jsdoc)

v50.6.11

Compare Source

Bug Fixes
  • check-values: workaround parse-imports-exports bug in handling trailing whitespace; fixes #​1373 (#​1374) (65b0dc0)

v50.6.10

Compare Source

Bug Fixes
graphql/graphql-js (graphql)

v16.11.0: 16.11.0

Compare Source

v16.11.0 (2025-04-26)
New Feature 🚀
Bug Fix 🐞
Docs 📝
11 PRs were merged
Polish 💅
Internal 🏠
4 PRs were merged
Committers: 8
jasmine/jasmine (jasmine-core)

v5.7.1

Compare Source

Please see the release notes.

v5.7.0

Compare Source

Please see the release notes.

mochajs/mocha (mocha)

v11.2.2

Compare Source

🩹 Fixes
📚 Documentation

v11.2.1

Compare Source

🩹 Fixes
📚 Do 8000 cumentation
🧹 Chores

v11.2.0

Compare Source

🌟 Features
📚 Documentation
🧹 Chores

Configuration

📅 Schedule: Branch creation - "before 4:00 am on Monday" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Never, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot requested a review from pchorus May 5, 2025 01:42
@renovate renovate bot force-pushed the feature/renovate/all branch from 8afb399 to 8b27ead Compare May 5, 2025 05:20
@pchorus pchorus enabled auto-merge May 5, 2025 05:24
Copy link
Contributor Author
renovate bot commented May 5, 2025

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

@pchorus pchorus merged commit 31e21a0 into master May 5, 2025
4 checks passed
@pchorus pchorus deleted the feature/renovate/all branch May 5, 2025 05:26
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant
0