8000 fix(deps): update all by renovate[bot] · Pull Request #189 · 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 #189

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
Apr 7, 2025
Merged

fix(deps): update all #189

merged 2 commits into from
Apr 7, 2025

Conversation

renovate[bot]
Copy link
Contributor
@renovate renovate bot commented Apr 7, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@angular-devkit/build-angular 19.2.5 -> 19.2.6 age adoption passing confidence
@angular/animations (source) 19.2.4 -> 19.2.5 age adoption passing confidence
@angular/cdk 19.2.7 -> 19.2.8 age adoption passing confidence
@angular/cli 19.2.5 -> 19.2.6 age adoption passing confidence
@angular/common (source) 19.2.4 -> 19.2.5 age adoption passing confidence
@angular/compiler (source) 19.2.4 -> 19.2.5 age adoption passing confidence
@angular/compiler-cli (source) 19.2.4 -> 19.2.5 age adoption passing confidence
@angular/core (source) 19.2.4 -> 19.2.5 age adoption passing confidence
@angular/forms (source) 19.2.4 -> 19.2.5 age adoption passing confidence
@angular/language-service (source) 19.2.4 -> 19.2.5 age adoption passing confidence
@angular/material 19.2.7 -> 19.2.8 age adoption passing confidence
@angular/platform-browser (source) 19.2.4 -> 19.2.5 age adoption passing confidence
@angular/platform-browser-dynamic (source) 19.2.4 -> 19.2.5 age adoption passing confidence
@angular/router (source) 19.2.4 -> 19.2.5 age adoption passing confidence
@apollo/client (source) 3.12.11 -> 3.13.6 age adoption passing confidence
@storybook/addon-essentials (source) 8.6.11 -> 8.6.12 age adoption passing confidence
@storybook/addon-interactions (source) 8.6.11 -> 8.6.12 age adoption passing confidence
@storybook/addon-links (source) 8.6.11 -> 8.6.12 age adoption passing confidence
@storybook/angular (source) 8.6.11 -> 8.6.12 age adoption passing confidence
@storybook/blocks (source) 8.6.11 -> 8.6.12 age adoption passing confidence
@types/node (source) 22.13.14 -> 22.14.0 age adoption passing confidence
@typescript-eslint/eslint-plugin (source) 8.28.0 -> 8.29.0 age adoption passing confidence
@typescript-eslint/parser (source) 8.28.0 -> 8.29.0 age adoption passing confidence
storybook (source) 8.6.11 -> 8.6.12 age adoption passing confidence

Release Notes

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

v19.2.6

Compare Source

@​angular-devkit/schematics
Commit Type Description
e5aec562f fix properly resolve relative schematics when executed from a nested directory
@​angular/build
Commit Type Description
76cfd364a fix correctly handle false value in server option
d69188c6b fix update vite to 6.2.4 due to a security issues
angular/angular (@​angular/animations)

v19.2.5

Compare Source

Commit Type Description
e61d06afb5 fix step 6 tutorial docs (#​60630)
animations
Commit Type Description
fa48f98d9f fix add missing peer dependency on @angular/common (#​60660)
compiler
Commit Type Description
ca5aa4d55b fix throw for invalid "as" expression in if block (#​60580)
compiler-cli
Commit Type Description
f4c4b10ea8 fix Produce fatal diagnostic on duplicate decorated properties (#​60376)
22a0e54ac4 fix support relative imports to symbols outside rootDir (#​60555)
core
Commit Type Description
64da69f7b6 fix check ngDevMode for undefined (#​60565)
8f68d1bec3 fix fix ng generate @​angular/core:output-migration (#​60626)
bc79985c65 fix fix regexp for event types (#​60592)
006ac7f22f fix fixes #​592882 ng generate @​angular/core:signal-queries-migration (#​60688)
da6e93f434 fix preserve comments in internal inject migration (#​60588)
dbbddd1617 fix prevent omission of deferred pipes in full compilation (#​60571)
language-service
Commit Type Description
0e9e0348dd fix Update adapter to log instead of throw errors (#​60651)
migrations
Commit Type Description
15f53f035b fix handle shorthand assignments in super call (#​60602)
4b161e6234 fix inject migration not handling super parameter referenced via this (#​60602)
router
Commit Type Description
958e98e4f7 fix Add missing types to transition (#​60307)
service-worker
Commit Type Description
7cd89ad2c6 fix assign initializing client's app version, when a request is for worker script (#​58131)
angular/components (@​angular/cdk)

v19.2.8

Compare Source

cdk
Commit Type Description
0ee159390f perf drag-drop: fix performance regression when destroying items (#​30751)
material
Commit Type Description
491fce2aa7 fix form-field: move error aria-live to parent container (#​30678)
bdbf32af29 fix tabs: allow ID to be set on tab (#​30768)
cdk-experimental
Commit Type Description
bc99b420b2 perf column-resize: improve hover responsiveness of… (#​30708)
apollographql/apollo-client (@​apollo/client)

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.

storybookjs/storybook (@​storybook/addon-essentials)

v8.6.12

Compare Source

storybookjs/storybook (@​storybook/addon-interactions)

v8.6.12

Compare Source

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

v8.29.0

Compare Source

🚀 Features
  • eslint-plugin: [prefer-nullish-coalescing] create ignoreIfStatements option (#​11000)
🩹 Fixes
  • eslint-plugin: [no-array-constructor] remove optional chaining exemption (#​10963)
  • eslint-plugin: support arbitrary extensions in definition files (#​10957)
  • eslint-plugin: [prefer-for-of] fix false positive when using erasable type syntax within update expressions (#​10981)
  • eslint-plugin: [use-unknown-in-catch-callback-variable] remove fixable property (#​10993)
  • eslint-plugin: [no-unnecessary-condition] don't report on unnecessary optional array index access when noUncheckedIndexedAccess is enabled (#​10961)
❤️ Thank You

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

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

v8.29.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.


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 April 7, 2025 03:12
Copy link
Contributor Author
renovate bot commented Apr 7, 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 enabled auto-merge April 7, 2025 04:22
@pchorus pchorus merged commit c0d8866 into master Apr 7, 2025
4 checks passed
@pchorus pchorus deleted the feature/renovate/all branch April 7, 2025 04:23
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