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

[Tech] Bump the non-major-dependencies group across 1 directory with 10 updates #2090

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 6, 2025

Bumps the non-major-dependencies group with 10 updates in the /frontend directory:

Package From To
@react-pdf/renderer 4.1.6 4.2.1
@reduxjs/toolkit 2.5.0 2.5.1
@sentry/browser 8.47.0 8.54.0
@sentry/react 8.47.0 8.54.0
@sentry/tracing 7.114.0 7.120.3
@tanstack/react-virtual 3.11.2 3.12.0
fuse.js 7.0.0 7.1.0
ol 10.3.1 10.4.0
react-highlight-words 0.20.0 0.21.0
react-router 7.1.1 7.1.5

Updates @react-pdf/renderer from 4.1.6 to 4.2.1

Release notes

Sourced from @​react-pdf/renderer's releases.

@​react-pdf/renderer@​4.2.1

Patch Changes

  • Updated dependencies []:
    • @​react-pdf/layout@​4.2.2
    • @​react-pdf/render@​4.1.1

@​react-pdf/renderer@​4.2.0

Minor Changes

Patch Changes

Changelog

Sourced from @​react-pdf/renderer's changelog.

4.2.1

Patch Changes

  • Updated dependencies []:
    • @​react-pdf/layout@​4.2.2
    • @​react-pdf/render@​4.1.1

4.2.0

Minor Changes

Patch Changes

Commits

Updates @reduxjs/toolkit from 2.5.0 to 2.5.1

Release notes

Sourced from @​reduxjs/toolkit's releases.

v2.5.1

This bugfix release fixes a logic issue with the new upsertQueryEntries util that sometimes kept entries in a pending state indefinitely.

Changelog

upsertQueryEntries fixes

Users reported that in some cases, use of upsertQueryEntries to insert RTKQ cache entries prevented any further refetches of that data from happening. After investigation, we found a logic mismatch for how we handle upserts vs the existing upsertQueryData util, which meant that sometimes the entry would be left in a pending state expecting a fulfilled action from a request ID that would never happen.

This release fixes that issue and ensures the updates and refetches happen correctly.

What's Changed

Full Changelog: reduxjs/redux-toolkit@v2.5.0...v2.5.1

Commits

Updates @sentry/browser from 8.47.0 to 8.54.0

Release notes

Sourced from @​sentry/browser's releases.

8.54.0

  • feat(v8/deps): Upgrade all OpenTelemetry dependencies (#15098)
  • fix(node/v8): Add compatibility layer for Prisma v5 (#15210)

Work in this release was contributed by @​nwalters512. Thank you for your contribution!

Bundle size 📦

Path Size
@​sentry/browser 23.3 KB
@​sentry/browser - with treeshaking flags 23.17 KB
@​sentry/browser (incl. Tracing) 35.9 KB
@​sentry/browser (incl. Tracing, Replay) 73.27 KB
@​sentry/browser (incl. Tracing, Replay) - with treeshaking flags 66.71 KB
@​sentry/browser (incl. Tracing, Replay with Canvas) 77.57 KB
@​sentry/browser (incl. Tracing, Replay, Feedback) 89.5 KB
@​sentry/browser (incl. Feedback) 39.51 KB
@​sentry/browser (incl. sendFeedback) 27.91 KB
@​sentry/browser (incl. FeedbackAsync) 32.71 KB
@​sentry/react 25.98 KB
@​sentry/react (incl. Tracing) 38.71 KB
@​sentry/vue 27.58 KB
@​sentry/vue (incl. Tracing) 37.75 KB
@​sentry/svelte 23.46 KB
CDN Bundle 24.49 KB
CDN Bundle (incl. Tracing) 37.6 KB
CDN Bundle (incl. Tracing, Replay) 72.9 KB
CDN Bundle (incl. Tracing, Replay, Feedback) 78.23 KB
CDN Bundle - uncompressed 71.92 KB
CDN Bundle (incl. Tracing) - uncompressed 111.52 KB
CDN Bundle (incl. Tracing, Replay) - uncompressed 225.78 KB
CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed 238.88 KB
@​sentry/nextjs (client) 38.96 KB
@​sentry/sveltekit (client) 36.4 KB
@​sentry/node 162.85 KB
@​sentry/node - without tracing 99.14 KB
@​sentry/aws-serverless 131.23 KB

8.53.0

  • feat(v8/nuxt): Add url to SourcemapsUploadOptions (#15202)
  • fix(v8/react): fromLocation can be undefined in Tanstack Router Instrumentation (#15237)

Work in this release was contributed by @​tannerlinsley. Thank you for your contribution!

Bundle size 📦

Path Size
@​sentry/browser 23.3 KB

... (truncated)

Changelog

Sourced from @​sentry/browser's changelog.

8.54.0

  • feat(v8/deps): Upgrade all OpenTelemetry dependencies (#15098)
  • fix(node/v8): Add compatibility layer for Prisma v5 (#15210)

Work in this release was contributed by @​nwalters512. Thank you for your contribution!

8.53.0

  • feat(v8/nuxt): Add url to SourcemapsUploadOptions (#15202)
  • fix(v8/react): fromLocation can be undefined in Tanstack Router Instrumentation (#15237)

Work in this release was contributed by @​tannerlinsley. Thank you for your contribution!

8.52.1

  • fix(v8/nextjs): Fix nextjs build warning (#15226)
  • ref(v8/browser): Add protocol attributes to resource spans #15224
  • ref(v8/core): Don't set this.name to new.target.prototype.constructor.name (#15222)

Work in this release was contributed by @​Zen-cronic. Thank you for your contribution!

8.52.0

Important Changes

  • feat(solidstart): Add withSentry wrapper for SolidStart config (#15135)

To enable the SolidStart SDK, wrap your SolidStart Config with withSentry. The sentrySolidStartVite plugin is now automatically added by withSentry and you can pass the Sentry build-time options like this:

import { defineConfig } from '@solidjs/start/config';
import { withSentry } from '@sentry/solidstart';
export default defineConfig(
withSentry(
{
/* Your SolidStart config options... */
},
{
// Options for setting up source maps
org: process.env.SENTRY_ORG,
project: process.env.SENTRY_PROJECT,
authToken: process.env.SENTRY_AUTH_TOKEN,
},
),
);

... (truncated)

Commits
  • e9a45fe release: 8.54.0
  • ff4fb5f meta(changelog): Update changelog for 8.54.0 (#15261)
  • b6a4a4a fix(node/v8): Add compatibility layer for Prisma v5 (#15210)
  • 3673689 feat(v8/deps): Upgrade all OpenTelemetry dependencies (#15098)
  • 13aadde Merge branch 'release/8.53.0' into v8
  • 3d8b132 release: 8.53.0
  • f08e613 meta: Update Changelog for 8.53.0 (#15243)
  • ef4f210 fix(v8/react): From location can be undefined in Tanstack Router Instrumentat...
  • 4df3759 feat(v8/nuxt): Add url to SourcemapsUploadOptions (#15202)
  • 36bdc47 Merge branch 'release/8.52.1' into v8
  • Additional commits viewable in compare view

Updates @sentry/react from 8.47.0 to 8.54.0

Release notes

Sourced from @​sentry/react's releases.

8.54.0

  • feat(v8/deps): Upgrade all OpenTelemetry dependencies (#15098)
  • fix(node/v8): Add compatibility layer for Prisma v5 (#15210)

Work in this release was contributed by @​nwalters512. Thank you for your contribution!

Bundle size 📦

Path Size
@​sentry/browser 23.3 KB
@​sentry/browser - with treeshaking flags 23.17 KB
@​sentry/browser (incl. Tracing) 35.9 KB
@​sentry/browser (incl. Tracing, Replay) 73.27 KB
@​sentry/browser (incl. Tracing, Replay) - with treeshaking flags 66.71 KB
@​sentry/browser (incl. Tracing, Replay with Canvas) 77.57 KB
@​sentry/browser (incl. Tracing, Replay, Feedback) 89.5 KB
@​sentry/browser (incl. Feedback) 39.51 KB
@​sentry/browser (incl. sendFeedback) 27.91 KB
@​sentry/browser (incl. FeedbackAsync) 32.71 KB
@​sentry/react 25.98 KB
@​sentry/react (incl. Tracing) 38.71 KB
@​sentry/vue 27.58 KB
@​sentry/vue (incl. Tracing) 37.75 KB
@​sentry/svelte 23.46 KB
CDN Bundle 24.49 KB
CDN Bundle (incl. Tracing) 37.6 KB
CDN Bundle (incl. Tracing, Replay) 72.9 KB
CDN Bundle (incl. Tracing, Replay, Feedback) 78.23 KB
CDN Bundle - uncompressed 71.92 KB
CDN Bundle (incl. Tracing) - uncompressed 111.52 KB
CDN Bundle (incl. Tracing, Replay) - uncompressed 225.78 KB
CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed 238.88 KB
@​sentry/nextjs (client) 38.96 KB
@​sentry/sveltekit (client) 36.4 KB
@​sentry/node 162.85 KB
@​sentry/node - without tracing 99.14 KB
@​sentry/aws-serverless 131.23 KB

8.53.0

  • feat(v8/nuxt): Add url to SourcemapsUploadOptions (#15202)
  • fix(v8/react): fromLocation can be undefined in Tanstack Router Instrumentation (#15237)

Work in this release was contributed by @​tannerlinsley. Thank you for your contribution!

Bundle size 📦

Path Size
@​sentry/browser 23.3 KB

... (truncated)

Changelog

Sourced from @​sentry/react's changelog.

8.54.0

  • feat(v8/deps): Upgrade all OpenTelemetry dependencies (#15098)
  • fix(node/v8): Add compatibility layer for Prisma v5 (#15210)

Work in this release was contributed by @​nwalters512. Thank you for your contribution!

8.53.0

  • feat(v8/nuxt): Add url to SourcemapsUploadOptions (#15202)
  • fix(v8/react): fromLocation can be undefined in Tanstack Router Instrumentation (#15237)

Work in this release was contributed by @​tannerlinsley. Thank you for your contribution!

8.52.1

  • fix(v8/nextjs): Fix nextjs build warning (#15226)
  • ref(v8/browser): Add protocol attributes to resource spans #15224
  • ref(v8/core): Don't set this.name to new.target.prototype.constructor.name (#15222)

Work in this release was contributed by @​Zen-cronic. Thank you for your contribution!

8.52.0

Important Changes

  • feat(solidstart): Add withSentry wrapper for SolidStart config (#15135)

To enable the SolidStart SDK, wrap your SolidStart Config with withSentry. The sentrySolidStartVite plugin is now automatically added by withSentry and you can pass the Sentry build-time options like this:

import { defineConfig } from '@solidjs/start/config';
import { withSentry } from '@sentry/solidstart';
export default defineConfig(
withSentry(
{
/* Your SolidStart config options... */
},
{
// Options for setting up source maps
org: process.env.SENTRY_ORG,
project: process.env.SENTRY_PROJECT,
authToken: process.env.SENTRY_AUTH_TOKEN,
},
),
);

... (truncated)

Commits
  • e9a45fe release: 8.54.0
  • ff4fb5f meta(changelog): Update changelog for 8.54.0 (#15261)
  • b6a4a4a fix(node/v8): Add compatibility layer for Prisma v5 (#15210)
  • 3673689 feat(v8/deps): Upgrade all OpenTelemetry dependencies (#15098)
  • 13aadde Merge branch 'release/8.53.0' into v8
  • 3d8b132 release: 8.53.0
  • f08e613 meta: Update Changelog for 8.53.0 (#15243)
  • ef4f210 fix(v8/react): From location can be undefined in Tanstack Router Instrumentat...
  • 4df3759 feat(v8/nuxt): Add url to SourcemapsUploadOptions (#15202)
  • 36bdc47 Merge branch 'release/8.52.1' into v8
  • Additional commits viewable in compare view

Updates @sentry/tracing from 7.114.0 to 7.120.3

Release notes

Sourced from @​sentry/tracing's releases.

7.120.3

  • fix(v7/publish): Ensure discontinued packages are published with latest tag (#14926)

Bundle size 📦

Path Size
@​sentry/browser (incl. Tracing, Replay, Feedback) - Webpack (gzipped) 80.96 KB
@​sentry/browser (incl. Tracing, Replay) - Webpack (gzipped) 71.9 KB
@​sentry/browser (incl. Tracing, Replay with Canvas) - Webpack (gzipped) 76.15 KB
@​sentry/browser (incl. Tracing, Replay) - Webpack with treeshaking flags (gzipped) 65.53 KB
@​sentry/browser (incl. Tracing) - Webpack (gzipped) 35.78 KB
@​sentry/browser (incl. browserTracingIntegration) - Webpack (gzipped) 35.67 KB
@​sentry/browser (incl. Feedback) - Webpack (gzipped) 31.71 KB
@​sentry/browser (incl. sendFeedback) - Webpack (gzipped) 31.73 KB
@​sentry/browser - Webpack (gzipped) 22.92 KB
@​sentry/browser (incl. Tracing, Replay, Feedback) - ES6 CDN Bundle (gzipped) 79.18 KB
@​sentry/browser (incl. Tracing, Replay) - ES6 CDN Bundle (gzipped) 70.5 KB
@​sentry/browser (incl. Tracing) - ES6 CDN Bundle (gzipped) 36.17 KB
@​sentry/browser - ES6 CDN Bundle (gzipped) 25.42 KB
@​sentry/browser (incl. Tracing, Replay) - ES6 CDN Bundle (minified & uncompressed) 221.94 KB
@​sentry/browser (incl. Tracing) - ES6 CDN Bundle (minified & uncompressed) 109.54 KB
@​sentry/browser - ES6 CDN Bundle (minified & uncompressed) 76.26 KB
@​sentry/browser (incl. Tracing) - ES5 CDN Bundle (gzipped) 39.45 KB
@​sentry/react (incl. Tracing, Replay) - Webpack (gzipped) 72.4 KB
@​sentry/react - Webpack (gzipped) 22.95 KB
@​sentry/nextjs Client (incl. Tracing, Replay) - Webpack (gzipped) 90.16 KB
@​sentry/nextjs Client - Webpack (gzipped) 54.28 KB
@​sentry-internal/feedback - Webpack (gzipped) 17.34 KB

7.120.2

  • fix(tracing-internal): Fix case when lrp keys offset is 0 (#14615)

Work in this release contributed by @​LubomirIgonda1. Thank you for your contribution!

Bundle size 📦

Path Size
@​sentry/browser (incl. Tracing, Replay, Feedback) - Webpack (gzipped) 80.96 KB
@​sentry/browser (incl. Tracing, Replay) - Webpack (gzipped) 71.9 KB
@​sentry/browser (incl. Tracing, Replay with Canvas) - Webpack (gzipped) 76.15 KB
@​sentry/browser (incl. Tracing, Replay) - Webpack with treeshaking flags (gzipped) 65.52 KB
@​sentry/browser (incl. Tracing) - Webpack (gzipped) 35.78 KB
@​sentry/browser (incl. browserTracingIntegration) - Webpack (gzipped) 35.67 KB
@​sentry/browser (incl. Feedback) - Webpack (gzipped) 31.71 KB
@​sentry/browser (incl. sendFeedback) - Webpack (gzipped) 31.73 KB
@​sentry/browser - Webpack (gzipped) 22.92 KB
@​sentry/browser (incl. Tracing, Replay, Feedback) - ES6 CDN Bundle (gzipped) 79.18 KB
@​sentry/browser (incl. Tracing, Replay) - ES6 CDN Bundle (gzipped) 70.5 KB

... (truncated)

Changelog

Sourced from @​sentry/tracing's changelog.

7.120.3

  • fix(v7/publish): Ensure discontinued packages are published with latest tag (#14926)

7.120.2

  • fix(tracing-internal): Fix case when lrp keys offset is 0 (#14615)

Work in this release contributed by @​LubomirIgonda1. Thank you for your contribution!

7.120.1

  • fix(v7/cdn): Ensure _sentryModuleMetadata is not mangled (#14357)

Work in this release contributed by @​gilisho. Thank you for your contribution!

7.120.0

  • feat(v7/browser): Add moduleMetadataIntegration lazy loading support (#13822)

Work in this release contributed by @​gilisho. Thank you for your contribution!

7.119.2

  • chore(nextjs/v7): Bump rollup to 2.79.2

7.119.1

  • fix(browser/v7): Ensure wrap() only returns functions (#13838 backport)

Work in this release contributed by @​legobeat. Thank you for your contribution!

7.119.0

  • backport(tracing): Report dropped spans for transactions (#13343)

7.118.0

  • fix(v7/bundle): Ensure CDN bundles do not overwrite window.Sentry (#12579)

7.117.0

  • feat(browser/v7): Publish browserprofling CDN bundle (#12224)
  • fix(v7/publish): Add v7 tag to @sentry/replay (#12304)

7.116.0

  • build(craft): Publish lambda layer under its own name for v7 (#12098) (#12099)

This release publishes a new AWS Lambda layer under the name SentryNodeServerlessSDKv7 that users still running v7 can

... (truncated)

Commits
  • 5a833b4 release: 7.120.3
  • 6972e9a meta: Update Changelog for 7.120.3 (#14960)
  • e779b43 fix(v7/publish): Ensure discontinued packages are published with latest tag...
  • bc7dfd6 Merge branch 'release/7.120.2' into v7
  • 85a3cac release: 7.120.2
  • 5908e0a meta(v7/changelog): Add changelog for 1.120.2 (#14673)
  • 4690bf3 Merge pull request #14615 from LubomirIgonda1/fix-express-route-params
  • 0e9c7f6 fix(tracing-internal): fix code formatting
  • 78892ad fix(tracing-internal): Fix case when lrp keys offset is 0
  • fde81a6 Merge branch 'release/7.120.1' into v7
  • Additional commits viewable in compare view

Updates @tanstack/react-virtual from 3.11.2 to 3.12.0

Release notes

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

v3.12.0

Version 3.12.0 - 2/3/25, 4:02 AM

Changes

Feat

  • virtual-core: add getVirtualIndexesAPI (a1cb9ce) by Kevin Van Cott

Other

  • (a485978) by Kevin Van Cott

Packages

  • @​tanstack/virtual-core@​3.12.0
  • @​tanstack/lit-virtual@​3.12.0
  • @​tanstack/react-virtual@​3.12.0
  • @​tanstack/solid-virtual@​3.12.0
  • @​tanstack/svelte-virtual@​3.12.0
  • @​tanstack/vue-virtual@​3.12.0
  • @​tanstack/angular-virtual@​3.12.0

v3.11.3

Version 3.11.3 - 1/27/25, 10:57 AM

Changes

Fix

  • virtual-core: avoid invalidating getIndexes memo cache on every call (#918) (386aca7) by Richie

Chore

  • deps: update all non-major dependencies (#919) (7612473) by renovate[bot]
  • deps: update all non-major dependencies (#916) (87f6d16) by renovate[bot]
  • deps: update all non-major dependencies (#915) (71c7ad5) by renovate[bot]
  • deps: update all non-major dependencies (#908) (28f0062) by renovate[bot]
  • deps: lock file maintenance (#907) (3d98fd7) by renovate[bot]
  • deps: update all non-major dependencies (#905) (0b51434) by renovate[bot]
  • deps: update all non-major dependencies (#903) (cbd43e9) by renovate[bot]

Packages

  • @​tanstack/react-virtual@​3.11.3
  • @​tanstack/solid-virtual@​3.11.3
  • @​tanstack/svelte-virtual@​3.11.3
  • @​tanstack/virtual-core@​3.11.3
  • @​tanstack/lit-virtual@​3.11.3
  • @​tanstack/vue-virtual@​3.11.3

... (truncated)

Commits

Updates fuse.js from 7.0.0 to 7.1.0

Release notes

Sourced from fuse.js's releases.

v7.1.0

What's Changed

New Contributors

Full Changelog: krisk/Fuse@v7.0.0...v7.1.0

Changelog

Sourced from fuse.js's changelog.

7.1.0 (2025-02-03)

Features

  • add ignore diacritics (e0fcdb1)
  • add option to ignore diacritics (fb012b7)

Bug Fixes

Commits
  • 8119c18 chore(release): 7.1.0
  • ef16371 Merge branch 'ignore-diacritics'
  • e0fcdb1 feat: add ignore diacritics
  • d89d15e chore: clarify index support
  • ef34425 docs: document input to parseIndex explicitly
  • 72b6e25 fix(typescript): clarify input to parseIndex
  • 4e30d3e Update CHANGELOG.md, fix typos
  • 40e27de chore: update copyright year
  • 47e4d67 chore: add sponsor
  • d753d85 docs: add litslink
  • Additional commits viewable in compare view

Updates ol from 10.3.1 to 10.4.0

Release notes

Sourced from ol's releases.

v10.4.0

With more than 40 pull requests, the 10.4 release brings performance improvements, bug fixes, better TypeScript generics and new features. New features include a convenience Image layer loader for debugging MapServer map files using the MapServer CGI API, and an experimental WebGLVectorTile layer.

Upgrade notes

Deprecation of ol/layer/WebGLPoints

Use ol/layer/WebGLVector instead. Besides rendering points it will also render lines and polygons. In most cases this is a drop-in replacement. To use filtering the style and filter have to be in a nested object.

// Before
new WebGLPointsLayer({
  filter: ['between', ['get', 'year'], ['var', 'minYear'], ['var', 'maxYear']],
  style: {
    'circle-radius': 8,
    'circle-fill-color': 'blue',
  },
  source: vectorSource,
})
// After
new WebGLVectorLayer({
style: [{
filter: ['between', ['get', 'year'], ['var', 'minYear'], ['var', 'maxYear']],
style: {
'circle-radius': 8,
'circle-fill-color': 'blue',
},
}],
source: vectorSource,
})

ol/style/webgl module removal

WebGL renderers used to rely on the WebGLStyle type in the ol/style/webgl module. This is not the case anymore, all renderers now rely on FlatStyle from ol/style/flat.

-import type { WebGLStyle } from 'ol/style/webgl';
+import type { FlatStyle } from 'ol/style/flat';

ol-mapbox-style compatibility

This version of OpenLayers is only compatible with [email protected] or higher.

Returning false from a one-time listener added with once

Returning false from the listener function will now stop propagation, when the listener is added with once. Previously this only worked with the on method.

... (truncated)

Commits
  • 85219a8 Updates for the 10.4.0 release
  • b8306d3 Merge pull request #16591 from geographika/mapserver-source
  • 2262a6a Fix typo
  • b79ccdf Update comments
  • 7549ac6 Update test/browser/spec/ol/source/mapserver.test.js
  • 9b358c6 Update file names and title to include CGI
  • 5590f98 Remove map from test and test all querystring parameters are set correctly
  • 698c82e Update tests
  • c7a99bf Add mapserver.js
  • b8a98df Add createLoader function for MapServer layers with example and tests
  • Additional commits viewable in compare view

Updates react-highlight-words from 0.20.0 to 0.21.0

Release notes

Sourced from react-highlight-words's releases.

v0.21.0

What's Changed

New Contributors

Full Changelog: bvaughn/react-highlight-words@v0.20.0...v0.21.0

Commits

Updates react-router from 7.1.1 to 7.1.5

Release notes

Sourced from react-router's releases.

v.7.1.5

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

v7.1.4

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

v7.1.3

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

v7.1.2

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

Changelog

Sourced from react-router's changelog.

7.1.5

Patch Changes

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

7.1.4

Patch Changes

  • Internal reorg to clean up some duplicated route module types (#12799)
  • Properly handle status codes that cannot have a body in single fetch responses (204, etc.) (#12760)
  • Stop erroring on resource routes that return raw strings/objects and instead serialize them as text/plain or application/json responses (#12848)
    • This only applies when accessed as a resource route without the .data extension
    • When accessed from a Single Fetch .data request, they will still be encoded via turbo-stream
  • Optimize Lazy Route Discovery path discovery to favor a single querySelectorAll call at the body level instead of many calls at the sub-tree level (#12731)
  • Properly bubble headers as errorHeaders when throwing a data() result (#12846)
    • Avoid duplication of Set-Cookie headers could be duplicated if also returned from headers
  • Optimize route matching by skipping redundant matchRoutes calls when possible (#12800)

7.1.3

No changes

7.1.2

Patch Changes

  • Fix issue with fetcher data cleanup in the data layer on fetcher unmount (#12681)

  • Do not rely on symbol for filtering out redirect responses from loader data (#12694)

    Previously, some projects were getting type checking errors like:

    error TS4058: Return type of exported function has or is using name 'redirectSymbol' from external module "node_modules/..." but cannot be named.

    Now that symbols are not used for the redirect response type, these errors should no longer be present.

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 D...

Description has been truncated

…10 updates

Bumps the non-major-dependencies group with 10 updates in the /frontend directory:

| Package | From | To |
| --- | --- | --- |
| [@react-pdf/renderer](https://github.com/diegomura/react-pdf/tree/HEAD/packages/renderer) | `4.1.6` | `4.2.1` |
| [@reduxjs/toolkit](https://github.com/reduxjs/redux-toolkit) | `2.5.0` | `2.5.1` |
| [@sentry/browser](https://github.com/getsentry/sentry-javascript) | `8.47.0` | `8.54.0` |
| [@sentry/react](https://github.com/getsentry/sentry-javascript) | `8.47.0` | `8.54.0` |
| [@sentry/tracing](https://github.com/getsentry/sentry-javascript) | `7.114.0` | `7.120.3` |
| [@tanstack/react-virtual](https://github.com/TanStack/virtual/tree/HEAD/packages/react-virtual) | `3.11.2` | `3.12.0` |
| [fuse.js](https://github.com/krisk/Fuse) | `7.0.0` | `7.1.0` |
| [ol](https://github.com/openlayers/openlayers) | `10.3.1` | `10.4.0` |
| [react-highlight-words](https://github.com/bvaughn/react-highlight-words) | `0.20.0` | `0.21.0` |
| [react-router](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router) | `7.1.1` | `7.1.5` |



Updates `@react-pdf/renderer` from 4.1.6 to 4.2.1
- [Release notes](https://github.com/diegomura/react-pdf/releases)
- [Changelog](https://github.com/diegomura/react-pdf/blob/master/packages/renderer/CHANGELOG.md)
- [Commits](https://github.com/diegomura/react-pdf/commits/@react-pdf/[email protected]/packages/renderer)

Updates `@reduxjs/toolkit` from 2.5.0 to 2.5.1
- [Release notes](https://github.com/reduxjs/redux-toolkit/releases)
- [Commits](reduxjs/redux-toolkit@v2.5.0...v2.5.1)

Updates `@sentry/browser` from 8.47.0 to 8.54.0
- [Release notes](https://github.com/getsentry/sentry-javascript/releases)
- [Changelog](https://github.com/getsentry/sentry-javascript/blob/8.54.0/CHANGELOG.md)
- [Commits](getsentry/sentry-javascript@8.47.0...8.54.0)

Updates `@sentry/react` from 8.47.0 to 8.54.0
- [Release notes](https://github.com/getsentry/sentry-javascript/releases)
- [Changelog](https://github.com/getsentry/sentry-javascript/blob/8.54.0/CHANGELOG.md)
- [Commits](getsentry/sentry-javascript@8.47.0...8.54.0)

Updates `@sentry/tracing` from 7.114.0 to 7.120.3
- [Release notes](https://github.com/getsentry/sentry-javascript/releases)
- [Changelog](https://github.com/getsentry/sentry-javascript/blob/7.120.3/CHANGELOG.md)
- [Commits](getsentry/sentry-javascript@7.114.0...7.120.3)

Updates `@tanstack/react-virtual` from 3.11.2 to 3.12.0
- [Release notes](https://github.com/TanStack/virtual/releases)
- [Commits](https://github.com/TanStack/virtual/commits/v3.12.0/packages/react-virtual)

Updates `fuse.js` from 7.0.0 to 7.1.0
- [Release notes](https://github.com/krisk/Fuse/releases)
- [Changelog](https://github.com/krisk/Fuse/blob/main/CHANGELOG.md)
- [Commits](krisk/Fuse@v7.0.0...v7.1.0)

Updates `ol` from 10.3.1 to 10.4.0
- [Release notes](https://github.com/openlayers/openlayers/releases)
- [Commits](openlayers/openlayers@v10.3.1...v10.4.0)

Updates `react-highlight-words` from 0.20.0 to 0.21.0
- [Release notes](https://github.com/bvaughn/react-highlight-words/releases)
- [Commits](bvaughn/react-highlight-words@v0.20.0...v0.21.0)

Updates `react-router` from 7.1.1 to 7.1.5
- [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/[email protected]/packages/react-router)

---
updated-dependencies:
- dependency-name: "@react-pdf/renderer"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-major-dependencies
- dependency-name: "@reduxjs/toolkit"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-major-dependencies
- dependency-name: "@sentry/browser"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-major-dependencies
- dependency-name: "@sentry/react"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-major-dependencies
- dependency-name: "@sentry/tracing"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-major-dependencies
- dependency-name: "@tanstack/react-virtual"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-major-dependencies
- dependency-name: fuse.js
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-major-dependencies
- dependency-name: ol
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-major-dependencies
- dependency-name: react-highlight-words
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-major-dependencies
- dependency-name: react-router
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-major-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@claire2212 claire2212 force-pushed the dependabot/npm_and_yarn/frontend/non-major-dependencies-a6c6391253 branch from 15ab952 to a2b1b1f Compare February 6, 2025 09:18
Copy link

sonarqubecloud bot commented Feb 6, 2025

@claire2212 claire2212 merged commit 63a79c3 into main Feb 6, 2025
26 checks passed
@claire2212 claire2212 deleted the dependabot/npm_and_yarn/frontend/non-major-dependencies-a6c6391253 branch February 6, 2025 10:02
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants