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

Bump the react-query group across 1 directory with 3 updates #14389

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github May 13, 2024

Bumps the react-query group with 3 updates in the /frontend-react directory: @tanstack/react-query, @tanstack/react-query-devtools and react-query-kit.

Updates @tanstack/react-query from 5.35.1 to 5.36.0

Release notes

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

v5.36.0

Version 5.36.0 - 5/12/2024, 2:16 PM

Changes

Feat

  • query-core: improve useInfiniteQuery error handling (#7418) (8ce6642d) by Jason Gerbes

Packages

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

v5.35.6

Version 5.35.6 - 5/12/2024, 1:47 PM

Changes

Fix

  • eslint-plugin-query: exclude instanceof right identifier in exhaustive deps eslint rule (#7419) (2ed5fe75) by Eliya Cohen

Chore

  • svelte-query: Add no-svelte-internal eslint rule (#7417) (246dd0f5) by Lachlan Collins

Docs

  • angular-query: clarify reactive context in jsdoc (#7421) (3875b3b2) by Arnoud
  • fix broken link (#7415) (1839ff68) by Damian Osipiuk
  • vue-query: add missing links and pages (#7414) (fb914468) by Damian Osipiuk

... (truncated)

Commits

Updates @tanstack/react-query-devtools from 5.35.1 to 5.36.0

Release notes

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

v5.36.0

Version 5.36.0 - 5/12/2024, 2:16 PM

Changes

Feat

  • query-core: improve useInfiniteQuery error handling (#7418) (8ce6642d) by Jason Gerbes

Packages

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

v5.35.6

Version 5.35.6 - 5/12/2024, 1:47 PM

Changes

Fix

  • eslint-plugin-query: exclude instanceof right identifier in exhaustive deps eslint rule (#7419) (2ed5fe75) by Eliya Cohen

Chore

  • svelte-query: Add no-svelte-internal eslint rule (#7417) (246dd0f5) by Lachlan Collins

Docs

  • angular-query: clarify reactive context in jsdoc (#7421) (3875b3b2) by Arnoud
  • fix broken link (#7415) (1839ff68) by Damian Osipiuk
  • vue-query: add missing links and pages (#7414) (fb914468) by Damian Osipiuk

... (truncated)

Commits

Updates react-query-kit from 3.2.2 to 3.3.0

Release notes

Sourced from react-query-kit's releases.

3.3.0

Disabling Queries

See changes: feat: support skipToken

To disable queries, now you can pass skipToken as the option variables to your custom query. This will prevent the query from being executed.

import { skipToken } from '@tanstack/react-query'
const [name, setName] = useState<string | undefined>()
const result = usePost({
variables: id ? { id: id } : skipToken,
})
// and for useQueries example
const queries = useQueries({
queries: [usePost.getOptions(id ? { id: id } : skipToken)],
})

Commits

You can trigger a rebase of this PR 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 react-query group with 3 updates in the /frontend-react directory: [@tanstack/react-query](https://github.com/TanStack/query/tree/HEAD/packages/react-query), [@tanstack/react-query-devtools](https://github.com/TanStack/query/tree/HEAD/packages/react-query-devtools) and [react-query-kit](https://github.com/liaoliao666/react-query-kit).


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

Updates `@tanstack/react-query-devtools` from 5.35.1 to 5.36.0
- [Release notes](https://github.com/TanStack/query/releases)
- [Commits](https://github.com/TanStack/query/commits/v5.36.0/packages/react-query-devtools)

Updates `react-query-kit` from 3.2.2 to 3.3.0
- [Release notes](https://github.com/liaoliao666/react-query-kit/releases)
- [Commits](HuolalaTech/react-query-kit@3.2.2...3.3.0)

---
updated-dependencies:
- dependency-name: "@tanstack/react-query"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: react-query
- dependency-name: "@tanstack/react-query-devtools"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: react-query
- dependency-name: react-query-kit
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: react-query
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels May 13, 2024
Copy link

github-actions bot commented May 13, 2024

Dependency Review

✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.

OpenSSF Scorecard

Scorecard details
PackageVersionScoreDetails
npm/@tanstack/react-query ^5.36.0 UnknownUnknown
npm/@tanstack/react-query-devtools ^5.36.0 UnknownUnknown
npm/react-query-kit ^3.3.0 UnknownUnknown
npm/@tanstack/react-query ^5.35.1 UnknownUnknown
npm/@tanstack/react-query-devtools ^5.35.1 UnknownUnknown
npm/react-query-kit ^3.2.2 UnknownUnknown
npm/@tanstack/query-core 5.36.0 UnknownUnknown
npm/@tanstack/react-query 5.36.0 UnknownUnknown
npm/@tanstack/react-query-devtools 5.36.0 UnknownUnknown
npm/react-query-kit 3.3.0 UnknownUnknown
npm/@tanstack/query-core 5.35.1 UnknownUnknown
npm/@tanstack/react-query 5.35.1 UnknownUnknown
npm/@tanstack/react-query-devtools 5.35.1 UnknownUnknown
npm/react-query-kit 3.2.2 UnknownUnknown

Scanned Manifest Files

frontend-react/package.json
  • @tanstack/react-query@^5.36.0
  • @tanstack/react-query-devtools@^5.36.0
  • react-query-kit@^3.3.0
  • @tanstack/react-query@^5.35.1
  • @tanstack/react-query-devtools@^5.35.1
  • react-query-kit@^3.2.2
frontend-react/yarn.lock
  • @tanstack/query-core@5.36.0
  • @tanstack/react-query@5.36.0
  • @tanstack/react-query-devtools@5.36.0
  • react-query-kit@3.3.0
  • @tanstack/query-core@5.35.1
  • @tanstack/react-query@5.35.1
  • @tanstack/react-query-devtools@5.35.1
  • react-query-kit@3.2.2

Copy link
Contributor Author

dependabot bot commented on behalf of github May 19, 2024

Superseded by #14433.

@dependabot dependabot bot closed this May 19, 2024
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/frontend-react/react-query-45d0c177e6 branch May 19, 2024 04:52
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.

None yet

0 participants