Skip to content

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jun 2, 2025

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

Package From To
@tanstack/react-query 5.77.2 5.79.0
react-hook-form 7.56.4 7.57.0
zod 3.25.28 3.25.46
@eslint/js 9.27.0 9.28.0
postcss 8.5.3 8.5.4

Updates @tanstack/react-query from 5.77.2 to 5.79.0

Release notes

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

v5.79.0

Version 5.79.0 - 5/29/25, 9:42 AM

Changes

Feat

  • core: staleTime: "static" (#9139) (b475d21) by Dominik Dorfmeister

Chore

  • update to eslint-plugin-react-hooks v6 (#9071) (34eedd6) by Dominik Dorfmeister
  • angular-query: update to angular 20 stable (#9209) (9e30aaf) by Arnoud

Packages

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

v5.78.0

Version 5.78.0 - 5/26/25, 1:27 PM

Changes

Feat

  • eslint-plugin: refactor and add mutation-property-order rule (#9191) (a1210cb) by jochong

Packages

  • @​tanstack/eslint-plugin-query@​5.78.0
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.46

Release notes

Sourced from zod's releases.

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

Commits:

  • b898f99b070b6e03ed14c4e1f82985a36315cbc5 Update nullability section
  • df1e60e381dfd8aa23fddb4a047a899ae79ca76c Fix portability issue
  • 22ab436bc214d86d740e78f33ae6834d28ddc152 3.25.41

v3.25.40

Commits:

  • f97733fff4d627b7b9c85d4a4a2f758727de00cf Flatten simple intersections
  • ad2fc5ee221bc5fbfad1b7695c71a8a2c9c57314 Implement OpenAPI-friendly JSON Schema for File schemas (#4567)
  • d9add61a91d8035c3bf3335f2aaadb723f3a5336 Improve z.file JSON Schema, update docs with additional properties

... (truncated)

Commits

Updates @eslint/js from 9.27.0 to 9.28.0

Release notes

Sourced from @​eslint/js's releases.

v9.28.0

Features

  • b0674be feat: Customization of serialization for languageOptions (#19760) (Nicholas C. Zakas)
  • a95721f feat: Add --pass-on-unpruned-suppressions CLI option (#19773) (Milos Djermanovic)
  • bfd0e7a feat: support TypeScript syntax in no-use-before-define (#19566) (Tanuj Kanti)
  • 68c61c0 feat: support TS syntax in no-shadow (#19565) (Nitin Kumar)
  • 0f773ef feat: support TS syntax in no-magic-numbers (#19561) (Nitin Kumar)
  • c4a6b60 feat: add allowTypeAnnotation to func-style (#19754) (sethamus)
  • b03ad17 feat: add TypeScript support to prefer-arrow-callback (#19678) (Tanuj Kanti)
  • bc3c331 feat: ignore overloaded function declarations in func-style rule (#19755) (sethamus)

Bug Fixes

  • eea3e7e fix: Remove configured global variables from GlobalScope#implicit (#19779) (Milos Djermanovic)
  • a467de3 fix: update context.report types (#19751) (Nitin Kumar)
  • fd467bb fix: remove interopDefault to use jiti's default (#19697) (sethamus)
  • 72d16e3 fix: avoid false positive in no-unassigned-vars for declare module (#19746) (Azat S.)
  • 81c3c93 fix: curly types (#19750) (Eli)

Documentation

  • 3ec2082 docs: Nested arrays in files config entry (#19799) (Nicholas C. Zakas)
  • 89a65b0 docs: clarify how config arrays can apply to subsets of files (#19788) (Shais Ch)
  • 2ba8a0d docs: Add description of meta.namespace to plugin docs (#19798) (Nicholas C. Zakas)
  • 59dd7e6 docs: update func-style with examples (#19793) (Tanuj Kanti)
  • e9129e0 docs: add global scope's implicit field to Scope Manager docs (#19770) (Milos Djermanovic)
  • 52f5b7a docs: fix minor typos and add links (#19743) (루밀LuMir)
  • 00716a3 docs: upfront recommend against using the no-return-await rule (#19727) (Mike DiDomizio)

Chores

  • 175b7b8 chore: upgrade to @eslint/js@9.28.0 (#19802) (Francesco Trotta)
  • 844f5a6 chore: package.json update for @​eslint/js release (Jenkins)
  • 62b1c1b chore: update globals to v16 (#19791) (Nitin Kumar)
  • e8a1cb8 chore: ignore jiti-v2.0 & jiti-v2.1 for renovate (#19786) (Nitin Kumar)
  • 43d3975 chore: Add Copilot Instructions file (#19753) (Nicholas C. Zakas)
  • 2dfb5eb test: update SourceCodeTraverser tests (#19763) (Milos Djermanovic)
  • 5bc21f9 chore: add *.code-workspace to .gitignore (#19771) (루밀LuMir)
  • f4fa40e refactor: NodeEventGenerator -> SourceCodeTraverser (#19679) (Nicholas C. Zakas)
  • 0f49329 refactor: use a service to emit warnings (#19725) (Francesco Trotta)
  • 20a9e59 chore: update dependency shelljs to ^0.10.0 (#19740) (renovate[bot])
Changelog

Sourced from @​eslint/js's changelog.

v9.28.0 - May 30, 2025

  • 175b7b8 chore: upgrade to @eslint/js@9.28.0 (#19802) (Francesco Trotta)
  • 844f5a6 chore: package.json update for @​eslint/js release (Jenkins)
  • b0674be feat: Customization of serialization for languageOptions (#19760) (Nicholas C. Zakas)
  • 3ec2082 docs: Nested arrays in files config entry (#19799) (Nicholas C. Zakas)
  • 89a65b0 docs: clarify how config arrays can apply to subsets of files (#19788) (Shais Ch)
  • 2ba8a0d docs: Add description of meta.namespace to plugin docs (#19798) (Nicholas C. Zakas)
  • eea3e7e fix: Remove configured global variables from GlobalScope#implicit (#19779) (Milos Djermanovic)
  • a95721f feat: Add --pass-on-unpruned-suppressions CLI option (#19773) (Milos Djermanovic)
  • a467de3 fix: update context.report types (#19751) (Nitin Kumar)
  • 59dd7e6 docs: update func-style with examples (#19793) (Tanuj Kanti)
  • 62b1c1b chore: update globals to v16 (#19791) (Nitin Kumar)
  • bfd0e7a feat: support TypeScript syntax in no-use-before-define (#19566) (Tanuj Kanti)
  • 68c61c0 feat: support TS syntax in no-shadow (#19565) (Nitin Kumar)
  • e8a1cb8 chore: ignore jiti-v2.0 & jiti-v2.1 for renovate (#19786) (Nitin Kumar)
  • 0f773ef feat: support TS syntax in no-magic-numbers (#19561) (Nitin Kumar)
  • 43d3975 chore: Add Copilot Instructions file (#19753) (Nicholas C. Zakas)
  • c4a6b60 feat: add allowTypeAnnotation to func-style (#19754) (sethamus)
  • fd467bb fix: remove interopDefault to use jiti's default (#19697) (sethamus)
  • 2dfb5eb test: update SourceCodeTraverser tests (#19763) (Milos Djermanovic)
  • b03ad17 feat: add TypeScript support to prefer-arrow-callback (#19678) (Tanuj Kanti)
  • e9129e0 docs: add global scope's implicit field to Scope Manager docs (#19770) (Milos Djermanovic)
  • bc3c331 feat: ignore overloaded function declarations in func-style rule (#19755) (sethamus)
  • 5bc21f9 chore: add *.code-workspace to .gitignore (#19771) (루밀LuMir)
  • 72d16e3 fix: avoid false positive in no-unassigned-vars for declare module (#19746) (Azat S.)
  • f4fa40e refactor: NodeEventGenerator -> SourceCodeTraverser (#19679) (Nicholas C. Zakas)
  • 81c3c93 fix: curly types (#19750) (Eli)
  • 52f5b7a docs: fix minor typos and add links (#19743) (루밀LuMir)
  • 0f49329 refactor: use a service to emit warnings (#19725) (Francesco Trotta)
  • 20a9e59 chore: update dependency shelljs to ^0.10.0 (#19740) (renovate[bot])
  • 00716a3 docs: upfront recommend against using the no-return-await rule (#19727) (Mike DiDomizio)
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

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

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

| Package | From | To |
| --- | --- | --- |
| [@tanstack/react-query](https://github.com/TanStack/query/tree/HEAD/packages/react-query) | `5.77.2` | `5.79.0` |
| [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.56.4` | `7.57.0` |
| [zod](https://github.com/colinhacks/zod) | `3.25.28` | `3.25.46` |
| [@eslint/js](https://github.com/eslint/eslint/tree/HEAD/packages/js) | `9.27.0` | `9.28.0` |
| [postcss](https://github.com/postcss/postcss) | `8.5.3` | `8.5.4` |


Updates `@tanstack/react-query` from 5.77.2 to 5.79.0
- [Release notes](https://github.com/TanStack/query/releases)
- [Commits](https://github.com/TanStack/query/commits/v5.79.0/packages/react-query)

Updates `react-hook-form` from 7.56.4 to 7.57.0
- [Release notes](https://github.com/react-hook-form/react-hook-form/releases)
- [Changelog](https://github.com/react-hook-form/react-hook-form/blob/master/CHANGELOG.md)
- [Commits](react-hook-form/react-hook-form@v7.56.4...v7.57.0)

Updates `zod` from 3.25.28 to 3.25.46
- [Release notes](https://github.com/colinhacks/zod/releases)
- [Commits](colinhacks/zod@v3.25.28...v3.25.46)

Updates `@eslint/js` from 9.27.0 to 9.28.0
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](https://github.com/eslint/eslint/commits/v9.28.0/packages/js)

Updates `postcss` from 8.5.3 to 8.5.4
- [Release notes](https://github.com/postcss/postcss/releases)
- [Changelog](https://github.com/postcss/postcss/blob/main/CHANGELOG.md)
- [Commits](postcss/postcss@8.5.3...8.5.4)

---
updated-dependencies:
- dependency-name: "@tanstack/react-query"
  dependency-version: 5.79.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: react-hook-form
  dependency-version: 7.57.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: zod
  dependency-version: 3.25.46
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@eslint/js"
  dependency-version: 9.28.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: postcss
  dependency-version: 8.5.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@randroid88
Copy link
Contributor

@claude resolve conflicts

Copy link
Contributor Author

dependabot bot commented on behalf of github Jun 2, 2025

Looks like these dependencies are updatable in another way, so this is no longer needed.

Copy link

claude bot commented Jun 2, 2025

Claude finished @randroid88's task in 49s —— View job


Task List

  • Analyze the PR status and conflict resolution request
  • Provide explanation and alternatives

Analysis

I see that you asked me to resolve conflicts on this Dependabot PR. However, I notice that Dependabot has already closed this PR with the message: "Looks like these dependencies are updatable in another way, so this is no longer needed."

This means:

  1. The PR has been closed and is no longer active
  2. Dependabot has determined these updates can be handled differently
  3. I cannot resolve conflicts on a closed PR

Alternative Options

Since this PR is closed, here are your options:

  1. Check for a new Dependabot PR: Dependabot may have created a new PR with these updates that doesn't have conflicts
  2. Manual update: You could manually update these dependencies by running:
    cd frontend
    npm update @tanstack/react-query react-hook-form zod @eslint/js postcss
  3. Check Dependabot settings: Review your Dependabot configuration to see if there are any issues with how it's handling these updates

Would you like me to help with any of these alternatives?

@dependabot dependabot bot closed this Jun 2, 2025
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/frontend/minor-and-patch-47f704619d branch June 2, 2025 17:22
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant