Skip to content

Bump the npm group across 1 directory with 6 updates#75

Merged
lucaslorentz merged 1 commit intomainfrom
dependabot/npm_and_yarn/src/LLL.DurableTask.Ui/app/npm-a6b77012dc
Mar 31, 2026
Merged

Bump the npm group across 1 directory with 6 updates#75
lucaslorentz merged 1 commit intomainfrom
dependabot/npm_and_yarn/src/LLL.DurableTask.Ui/app/npm-a6b77012dc

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Mar 30, 2026

Bumps the npm group with 6 updates in the /src/LLL.DurableTask.Ui/app directory:

Package From To
@tanstack/react-query 5.90.21 5.95.2
oidc-client-ts 3.4.1 3.5.0
react-router 7.13.1 7.13.2
use-debounce 10.1.0 10.1.1
@types/node 25.3.5 25.5.0
@vitejs/plugin-react 5.1.4 5.2.0

Updates @tanstack/react-query from 5.90.21 to 5.95.2

Release notes

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

@​tanstack/react-query-devtools@​5.95.2

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-devtools@​5.95.2
    • @​tanstack/react-query@​5.95.2

@​tanstack/react-query-next-experimental@​5.95.2

Patch Changes

  • Updated dependencies []:
    • @​tanstack/react-query@​5.95.2

@​tanstack/react-query-persist-client@​5.95.2

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-persist-client-core@​5.95.2
    • @​tanstack/react-query@​5.95.2

@​tanstack/react-query@​5.95.2

Patch Changes

  • Updated dependencies [cd5a35b]:
    • @​tanstack/query-core@​5.95.2

@​tanstack/react-query-devtools@​5.95.1

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-devtools@​5.95.1
    • @​tanstack/react-query@​5.95.1

@​tanstack/react-query-next-experimental@​5.95.1

Patch Changes

  • Updated dependencies []:
    • @​tanstack/react-query@​5.95.1

@​tanstack/react-query-persist-client@​5.95.1

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-persist-client-core@​5.95.1
    • @​tanstack/react-query@​5.95.1

@​tanstack/react-query@​5.95.1

Patch Changes

... (truncated)

Changelog

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

5.95.2

Patch Changes

  • Updated dependencies [cd5a35b]:
    • @​tanstack/query-core@​5.95.2

5.95.1

Patch Changes

  • Updated dependencies [1f1775c]:
    • @​tanstack/query-core@​5.95.1

5.95.0

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-core@​5.95.0

5.94.5

Patch Changes

  • fix(*): resolve issue about excluded build directory (#10312)

  • Updated dependencies [4b6536d]:

    • @​tanstack/query-core@​5.94.5

5.94.4

Patch Changes

  • chore: fixed version (#10064)

  • Updated dependencies [4c75210]:

    • @​tanstack/query-core@​5.94.4

5.91.3

Patch Changes

  • fix: stop node types from leaking into browser (#10302)

5.91.2

Patch Changes

  • fix(streamedQuery): maintain error state on reset refetch with initialData defined (#10287)

... (truncated)

Commits

Updates oidc-client-ts from 3.4.1 to 3.5.0

Release notes

Sourced from oidc-client-ts's releases.

v3.5.0

oidc-client-ts v3.5.0 is a minor release.

No longer using crypto-js package, but built-in browser crypto.subtle module. Crypto.subtle is available only in secure contexts (HTTPS). Also have a look into the migration info.

Changelog:

  • Features:
    • #2295 add maxSilentRenewTimeoutRetries configuration
    • #2311 add nonce validation for ID tokens
  • Fixes;
    • #2369 reword misleading error messages for request_type check

thanks to @​ninadvadujkar, @​Osmose and @​ferdinand-varta

Commits
  • 9bea2d8 v3.5.0
  • e2f2a38 Merge pull request #2390 from authts/dependabot/npm_and_yarn/globals-17.4.0
  • 70d36c0 Merge pull request #2401 from authts/dependabot/npm_and_yarn/lint-staged-16.3.3
  • dd84fc5 Merge pull request #2402 from authts/dependabot/npm_and_yarn/microsoft/api-ex...
  • 104def8 build(deps-dev): bump @​microsoft/api-extractor from 7.57.6 to 7.57.7
  • cf0e029 build(deps-dev): bump lint-staged from 16.2.7 to 16.3.3
  • c23b00c build(deps-dev): bump globals from 17.3.0 to 17.4.0
  • fd7eb5c Merge pull request #2386 from authts/dependabot/npm_and_yarn/rollup-4.59.0
  • 1043ef4 Merge pull request #2387 from authts/dependabot/npm_and_yarn/multi-770cfcd984
  • d5a1b1e Merge pull request #2364 from authts/dependabot/npm_and_yarn/samples/Parcel/q...
  • Additional commits viewable in compare view

Updates react-router from 7.13.1 to 7.13.2

Release notes

Sourced from react-router's releases.

v7.13.2

See the changelog for release notes: https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v7132

Changelog

Sourced from react-router's changelog.

7.13.2

Patch Changes

  • Fix clientLoader.hydrate when an ancestor route is also hydrating a clientLoader (#14835)

  • Fix type error when passing Framework Mode route components using Route.ComponentProps to createRoutesStub (#14892)

  • Fix percent encoding in relative path navigation (#14786)

  • Add future.unstable_passThroughRequests flag (#14775)

    By default, React Router normalizes the request.url passed to your loader, action, and middleware functions by removing React Router's internal implementation details (.data suffixes, index + _routes query params).

    Enabling this flag removes that normalization and passes the raw HTTP request instance to your handlers. This provides a few benefits:

    • Reduces server-side overhead by eliminating multiple new Request() calls on the critical path
    • Allows you to distinguish document from data requests in your handlers base don the presence of a .data suffix (useful for observability purposes)

    If you were previously relying on the normalization of request.url, you can switch to use the new sibling unstable_url parameter which contains a URL instance representing the normalized location:

    // ❌ Before: you could assume there was no `.data` suffix in `request.url`
    export async function loader({ request }: Route.LoaderArgs) {
      let url = new URL(request.url);
      if (url.pathname === "/path") {
        // This check will fail with the flag enabled because the `.data` suffix will
        // exist on data requests
      }
    }
    // ✅ After: use unstable_url for normalized routing logic and request.url
    // for raw routing logic
    export async function loader({ request, unstable_url }: Route.LoaderArgs) {
    if (unstable_url.pathname === "/path") {
    // This will always have the .data suffix stripped
    }
    // And now you can distinguish between document versus data requests
    let isDataRequest = new URL(request.url).pathname.endsWith(".data");
    }

  • Internal refactor to consolidate framework-agnostic/React-specific route type layers - no public API changes (#14765)

  • Sync protocol validation to rsc flows (#14882)

  • Add a new unstable_url: URL parameter to route handler methods (loader, action, middleware, etc.) representing the normalized URL the application is navigating to or fetching, with React Router implementation details removed (.datasuffix, index/_routes query params) (#14775)

    This is being added alongside the new future.unstable_passthroughRequests future flag so that users still have a way to access the normalized URL when that flag is enabled and non-normalized request's are being passed to your handlers. When adopting this flag, you will only need to start leveraging this new parameter if you are relying on the normalization of request.url in your application code.

... (truncated)

Commits
  • aadb56f chore: Update version for release (#14908)
  • c68a9b3 chore: Update version for release (pre) (#14893)
  • 8c3c7ce fix: allow Framework Mode route components to be passed to createRoutesStub (...
  • 1cd923e chore: format
  • 830d3ba Fix percent encoding in relative path navigation (#14786)
  • 8646d39 Align redirect protocol validation in RSC flows (#14882)
  • 7d21b1c Add additional unit test - hydrate fallback rendering for SPA middleware w/o ...
  • 8a10826 docs: fix typo in useNavigate documentation (#14848)
  • bda5bb7 Fix typo in comment (#14844)
  • bbe4a73 chore: format
  • Additional commits viewable in compare view

Updates use-debounce from 10.1.0 to 10.1.1

Changelog

Sourced from use-debounce's changelog.

10.1.1

  • replace global with globalThis which is defined in all possible environments (browser, node, workers) to address xnimorz/use-debounce#212
Commits

Updates @types/node from 25.3.5 to 25.5.0

Commits

Updates @vitejs/plugin-react from 5.1.4 to 5.2.0

Release notes

Sourced from @​vitejs/plugin-react's releases.

plugin-react@5.2.0

Add Vite 8 to peerDependencies range #1143

This plugin is compatible with Vite 8.

Changelog

Sourced from @​vitejs/plugin-react's changelog.

5.2.0 (2026-03-12)

Add Vite 8 to peerDependencies range #1143

This plugin is compatible with Vite 8.

Commits

@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Mar 30, 2026
@lucaslorentz
Copy link
Copy Markdown
Owner

@dependabot rebase

@dependabot dependabot bot changed the title Bump the npm group in /src/LLL.DurableTask.Ui/app with 6 updates Bump the npm group across 1 directory with 6 updates Mar 30, 2026
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/src/LLL.DurableTask.Ui/app/npm-a6b77012dc branch from de4645b to ca856bd Compare March 30, 2026 22:17
@lucaslorentz
Copy link
Copy Markdown
Owner

lucaslorentz commented Mar 31, 2026

@dependabot rebase

Bumps the npm group in /src/LLL.DurableTask.Ui/app with 6 updates:

| Package | From | To |
| --- | --- | --- |
| [@tanstack/react-query](https://github.com/TanStack/query/tree/HEAD/packages/react-query) | `5.90.21` | `5.95.2` |
| [oidc-client-ts](https://github.com/authts/oidc-client-ts) | `3.4.1` | `3.5.0` |
| [react-router](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router) | `7.13.1` | `7.13.2` |
| [use-debounce](https://github.com/xnimorz/use-debounce) | `10.1.0` | `10.1.1` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `25.3.5` | `25.5.0` |
| [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/tree/HEAD/packages/plugin-react) | `5.1.4` | `5.2.0` |


Updates `@tanstack/react-query` from 5.90.21 to 5.95.2
- [Release notes](https://github.com/TanStack/query/releases)
- [Changelog](https://github.com/TanStack/query/blob/main/packages/react-query/CHANGELOG.md)
- [Commits](https://github.com/TanStack/query/commits/@tanstack/react-query@5.95.2/packages/react-query)

Updates `oidc-client-ts` from 3.4.1 to 3.5.0
- [Release notes](https://github.com/authts/oidc-client-ts/releases)
- [Commits](authts/oidc-client-ts@v3.4.1...v3.5.0)

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

Updates `use-debounce` from 10.1.0 to 10.1.1
- [Release notes](https://github.com/xnimorz/use-debounce/releases)
- [Changelog](https://github.com/xnimorz/use-debounce/blob/master/CHANGELOG.md)
- [Commits](https://github.com/xnimorz/use-debounce/commits)

Updates `@types/node` from 25.3.5 to 25.5.0
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `@vitejs/plugin-react` from 5.1.4 to 5.2.0
- [Release notes](https://github.com/vitejs/vite-plugin-react/releases)
- [Changelog](https://github.com/vitejs/vite-plugin-react/blob/plugin-react@5.2.0/packages/plugin-react/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite-plugin-react/commits/plugin-react@5.2.0/packages/plugin-react)

---
updated-dependencies:
- dependency-name: "@tanstack/react-query"
  dependency-version: 5.95.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: oidc-client-ts
  dependency-version: 3.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: react-router
  dependency-version: 7.13.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: use-debounce
  dependency-version: 10.1.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: "@types/node"
  dependency-version: 25.5.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: "@vitejs/plugin-react"
  dependency-version: 5.2.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/src/LLL.DurableTask.Ui/app/npm-a6b77012dc branch from ca856bd to 559757e Compare March 31, 2026 06:40
@lucaslorentz lucaslorentz merged commit 90ce867 into main Mar 31, 2026
2 checks passed
@lucaslorentz lucaslorentz deleted the dependabot/npm_and_yarn/src/LLL.DurableTask.Ui/app/npm-a6b77012dc branch March 31, 2026 07:07
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