Skip to content
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

build(deps): bump the front-prod-minor-update group across 4 directories with 6 updates #2017

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 10, 2025

Bumps the front-prod-minor-update group with 3 updates in the / directory: @apollo/client, react-router-dom and zod.
Bumps the front-prod-minor-update group with 6 updates in the /front directory:

Package From To
@apollo/client 3.12.2 3.13.3
react-router-dom 6.29.0 6.30.0
zod 3.24.1 3.24.2
jotai 2.10.4 2.12.1
react-big-calendar 1.17.1 1.18.0
react-icons 5.4.0 5.5.0

Bumps the front-prod-minor-update group with 3 updates in the /shared-components directory: @apollo/client, react-router-dom and zod.
Bumps the front-prod-minor-update group with 3 updates in the /statviz directory: @apollo/client, react-router-dom and zod.

Updates @apollo/client from 3.12.2 to 3.13.3

Release notes

Sourced from @​apollo/client's releases.

v3.13.3

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

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

Patch Changes

v3.13.0

Apollo Client v3.13.0 introduces a new hook, useSuspenseFragment, as a drop-in replacement for useFragment in apps that are using React Suspense. This is the “last” React hook we are introducing in 3.x - we think this rounds out the “big concepts” in our React Suspense and GraphQL fragment story. See the docs for information on this and our other Suspense-supporting hooks. There are some TypeScript quality-of-life improvements shipped in this release for observableQuery.updateQuery and subscribeToMore. Additionally, the return type of updateQuery now includes undefined to allow an early exit from updates. This was always supported at runtime, but was missed on the TypeScript side. On the runtime side, we’ve fixed query deduplication behavior for multipart responses and corrected the error handling in useMutation callbacks. onCompleted and onError in useQuery and useLazyQuery have been deprecated for multiple reasons. See below for full details 👀

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) {

... (truncated)

Changelog

Sourced from @​apollo/client's changelog.

3.13.3

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.

3.13.2

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.

3.13.1

Patch Changes

3.13.0

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

... (truncated)

Commits

Updates react-router-dom from 6.29.0 to 6.30.0

Release notes

Sourced from react-router-dom's releases.

react-router-dom-v5-compat@6.4.0-pre.15

Patch Changes

  • Updated dependencies
    • react-router@6.4.0-pre.15
    • react-router-dom@6.4.0-pre.15

react-router-dom-v5-compat@6.4.0-pre.11

Patch Changes

  • Updated dependencies
    • react-router@6.4.0-pre.11
    • react-router-dom@6.4.0-pre.11

react-router-dom-v5-compat@6.4.0-pre.10

Patch Changes

  • Updated dependencies
    • react-router@6.4.0-pre.10
    • react-router-dom@6.4.0-pre.10

react-router-dom-v5-compat@6.4.0-pre.9

Patch Changes

  • Updated dependencies
    • react-router@6.4.0-pre.9
    • react-router-dom@6.4.0-pre.9

react-router-dom-v5-compat@6.4.0-pre.8

Patch Changes

  • Updated dependencies
    • react-router@6.4.0-pre.8
    • react-router-dom@6.4.0-pre.8

react-router-dom-v5-compat@6.4.0-pre.7

Patch Changes

  • Updated dependencies
    • react-router@6.4.0-pre.7
    • react-router-dom@6.4.0-pre.7

react-router-dom-v5-compat@6.4.0-pre.6

Patch Changes

  • 44bce3c6: Fix react-router-dom peer dependency version
    • react-router@6.4.0-pre.6
    • react-router-dom@6.4.0-pre.6
Changelog

Sourced from react-router-dom's changelog.

v6.30.0

Date: 2025-02-27

Minor Changes

  • Add fetcherKey as a parameter to patchRoutesOnNavigation (#13109)

Patch Changes

  • Fix regression introduced in 6.29.0 via #12169 that caused issues navigating to hash routes inside splat routes for applications using Lazy Route Discovery (patchRoutesOnNavigation) (#13108)

Full Changelog: v6.29.0...v6.30.0

Commits

Updates zod from 3.24.1 to 3.24.2

Release notes

Sourced from zod's releases.

v3.24.2

Notes

Support asynchronous checks in z.custom() .

const customSchema = z.custom<number>(async (x) => {
  return typeof x === "number";
});

Commits:

  • cdcf9d4263cc544c7cb49855b31612d4305da72c Bump rollup from 2.79.1 to 2.79.2 (#3895)
  • a2ad37099e8f7117d231cc2c72d0e471893643b2 Bump find-my-way from 8.2.0 to 8.2.2 (#3897)
  • 0e02d66d1bcaad9c0f92609431e1726e088a8112 Bump nanoid from 3.3.7 to 3.3.8 (#3896)
  • 96be65f0d71b0bf8e8f330dc0541cc895edd6459 Bump cross-spawn from 7.0.3 to 7.0.6 (#3882)
  • f7ad26147ba291cb3fb257545972a8e00e767470 Bump micromatch from 4.0.7 to 4.0.8 (#3748)
  • d724620c341e1801db9513f681f731afb3df452a Add zod-struct to utilities for Zod (#3921)
  • 6b96cfd4307649df6a451d74e06c47ac88c01dfe Update README.md (#3949)
  • e376cda8e14d3caa09bc2148ffc668748118db6b Add Courier to README (#3961)
  • 8a099deaef71b3d8bd65986a745b88f08cb28ba5 Add CodeRabbit to sponsors (#3975)
  • 587d160badbe96d1adec1e8ff9d93bbcb3f91c4f WIP (#3976)
  • 9d3af2ee5263971bc0dd7e4927cd07ee854fe4db Add CodeRabbit at Platinum (#3981)
  • eedeb4b69f9f4bb58401d9cb27c8038a042f2c7f docs(X to Zod): Update url for runtyping (#3971)
  • 706f49f9fb852cdde667b65ccb9b765444a86de7 fix: redirect url to correct url (#3939)
  • 7365b7d5564793c42ee02815880463b8bee30028 docs: translate README to Korean (#3934)
  • b7e173de06e223a7a6510903a4110634e2fb5d92 Format
  • 1dd44a0d6f8073f7c417e09ec96580b9ae9bda23 Support async z.custom
  • e30870369d5b8f31ff4d0130d4439fd997deb523 v3.24.2
Commits

Updates @apollo/client from 3.12.2 to 3.13.3

Release notes

Sourced from @​apollo/client's releases.

v3.13.3

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

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

Patch Changes

v3.13.0

Apollo Client v3.13.0 introduces a new hook, useSuspenseFragment, as a drop-in replacement for useFragment in apps that are using React Suspense. This is the “last” React hook we are introducing in 3.x - we think this rounds out the “big concepts” in our React Suspense and GraphQL fragment story. See the docs for information on this and our other Suspense-supporting hooks. There are some TypeScript quality-of-life improvements shipped in this release for observableQuery.updateQuery and subscribeToMore. Additionally, the return type of updateQuery now includes undefined to allow an early exit from updates. This was always supported at runtime, but was missed on the TypeScript side. On the runtime side, we’ve fixed query deduplication behavior for multipart responses and corrected the error handling in useMutation callbacks. onCompleted and onError in useQuery and useLazyQuery have been deprecated for multiple reasons. See below for full details 👀

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) {

... (truncated)

Changelog

Sourced from @​apollo/client's changelog.

3.13.3

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.

3.13.2

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.

3.13.1

Patch Changes

3.13.0

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

... (truncated)

Commits

Updates react-router-dom from 6.29.0 to 6.30.0

Release notes

Sourced from react-router-dom's releases.

react-router-dom-v5-compat@6.4.0-pre.15

Patch Changes

  • Updated dependencies
    • react-router@6.4.0-pre.15
    • react-router-dom@6.4.0-pre.15

react-router-dom-v5-compat@6.4.0-pre.11

Patch Changes

  • Updated dependencies
    • react-router@6.4.0-pre.11
    • react-router-dom@6.4.0-pre.11

react-router-dom-v5-compat@6.4.0-pre.10

Patch Changes

  • Updated dependencies
    • react-router@6.4.0-pre.10
    • react-router-dom@6.4.0-pre.10

react-router-dom-v5-compat@6.4.0-pre.9

Patch Changes

  • Updated dependencies
    • react-router@6.4.0-pre.9
    • react-router-dom@6.4.0-pre.9

react-router-dom-v5-compat@6.4.0-pre.8

Patch Changes

  • Updated dependencies
    • react-router@6.4.0-pre.8
    • react-router-dom@6.4.0-pre.8

react-router-dom-v5-compat@6.4.0-pre.7

Patch Changes

  • Updated dependencies
    • react-router@6.4.0-pre.7
    • react-router-dom@6.4.0-pre.7

react-router-dom-v5-compat@6.4.0-pre.6

Patch Changes

  • 44bce3c6: Fix react-router-dom peer dependency version
    • react-router@6.4.0-pre.6
    • react-router-dom@6.4.0-pre.6
Changelog

Sourced from react-router-dom's changelog.

v6.30.0

Date: 2025-02-27

Minor Changes

  • Add fetcherKey as a parameter to patchRoutesOnNavigation (#13109)

Patch Changes

  • Fix regression introduced in 6.29.0 via #12169 that caused issues navigating to hash routes inside splat routes for applications using Lazy Route Discovery (patchRoutesOnNavigation) (#13108)

Full Changelog: v6.29.0...v6.30.0

Commits

Updates zod from 3.24.1 to 3.24.2

Release notes

Sourced from zod's releases.

v3.24.2

Notes

Support asynchronous checks in z.custom() .

const customSchema = z.custom<number>(async (x) => {
  return typeof x === "number";
});

Commits:

  • cdcf9d4263cc544c7cb49855b31612d4305da72c Bump rollup from 2.79.1 to 2.79.2 (#3895)
  • a2ad37099e8f7117d231cc2c72d0e471893643b2 Bump find-my-way from 8.2.0 to 8.2.2 (#3897)
  • 0e02d66d1bcaad9c0f92609431e1726e088a8112 Bump nanoid from 3.3.7 to 3.3.8 (#3896)
  • 96be65f0d71b0bf8e8f330dc0541cc895edd6459 Bump cross-spawn from 7.0.3 to 7.0.6 (#3882)
  • f7ad26147ba291cb3fb257545972a8e00e767470 Bump micromatch from 4.0.7 to 4.0.8 (#3748)
  • d724620c341e1801db9513f681f731afb3df452a Add zod-struct to utilities for Zod (#3921)
  • 6b96cfd4307649df6a451d74e06c47ac88c01dfe Update README.md (#3949)
  • e376cda8e14d3caa09bc2148ffc668748118db6b Add Courier to README (#3961)
  • 8a099deaef71b3d8bd65986a745b88f08cb28ba5 Add CodeRabbit to sponsors (#3975)
  • 587d160badbe96d1adec1e8ff9d93bbcb3f91c4f WIP (#3976)
  • 9d3af2ee5263971bc0dd7e4927cd07ee854fe4db Add CodeRabbit at Platinum (#3981)
  • eedeb4b69f9f4bb58401d9cb27c8038a042f2c7f docs(X to Zod): Update url for runtyping (#3971)
  • 706f49f9fb852cdde667b65ccb9b765444a86de7 fix: redirect url to correct url (#3939)
  • 7365b7d5564793c42ee02815880463b8bee30028 docs: translate README to Korean (#3934)
  • b7e173de06e223a7a6510903a4110634e2fb5d92 Format
  • 1dd44a0d6f8073f7c417e09ec96580b9ae9bda23 Support async z.custom
  • e30870369d5b8f31ff4d0130d4439fd997deb523 v3.24.2
Commits

Updates jotai from 2.10.4 to 2.12.1

Release notes

Sourced from jotai's releases.

v2.12.1

This fixes an internal behavior necessary for some Jotai ecosystem libraries.

What's Changed

Full Changelog: pmndrs/jotai@v2.12.0...v2.12.1

v2.12.0

This introduces a significant change in the history of Jotai development. The Jotai core aims to remain minimal while supporting the growth of the ecosystem. It now exposes some internal functions for the ecosystem.

For library authors, please make sure to pin the jotai package version if you rely on these internal functions.

Huge thanks to @​dmaskasky for helping finalize the API.

What's Changed

Full Changelog: pmndrs/jotai@v2.11.3...v2.12.0

v2.11.3

Unfortunately, we encountered another regression with the v2.11 rearchitecture. We hope there are no more issues, but we can't be sure if it's stable unless no more are reported. Please give it a try and let us know if you find anything!

What's Changed

Full Changelog: pmndrs/jotai@v2.11.2...v2.11.3

v2.11.2

There was a regression in v2.11.1, which is fixed in this patch.

What's Changed

  • fix(core): derived atom is not re-evaluated if it read between multiple set by @​dai-shi in

New Contributors

Full Changelog: pmndrs/jotai@v2.11.1...v2.11.2

v2.11.1

Jotai v2.11.0 was a big change, and we faced some fundamental issues. It required time to reconsider the architecture from the ground up. We've added various tests, and this patch version should be more stable.

Having that said, we are still in the middle of the re-architecture. If you prefer to stay away from bleeding-edge features and encounter no bugs, feel free to keep using the previous versions.

Kudos to @​dmaskasky

What's Changed

... (truncated)

Commits
  • faea6a3 2.12.1
  • 10a2bbb chore: udpate dev dependencies (#2988)
  • f5d843c fix: remove extra onChange store hook in recomputeInvalidatedAtoms (#2982)
  • b04e073 chore: use default reporter in vitest and fix TS error (#2985)
  • b2bc128 chore(package.json): upgrade pnpm from v8 to v9 (#2987)
  • 6b15d22 2.12.0
  • e796fbe chore: update dev dependencies (#2981)
  • 253e9bd feat(core): expose internals instead of unstable_derive (#2911)
  • 72c1144 chore(package.json): reorder 'fix' scripts to run 'lint' before 'format' (#2976)
  • 2db9769 add pnpm run fix script and update pr template (#2975)
  • Additional commits viewable in compare view

Updates react-big-calendar from 1.17.1 to 1.18.0

Release notes

Sourced from react-big-calendar's releases.

v1.18.0

1.18.0 (2025-02-24)

Features

Changelog

Sourced from react-big-calendar's changelog.

1.18.0 (2025-02-24)

Features

Commits

Updates react-icons from 5.4.0 to 5.5.0

Release notes

Sourced from react-icons's releases.

v5.5.0

What's Changed

New Contributors

Full Changelog: react-icons/react-icons@v5.4.0...v5.5.0

Icon Library License Version Count
Circum Icons MPL-2.0 license 1.0.0 288
Font Awesome 5 CC BY 4.0 License 5.15.4-3-gafecf2a 1612
Font Awesome 6 CC BY 4.0 License 6.6.0 2050
Ionicons 4 MIT 4.6.3 696
Ionicons 5 MIT 5.5.4 1332
Material Design icons

@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Mar 10, 2025
Copy link

codecov bot commented Mar 10, 2025

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 82.74%. Comparing base (6fae8a5) to head (3e4b7dc).

Additional details and impacted files
@@           Coverage Diff           @@
##           master    #2017   +/-   ##
=======================================
  Coverage   82.74%   82.74%           
=======================================
  Files         257      257           
  Lines       16170    16170           
  Branches     2490     2490           
=======================================
  Hits        13380    13380           
  Misses       2759     2759           
  Partials       31       31           
Flag Coverage Δ
backend 99.66% <ø> (ø)

Flags with carried forward coverage won't be shown. Click here to find out more.

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/front-prod-minor-update-b721930ff5 branch from b9f3a77 to d668aa1 Compare March 11, 2025 05:33
…ies with 6 updates

Bumps the front-prod-minor-update group with 3 updates in the / directory: [@apollo/client](https://github.com/apollographql/apollo-client), [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom) and [zod](https://github.com/colinhacks/zod).
Bumps the front-prod-minor-update group with 6 updates in the /front directory:

| Package | From | To |
| --- | --- | --- |
| [@apollo/client](https://github.com/apollographql/apollo-client) | `3.12.2` | `3.13.3` |
| [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom) | `6.29.0` | `6.30.0` |
| [zod](https://github.com/colinhacks/zod) | `3.24.1` | `3.24.2` |
| [jotai](https://github.com/pmndrs/jotai) | `2.10.4` | `2.12.1` |
| [react-big-calendar](https://github.com/jquense/react-big-calendar) | `1.17.1` | `1.18.0` |
| [react-icons](https://github.com/react-icons/react-icons) | `5.4.0` | `5.5.0` |

Bumps the front-prod-minor-update group with 3 updates in the /shared-components directory: [@apollo/client](https://github.com/apollographql/apollo-client), [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom) and [zod](https://github.com/colinhacks/zod).
Bumps the front-prod-minor-update group with 3 updates in the /statviz directory: [@apollo/client](https://github.com/apollographql/apollo-client), [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom) and [zod](https://github.com/colinhacks/zod).


Updates `@apollo/client` from 3.12.2 to 3.13.3
- [Release notes](https://github.com/apollographql/apollo-client/releases)
- [Changelog](https://github.com/apollographql/apollo-client/blob/main/CHANGELOG.md)
- [Commits](apollographql/apollo-client@v3.12.2...v3.13.3)

Updates `react-router-dom` from 6.29.0 to 6.30.0
- [Release notes](https://github.com/remix-run/react-router/releases)
- [Changelog](https://github.com/remix-run/react-router/blob/main/CHANGELOG.md)
- [Commits](https://github.com/remix-run/react-router/commits/react-router-dom@6.30.0/packages/react-router-dom)

Updates `zod` from 3.24.1 to 3.24.2
- [Release notes](https://github.com/colinhacks/zod/releases)
- [Changelog](https://github.com/colinhacks/zod/blob/main/CHANGELOG.md)
- [Commits](colinhacks/zod@v3.24.1...v3.24.2)

Updates `@apollo/client` from 3.12.2 to 3.13.3
- [Release notes](https://github.com/apollographql/apollo-client/releases)
- [Changelog](https://github.com/apollographql/apollo-client/blob/main/CHANGELOG.md)
- [Commits](apollographql/apollo-client@v3.12.2...v3.13.3)

Updates `react-router-dom` from 6.29.0 to 6.30.0
- [Release notes](https://github.com/remix-run/react-router/releases)
- [Changelog](https://github.com/remix-run/react-router/blob/main/CHANGELOG.md)
- [Commits](https://github.com/remix-run/react-router/commits/react-router-dom@6.30.0/packages/react-router-dom)

Updates `zod` from 3.24.1 to 3.24.2
- [Release notes](https://github.com/colinhacks/zod/releases)
- [Changelog](https://github.com/colinhacks/zod/blob/main/CHANGELOG.md)
- [Commits](colinhacks/zod@v3.24.1...v3.24.2)

Updates `jotai` from 2.10.4 to 2.12.1
- [Release notes](https://github.com/pmndrs/jotai/releases)
- [Commits](pmndrs/jotai@v2.10.4...v2.12.1)

Updates `react-big-calendar` from 1.17.1 to 1.18.0
- [Release notes](https://github.com/jquense/react-big-calendar/releases)
- [Changelog](https://github.com/jquense/react-big-calendar/blob/master/CHANGELOG.md)
- [Commits](jquense/react-big-calendar@v1.17.1...v1.18.0)

Updates `react-icons` from 5.4.0 to 5.5.0
- [Release notes](https://github.com/react-icons/react-icons/releases)
- [Commits](react-icons/react-icons@v5.4.0...v5.5.0)

Updates `@apollo/client` from 3.12.2 to 3.13.3
- [Release notes](https://github.com/apollographql/apollo-client/releases)
- [Changelog](https://github.com/apollographql/apollo-client/blob/main/CHANGELOG.md)
- [Commits](apollographql/apollo-client@v3.12.2...v3.13.3)

Updates `react-router-dom` from 6.29.0 to 6.30.0
- [Release notes](https://github.com/remix-run/react-router/releases)
- [Changelog](https://github.com/remix-run/react-router/blob/main/CHANGELOG.md)
- [Commits](https://github.com/remix-run/react-router/commits/react-router-dom@6.30.0/packages/react-router-dom)

Updates `zod` from 3.24.1 to 3.24.2
- [Release notes](https://github.com/colinhacks/zod/releases)
- [Changelog](https://github.com/colinhacks/zod/blob/main/CHANGELOG.md)
- [Commits](colinhacks/zod@v3.24.1...v3.24.2)

Updates `@apollo/client` from 3.12.2 to 3.13.3
- [Release notes](https://github.com/apollographql/apollo-client/releases)
- [Changelog](https://github.com/apollographql/apollo-client/blob/main/CHANGELOG.md)
- [Commits](apollographql/apollo-client@v3.12.2...v3.13.3)

Updates `react-router-dom` from 6.29.0 to 6.30.0
- [Release notes](https://github.com/remix-run/react-router/releases)
- [Changelog](https://github.com/remix-run/react-router/blob/main/CHANGELOG.md)
- [Commits](https://github.com/remix-run/react-router/commits/react-router-dom@6.30.0/packages/react-router-dom)

Updates `zod` from 3.24.1 to 3.24.2
- [Release notes](https://github.com/colinhacks/zod/releases)
- [Changelog](https://github.com/colinhacks/zod/blob/main/CHANGELOG.md)
- [Commits](colinhacks/zod@v3.24.1...v3.24.2)

---
updated-dependencies:
- dependency-name: "@apollo/client"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: front-prod-minor-update
- dependency-name: react-router-dom
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: front-prod-minor-update
- dependency-name: zod
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: front-prod-minor-update
- dependency-name: "@apollo/client"
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: front-prod-minor-update
- dependency-name: react-router-dom
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: front-prod-minor-update
- dependency-name: zod
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: front-prod-minor-update
- dependency-name: jotai
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: front-prod-minor-update
- dependency-name: react-big-calendar
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: front-prod-minor-update
- dependency-name: react-icons
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: front-prod-minor-update
- dependency-name: "@apollo/client"
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: front-prod-minor-update
- dependency-name: react-router-dom
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: front-prod-minor-update
- dependency-name: zod
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: front-prod-minor-update
- dependency-name: "@apollo/client"
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: front-prod-minor-update
- dependency-name: react-router-dom
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: front-prod-minor-update
- dependency-name: zod
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: front-prod-minor-update
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/front-prod-minor-update-b721930ff5 branch from d668aa1 to 3e4b7dc Compare March 12, 2025 05:57
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant