An open index of dependabot pull requests across open source projects.

Bump the minor-and-patch group across 1 directory with 5 updates

Merged
Number: #19
Type: Pull Request
State: Merged
Author: dependabot[bot] dependabot[bot]
Association: Contributor
Comments: 0
Created: June 02, 2025 at 05:56 PM UTC
(5 months ago)
Updated: June 08, 2025 at 07:10 AM UTC
(4 months ago)
Merged: June 08, 2025 at 07:10 AM UTC
(4 months ago)
by randroid88
Time to Close: 6 days
Labels:
dependencies frontend
Assignees:
randroid88
Description:

Bumps the minor-and-patch group with 5 updates in the /frontend directory:

Package From To
@tanstack/react-query 5.77.2 5.79.2
react-hook-form 7.56.4 7.57.0
zod 3.25.28 3.25.48
postcss 8.5.3 8.5.4
typescript-eslint 8.33.0 8.33.1

Updates @tanstack/react-query from 5.77.2 to 5.79.2

Release notes

Sourced from @​tanstack/react-query's releases.

v5.79.2

Version 5.79.2 - 6/2/25, 4:29 PM

Changes

Refactor

  • react-query: change the order of const variables (#9211) (0e083c6) by novice0840
  • query-core: extract context creation to functions and move type assertions (#9210) (0cbfc5e) by Braden Wong

Packages

  • @​tanstack/query-core@​5.79.2
  • @​tanstack/react-query@​5.79.2
  • @​tanstack/query-broadcast-client-experimental@​5.79.2
  • @​tanstack/query-persist-client-core@​5.79.2
  • @​tanstack/query-sync-storage-persister@​5.79.2
  • @​tanstack/react-query-devtools@​5.79.2
  • @​tanstack/react-query-persist-client@​5.79.2
  • @​tanstack/react-query-next-experimental@​5.79.2
  • @​tanstack/solid-query@​5.79.2
  • @​tanstack/solid-query-devtools@​5.79.2
  • @​tanstack/solid-query-persist-client@​5.79.2
  • @​tanstack/svelte-query@​5.79.2
  • @​tanstack/svelte-query-devtools@​5.79.2
  • @​tanstack/svelte-query-persist-client@​5.79.2
  • @​tanstack/vue-query@​5.79.2
  • @​tanstack/vue-query-devtools@​5.79.2
  • @​tanstack/angular-query-experimental@​5.79.2
  • @​tanstack/query-async-storage-persister@​5.79.2
  • @​tanstack/angular-query-devtools-experimental@​5.79.2

v5.79.1

Version 5.79.1 - 6/2/25, 4:17 PM

Changes

Refactor

  • types: narrow onSuccess/onError/onMutate/onSettled callback types to Promise | void (#9202) (982f6ca) by Braden Wong

Docs

  • Mention query keys needs to be serializable using JSON.stringify (#9204) (ff2b51a) by Zentrik

Packages

  • @​tanstack/query-core@​5.79.1
  • @​tanstack/react-query-persist-client@​5.79.1
  • @​tanstack/query-broadcast-client-experimental@​5.79.1

... (truncated)

Commits

Updates react-hook-form from 7.56.4 to 7.57.0

Release notes

Sourced from react-hook-form's releases.

Version 7.57.0

🫚 feat: root errors count in schema error lookup (#12839) 👁️ feat: focus form field for errors supplied by errors prop (#12805) ⌨️ feat: add and export options config for resetField api (#12819) 🐞 close #12707 useController focus function runtime issue (#12843) 🐞 fix: add proper types to form.subscribe (#12850) 🐞 fix: add type info for callback args in subscribe (#12859) 🔄 close #12835 revert original fix on errors empty object check (#12846)

Version 7.57.0-next.0

👀 useWatch new compute props

  • subscribe to the entire form but only return updated value with certain condition
type FormValue = {
  test: string;
}

const watchedValue = useWatch({
control: methods.control,
compute: (data: FormValue) => {
if (data.test?.length) {
return data.test;
}

return '';

},
});

  • subscribe to a specific form value state
type FormValue = {
  test: string;
}

const watchedValue = useWatch({
control: methods.control,
name: 'test',
compute: (data: string) => {
return data.length > 3 ? data : '';
},
});

Commits

Updates zod from 3.25.28 to 3.25.48

Release notes

Sourced from zod's releases.

v3.25.48

Commits:

  • a1276395e53df7a77219ac1a59f20e3f9c710f67 rm console.dir from $ZodDiscriminatedUnion (#4593)
  • 343bd590278c68f86208395ab5da6c213ccc88f3 3.25.48

v3.25.47

Commits:

  • 98cd8b33e0e1b85dfe26227a05e77bbf5fc3f014 Fix more excessively deep
  • 7bfc8af0f805453ac06d0d11bce7e76b01fd3240 3.25.47

v3.25.46

Commits:

  • 52808166ec4ee89ed04d0da6b86c42134f6b07e4 Improve disc union error messaging
  • 4a3baf76f30048a89719018f4c5134f252debf94 Fix lint
  • aff9561126e591cd9e05beda2d1c69d302bce79e Fix branded types in record
  • 50e9afb5606018ecacd6c64aee90f4f8006d851b 3.25.46

v3.25.45

Commits:

  • dc2c0b0fccd893a08306ccadc8baa821b1b06a5b minor grammar typo fix (#4584)
  • 6fd3b39ab65970ec7f708e0aa4d0c9e20d9d2050 fix(JSONSchema): add type for enum (#4577)
  • 6be478b98c6a36895e28ab0d8b214880dc645d88 Fix ZodType assignability issues
  • 69ccb67f6d9d264dd26b6ba0bcc6f2ddc90a8fbc 3.25.45

v3.25.44

Commits:

  • 91267823162009488fff03f2a7240b89767e4d7d Update input to prevent excessively deep in more cases
  • e2d72afba3378ab81c691bc81c7e96d6f4845e06 Loosen and expand metadata typing (#4586)
  • fc69453e625a1b1c1a4523def3e4e60e5f2af8ca 3.25.44

v3.25.43

Commits:

  • 508e3065ca2debf43a2a8c27845ab7c7d4fe3bb0 Fix type inference in ZodMiniType check method (#4568)
  • f8fef45cfa813412beecadfbbe9d6df09ac33a86 Ecosystem: Add Express Zod API (#4579)
  • 289cba3b95e522b9c66611b94c218bcdfe8566b2 Fix type inference in ZodMiniType check method (#4568)
  • 011623a7daaa4e5215178073e3a0aeb2e760b2a9 Fix dts files

v3.25.42

Commits:

  • 670a6d2f6f4b5ed902fbac7e627e71eb529d834c Improve Next.js tree shaking (#4569)
  • 548e7ef10912c84aa67a98da52b17dd0bffe1d9c 3.25.42

v3.25.41

... (truncated)

Commits

Updates postcss from 8.5.3 to 8.5.4

Release notes

Sourced from postcss's releases.

8.5.4

Changelog

Sourced from postcss's changelog.

8.5.4

Commits

Updates typescript-eslint from 8.33.0 to 8.33.1

Release notes

Sourced from typescript-eslint's releases.

v8.33.1

8.33.1 (2025-06-02)

🩹 Fixes

  • exclude docs/ directory from eslint-plugin package (#11251)
  • project-service: add missing typescript peer dependency (#11265)

❤️ Thank You

  • JounQin
  • roottool

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

Changelog

Sourced from typescript-eslint's changelog.

8.33.1 (2025-06-02)

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

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

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions
Pull Request Statistics
Commits:
1
Files Changed:
2
Additions:
+89
Deletions:
-86
Package Dependencies
Package:
zod
Ecosystem:
npm
Version Change:
3.25.28 → 3.25.48
Update Type:
Patch
Ecosystem:
npm
Version Change:
5.77.2 → 5.79.2
Update Type:
Minor
Package:
postcss
Ecosystem:
npm
Version Change:
8.5.3 → 8.5.4
Update Type:
Patch
Ecosystem:
npm
Version Change:
8.33.0 → 8.33.1
Update Type:
Patch
Ecosystem:
npm
Version Change:
7.56.4 → 7.57.0
Update Type:
Minor
Technical Details
ID: 840649
UUID: 2561475637
Node ID: PR_kwDOOctpPM6YrQQ1
Host: GitHub
Repository: Randroids-Dojo/typescript-and-python-bootstrap
Merge State: Unknown