Skip to content

Bump the pnpm-dependencies group across 1 directory with 27 updates #1061

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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github May 5, 2025

Bumps the pnpm-dependencies group with 27 updates in the /frontend directory:

Package From To
@floating-ui/react 0.26.13 0.27.8
@tanstack/react-table 8.16.0 8.21.3
ace-builds 1.33.0 1.41.0
ajv 8.8.2 8.17.1
json-schema-faker 0.5.6 0.5.9
react-hook-form 7.54.2 7.56.2
react-hot-toast 2.4.1 2.5.2
sass 1.66.1 1.87.0
use-debounce 10.0.0 10.0.4
yup 1.4.0 1.6.1
@openapitools/openapi-generator-cli 2.13.4 2.20.0
@swc/core 1.3.107 1.11.24
@swc/jest 0.2.36 0.2.38
@testing-library/jest-dom 6.4.2 6.6.3
@testing-library/user-event 14.5.2 14.6.1
@vitejs/plugin-react-swc 3.6.0 3.9.0
dotenv 16.4.5 16.5.0
eslint-plugin-import 2.29.1 2.31.0
eslint-plugin-jest-dom 5.4.0 5.5.0
eslint-plugin-jsx-a11y 6.8.0 6.10.2
eslint-plugin-prettier 5.1.3 5.3.1
eslint-plugin-react 7.34.1 7.37.5
jest-styled-components 7.1.1 7.2.0
prettier 3.2.5 3.5.3
typescript 5.3.3 5.8.3
vite 6.2.3 6.3.5
vite-plugin-checker 0.6.4 0.9.2

Updates @floating-ui/react from 0.26.13 to 0.27.8

Release notes

Sourced from @​floating-ui/react's releases.

@​floating-ui/react@​0.27.8

Patch Changes

  • feat: export most utils under @floating-ui/react/utils. This makes it a lot easier to write your own custom interaction hooks, or copy/paste the existing ones to change the way they are implemented yourself without patching or waiting for features/breaking changes.
  • perf(FloatingFocusManager): move manual tabindex handling on floating element to an event. Improves performance when the floating element has a large amount of content or the content changes frequently e.g. virtualized scrolling.
  • fix(FloatingFocusManager): prioritize returning focus to reference if available
  • feat(useListNavigation): add parentOrientation prop

@​floating-ui/react@​0.27.7

Patch Changes

  • fix(useTransitionStatus): avoid browser from painting before floating element opens. With FloatingDelayGroup, this avoids a flicker when moving between floating elements to ensure one is always open with no missing frames.
  • fix(useListNavigation): correctly scroll to the selected item on open when using a pointer and FloatingFocusManager initialFocus is not in use
  • fix(useHover): clean up blockPointerEvents when opened with click after hover
  • fix(useRole): improve "combobox" role
  • fix(useRole): handle custom id attributes
  • feat: experimental NextFloatingDelayGroup (and useNextFloatingDelayGroup). Unlike FloatingDelayGroup, this component doesn't cause a re-render of unrelated consumers of the context when the delay changes, improving performance. This will eventually become the new default for FloatingDelayGroup in v1 (Next), as its API is different.
  • perf(FloatingFocusManager): ignore manual tabindex handling for non-dialog role floating elements
  • fix(useHover): prevent floating element unexpectedly closing when close to reference element when not using safePolygon() and a close delay
  • perf(useFloating): refactor events emitter
  • fix(FloatingFocusManager): ensure floating elements with no tabbable content are assigned tabIndex=0 when initialFocus is -1
  • fix(useListNavigation): handle list navigation for nested lists with mixed orientation

@​floating-ui/react@​0.27.6

Patch Changes

  • fix(useFloating): prevent error when using inline middleware when passing a real DOM element to refs.setPositionReference due to element.getClientRects() not being handled
  • fix: avoid marking root ancestor combobox with aria-hidden when nested virtual floating element opens
  • fix(FloatingFocusManager): set inert attribute value to empty string instead of "true"
  • fix(FloatingFocusManager): correct tabbing to different document contexts
  • fix(useClick): fix toggle behavior with Enter key when reference element is anchor
  • feat(FloatingFocusManager): getInsideElements prop. Allows you to specify elements that are considered as "inside" the floating element. These will avoid being marked with aria-hidden and data-floating-ui-inert attributes.
  • fix(useFocus): improve :focus-visible checks

@​floating-ui/react@​0.27.5

Patch Changes

  • fix(FloatingFocusManager): return focus on outside press if possible for non-context nested floating elements
  • perf: improve performance by only clearing used timeouts
  • fix(useMergeRefs): support React 19 ref cleanup
  • fix(FloatingFocusManager): avoid returning to unrelated references

@​floating-ui/react@​0.27.4

Patch Changes

  • fix(useListNavigation): use parent's orientation when opening/closing nested menus, correctly supporting grid submenus
  • fix(FloatingList): avoid race condition between registering/unregistering nodes and setting indices

@​floating-ui/react@​0.27.3

Patch Changes

... (truncated)

Changelog

Sourced from @​floating-ui/react's changelog.

0.27.8

Patch Changes

  • feat: export most utils under @floating-ui/react/utils. This makes it a lot easier to write your own custom interaction hooks, or copy/paste the existing ones to change the way they are implemented yourself without patching or waiting for features/breaking changes.
  • perf(FloatingFocusManager): move manual tabindex handling on floating element to an event. Improves performance when the floating element has a large amount of content or the content changes frequently e.g. virtualized scrolling.
  • fix(FloatingFocusManager): prioritize returning focus to reference if available
  • feat(useListNavigation): add parentOrientation prop

0.27.7

Patch Changes

  • fix(useTransitionStatus): avoid browser from painting before floating element opens. With FloatingDelayGroup, this avoids a flicker when moving between floating elements to ensure one is always open with no missing frames.
  • fix(useListNavigation): correctly scroll to the selected item on open when using a pointer and FloatingFocusManager initialFocus is not in use
  • fix(useHover): clean up blockPointerEvents when opened with click after hover
  • fix(useRole): improve "combobox" role
  • fix(useRole): handle custom id attributes
  • feat: experimental NextFloatingDelayGroup (and useNextFloatingDelayGroup). Unlike FloatingDelayGroup, this component doesn't cause a re-render of unrelated consumers of the context when the delay changes, improving performance. This will eventually become the new default for FloatingDelayGroup in v1 (Next), as its API is different.
  • perf(FloatingFocusManager): ignore manual tabindex handling for non-dialog role floating elements
  • fix(useHover): prevent floating element unexpectedly closing when close to reference element when not using safePolygon() and a close delay
  • perf(useFloating): refactor events emitter
  • fix(FloatingFocusManager): ensure floating elements with no tabbable content are assigned tabIndex=0 when initialFocus is -1
  • fix(useListNavigation): handle list navigation for nested lists with mixed orientation

0.27.6

Patch Changes

  • fix(useFloating): prevent error when using inline middleware when passing a real DOM element to refs.setPositionReference due to element.getClientRects() not being handled
  • fix: avoid marking root ancestor combobox with aria-hidden when nested virtual floating element opens
  • fix(FloatingFocusManager): set inert attribute value to empty string instead of "true"
  • fix(FloatingFocusManager): correct tabbing to different document contexts
  • fix(useClick): fix toggle behavior with Enter key when reference element is anchor
  • feat(FloatingFocusManager): getInsideElements prop. Allows you to specify elements that are considered as "inside" the floating element. These will avoid being marked with aria-hidden and data-floating-ui-inert attributes.
  • fix(useFocus): improve :focus-visible checks

0.27.5

Patch Changes

  • fix(FloatingFocusManager): return focus on outside press if possible for non-context nested floating elements
  • perf: improve performance by only clearing used timeouts
  • fix(useMergeRefs): support React 19 ref cleanup
  • fix(FloatingFocusManager): avoid returning to unrelated references

0.27.4

Patch Changes

... (truncated)

Commits
  • 8b83786 chore: version packages (#3300)
  • d97b16f fix(FloatingFocusManager): handle data-tabindex attribute
  • 3226dd0 fix(FloatingFocusManager): check for data-tabindex existence
  • eeade99 feat: (useListNavigation): add parentOrientation prop (#3296)
  • 1bc8e26 feat(react): export most utils (#3297)
  • 18add92 perf(FloatingFocusManager): move manual tabindex handling on floating eleme...
  • 9364ce0 fix(FloatingFocusManager): prioritize returning focus to reference if availab...
  • 83a0de9 chore: version packages (#3278)
  • a0936e2 fix(useRole): automatically handle custom ids (#3288)
  • f578a30 fix(useRole): improve "combobox" role (#3289)
  • Additional commits viewable in compare view

Updates @tanstack/react-table from 8.16.0 to 8.21.3

Release notes

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

v8.21.3

Version 8.21.3 - 4/14/25, 8:19 PM

Changes

Fix

  • table-core: use right Document instance on getResizeHandler (column-sizing feature) (#5989) (54ce673) by @​riccardoperra

Docs

Packages

  • @​tanstack/table-core@​8.21.3
  • @​tanstack/angular-table@​8.21.3
  • @​tanstack/lit-table@​8.21.3
  • @​tanstack/qwik-table@​8.21.3
  • @​tanstack/react-table@​8.21.3
  • @​tanstack/solid-table@​8.21.3
  • @​tanstack/svelte-table@​8.21.3
  • @​tanstack/vue-table@​8.21.3
  • @​tanstack/react-table-devtools@​8.21.3

v8.21.2

Version 8.21.2 - 2/11/25, 8:59 PM

Changes

Fix

  • arrIncludes autoremove filterFn (#5623) (2efaf57) by lukebui
  • lit-table: spread table options in lit adapter (#5904) (36dede1) by @​kadoshms

Docs

  • row accessor bug in example code block (#5893) (b1506a7) by Valerii Petryniak
  • virtualizer tbody from onchange (827b098) by Kevin Van Cott
  • exp virtual - remeasure when table state changes (9e6987d) by Kevin Van Cott
  • angular: add expanding and sub components examples (#5898) (099e1a4) by @​riccardoperra
  • example name (57703a4) by Kevin Van Cott

Packages

  • @​tanstack/table-core@​8.21.2
  • @​tanstack/lit-table@​8.21.2
  • @​tanstack/angular-table@​8.21.2
  • @​tanstack/qwik-table@​8.21.2

... (truncated)

Commits

Updates ace-builds from 1.33.0 to 1.41.0

Changelog

Sourced from ace-builds's changelog.

Changelog

All notable changes to this project will be documented in this file. See standard-version for commit guidelines.

1.40.2 (2025-05-02)

1.40.1 (2025-04-23)

Bug Fixes

  • gutter: add null check for session.foldWdigets (#5801) (6ca40e9)

1.40.0 (2025-04-15)

Features

  • gutter: added keyboard handling for experimental feature custom widgets (#5796) (8037400)

1.39.1 (2025-03-20)

Features

  • Editing is disabled tooltip in readonly mode (#5771) (1098e53)

Bug Fixes

1.39.0 (2025-02-21)

Features

  • Multiline Search Support: line breaks \n (#5675) (06d51b9)

Bug Fixes

  • check if row is present when setting aria label of popup elements (#5750) (ff16482)
  • gutter hover tooltip a11y improvements (#5747) (fbe3ddc)
  • narrowing platform to be either win or mac (#5707) (18cc336)
  • set score completion item when skipfilter true (#5749) (a27e1e8)

... (truncated)

Commits

Updates ajv from 8.8.2 to 8.17.1

Release notes

Sourced from ajv's releases.

v8.17.1

What's Changed

Full Changelog: ajv-validator/ajv@v8.17.0...v8.17.1

Plus everything in 8.17.0 which failed to release

The only functional change is to switch from uri-js (which is no longer supported), to fast-uri. This is the second attempt and the team on fast-uri have been really helpful addressing the issues we found last time.

Revert "Revert fast-uri change (ajv-validator/ajv#2444)" by @​gurgunday in ajv-validator/ajv#2448 fix: ignore new eslint error for @​typescript-eslint/no-extraneous-class by @​jasoniangreen in ajv-validator/ajv#2455 docs: clarify behaviour of addVocabulary by @​jasoniangreen in ajv-validator/ajv#2454 docs: refactor to improve legibility by @​blottn in ajv-validator/ajv#2432 Fix grammatical typo in managing-schemas.md by @​wetneb in ajv-validator/ajv#2305 docs: Fix broken strict-mode link by @​alexanderjsx in ajv-validator/ajv#2459 feat: add test for encoded refs and bump fast-uri by @​jasoniangreen in ajv-validator/ajv#2449 fix: changes for @​typescript-eslint/array-type rule by @​jasoniangreen in ajv-validator/ajv#2467 fixes ajv-validator/ajv#2217 - clarify custom keyword naming by @​jasoniangreen in ajv-validator/ajv#2457

v8.17.0

What's Changed

The only functional change is to switch from uri-js (which is no longer supported), to fast-uri. This is the second attempt and the team on fast-uri have been really helpful addressing the issues we found last time.

New Contributors

Full Changelog: ajv-validator/ajv@v8.16.0...v8.17.0

v8.16.0

What's Changed

Full Changelog: ajv-validator/ajv@v8.15.0...v8.16.0

... (truncated)

Commits

Updates json-schema-faker from 0.5.6 to 0.5.9

Commits
  • 89a97aa 0.5.9
  • c8ed753 Merge pull request #836 from json-schema-faker/develop
  • f525a69 Merge pull request #844 from EinfachHans/fix/cve
  • ae88792 chore(deps): bump jsonpath-plus from 10.1.0 to 10.3.0
  • 0ca99b6 Merge pull request #839 from tleasor/fix-missing-cjs-type-definitions
  • 939cc83 fix: publish missing index.d.cts to npm
  • b2b101c fix: use current version
  • 5984fc3 Merge pull request #835 from denbon05/large-min-gen-fix
  • 0e0cf56 revert package.json version
  • 407ad7c fix: large min value without specified max
  • Additional commits viewable in compare view

Updates react-hook-form from 7.54.2 to 7.56.2

Release notes

Sourced from react-hook-form's releases.

Version 7.56.2

🐞 fix #12785 regression on default value gets overwritten by values props (#12790) 🐞 fix: use layoutEffect in useWatch for subscription similar to useForm (#12786) 🐞 fix #12772 reset form useWatch to utilize ref for defaultValue and … (#12780) 📭 close #12773 pass input ref instead partial (#12775)

Version 7.56.1

🐞 fix #12761 #12762 issue with usage reset isReady formState (#12765) 🐞 fix #12763 import warning with named exports (#12764)

Version 7.56.0

⏰ feat: introduce isReady state for subscription (#12568)

const { formState: { isReady }, setValue } = useForm()
useEffect(() => {
// form subscription setup is ready
if (isReady) setValue('test', 'value')
}, [isReady])

🌗 feat: support reactive mode and reValidateMode (#12743) 🐞 fix #12741 regression on move/swap on useFieldArray input update (#12749) 🐞 fix: use useIsomorphicLayoutEffect to address warning in SSR (#12738)

Version 7.56.0-next.0

⏰ feat: introduce isReady state for subscription (#12568)

const { formState: { isReady }, setValue } = useForm()
useEffect(() => {
// form subscription setup is ready
if (isReady) setValue('test', 'value')
}, [isReady])

🌗 feat: support reactive mode and reValidateMode (#12743) 🐞 fix #12741 regression on move/swap on useFieldArray input update (#12749) 🐞 fix: use useIsomorphicLayoutEffect to address warning in SSR (#12738)

Version 7.55.0

⚡️ createFormControl

  • Allow us to start subscribing outside of the React component
const { formControl, control } = createFormControl(props)
</tr></table>

... (truncated)

Commits

Updates react-hot-toast from 2.4.1 to 2.5.2

Release notes

Sourced from react-hot-toast's releases.

v2.5.2

  • Fix race condition in backwards compatible way – fixes #101 1556d28
  • Replace JSX.Element type with React.ReactElement 87c7a52

timolins/react-hot-toast@v2.5.1...v2.5.2

Commits
  • 9a97247 2.5.2
  • 3fcff64 Add packageManger field
  • 40abbf8 Merge pull request #395 from timolins/fix-subscription-race-condition
  • e5819fb Update pnpm in size action
  • 1556d28 Fix race condition in backwards compatible way
  • a9c12f1 Add test for race condition
  • 51d78b5 Merge pull request #392 from kaisermann/fix-jsx-ref
  • dedece2 Oops. Delete package-lock.json
  • 87c7a52 Replace JSX.Element with React.ReactElement
  • 3823791 2.5.1
  • Additional commits viewable in compare view

Updates sass from 1.66.1 to 1.87.0

Release notes

Sourced from sass's releases.

Dart Sass 1.87.0

To install Sass 1.87.0, download one of the packages below and add it to your PATH, or see the Sass website for full installation instructions.

Changes

  • Potentially breaking bug fix: When a plain CSS file with a top-level nesting selector & is loaded into a nested Sass context via meta.load-css() or @import, Sass now emits plain CSS nesting rather than incorrectly combining it with the parent selector using a descendant combinator.

See the full changelog for changes in earlier releases.

Dart Sass 1.86.3

To install Sass 1.86.3, download one of the packages below and add it to your PATH, or see the Sass website for full installation instructions.

Changes

  • Fix a bug introduced in 1.86.1 where Sass fails to resolve paths starting with a .. segment.

See the full changelog for changes in earlier releases.

Dart Sass 1.86.2

To install Sass 1.86.2, download one of the packages below and add it to your PATH, or see the Sass website for full installation instructions.

Changes

  • No user-visible changes.

See the full changelog for changes in earlier releases.

Dart Sass 1.86.1

To install Sass 1.86.1, download one of the packages below and add it to your PATH, or see the Sass website for full installation instructions.

Changes

  • Improve the performance of file: URL case canonicalization on Windows and Mac OS.

See the full changelog for changes in earlier releases.

Dart Sass 1.86.0

To install Sass 1.86.0, download one of the packages below and add it to your PATH, or see the Sass website for full installation instructions.

... (truncated)

Changelog

Sourced from sass's changelog.

1.87.0

  • Potentially breaking bug fix: When a plain CSS file with a top-level nesting selector & is loaded into a nested Sass context via meta.load-css() or @import, Sass now emits plain CSS nesting rather than incorrectly combining it with the parent selector using a descendant combinator.

1.86.3

  • Fix a bug introduced in 1.86.1 where Sass fails to resolve paths starting with a .. segment.

1.86.2

  • No user-visible changes.

1.86.1

  • Improve the performance of file: URL case canonicalization on Windows and Mac OS.

1.86.0

  • Add support for % as an expression in its own right. It will still be parsed as the modulo operator when between two other expressions, but in any other context it will be an expression whose value is the unquoted string %.

  • Consider attr() to be a special number function that can be used as a channel in color functions.

  • Deprecate user-defined functions named type() so that we can eventually support the new CSS type() function.

Dart API

  • Increase the minimum Dart SDK to 3.6.0.

1.85.1

  • Fix a bug where global Sass functions whose names overlap with CSS math functions could incorrectly be treated as CSS math functions even though they used Sass-only features, causing compilation failures. For example, round(-$var / 2) previously threw an error but now works as intended.

1.85.0

  • No longer fully trim redundant selectors generated by @extend. This caused unacceptable performance issues for certain heavy users of @extend. We'll try to find a more performant way to accomplish it in the future.

... (truncated)

Commits

Updates use-debounce from 10.0.0 to 10.0.4

Release notes

Sourced from use-debounce's releases.

v10.0.4

  • Fix behaviour for strictMode react when leading is set to true and trailing is true

v10.0.2

v10.0.1

  • Fixed flush method return args, thanks to @​h
Changelog

Sourced from use-debounce's changelog.

10.0.4

  • Fix behaviour for strictMode react when leading is set to true and trailing is true

10.0.3

10.0.2

10.0.1

  • Fixed flush method return args, thanks to @​h
Commits
  • 324885c Update version
  • cd102d3 Fix React Strict mode behaviour
  • 4c27377 Merge pull request #185 from xnimorz/dependabot/npm_and_yarn/rollup-2.79.2
  • 7b99fa4 Bump rollup from 2.79.1 to 2.79.2
  • 453490e 10.03
  • 460b1df Merge pull request #180 from xnimorz/isPending
  • da112e0 Fix isPending state
  • d4f9cc9 Merge pull request #177 from xnimorz/dependabot/npm_and_yarn/braces-3.0.3
  • a6a95cc Bump braces from 3.0.2 to 3.0.3
  • 4386acc Merge pull request #176 from xnimorz/dependabot/npm_and_yarn/ws-8.17.1
  • Additional commits viewable in compare view

Updates yup from 1.4.0 to 1.6.1

Changelog

Sourced from yup's changelog.

1.6.1 (2024-12-17)

Bug Fixes

  • lazy validation errors thrown in builders should resolve async like other validations (c7d7f97)

1.6.0 (2024-12-16)

Features

1.5.0 (2024-12-03)

Bug Fixes

  • readme: some typos and update CustomizingErrors doc (#2163) (5c77e0d)

Features

  • Add exact and stripUnknown method to object() (adcdd8d)
Commits
  • d00abc3 Publish v1.6.1
  • c7d7f97 fix: lazy validation errors thrown in builders should resolve async like othe...
  • f27fa44 Publish v1.6.0
  • 0d7c327 build: modernize stuff
  • 2b0f126 feat: expose LazySchema
  • c26f9af Update README.md
  • 8ac18b6 Publish v1.5.0
  • adcdd8d feat: Add exact and stripUnknown method to object()
  • 87be159 Fix ValidationError.formatError() clobbering path param (#2250)
  • 5a22c16 let/const consistency in README: let preference (#2227)
  • Additional commits viewable in compare view

Updates @openapitools/openapi-generator-cli from 2.13.4 to 2.20.0

Release notes

Sourced from @​openapitools/openapi-generator-cli's releases.

v2.20.0

2.20.0 (2025-04-27)

Features

v2.19.1

2.19.1 (2025-04-17)

Bug Fixes

  • deps: update nest monorepo to v11.0.20 (#912) (f765225)

v2.19.0

2.19.0 (2025-04-16)

Features

v2.18.4

2.18.4 (2025-03-15)

Bug Fixes

  • deps: update dependency fs-extra to v11 (#903) (11a2df5)

v2.18.3

@dependabot dependabot bot requested a review from a team May 5, 2025 10:22
@dependabot dependabot bot requested a review from a team as a code owner May 5, 2025 10:22
@dependabot dependabot bot added scope/frontend Related to frontend changes type/dependencies A pull request/issue dedicated to updating the dependency(-ies) labels May 5, 2025
@kapybro kapybro bot added status/triage Issues pending maintainers triage status/triage/manual Manual triage in progress status/triage/completed Automatic triage completed and removed status/triage Issues pending maintainers triage labels May 5, 2025
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/frontend/pnpm-dependencies-5860f654a6 branch from 2de87fe to 112be54 Compare May 19, 2025 09:55
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/frontend/pnpm-dependencies-5860f654a6 branch from 112be54 to 6a2db3b Compare May 26, 2025 10:37
Bumps the pnpm-dependencies group with 27 updates in the /frontend directory:

| Package | From | To |
| --- | --- | --- |
| [@floating-ui/react](https://github.com/floating-ui/floating-ui/tree/HEAD/packages/react) | `0.26.13` | `0.27.8` |
| [@tanstack/react-table](https://github.com/TanStack/table/tree/HEAD/packages/react-table) | `8.16.0` | `8.21.3` |
| [ace-builds](https://github.com/ajaxorg/ace-builds) | `1.33.0` | `1.41.0` |
| [ajv](https://github.com/ajv-validator/ajv) | `8.8.2` | `8.17.1` |
| [json-schema-faker](https://github.com/json-schema-faker/json-schema-faker) | `0.5.6` | `0.5.9` |
| [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.54.2` | `7.56.2` |
| [react-hot-toast](https://github.com/timolins/react-hot-toast) | `2.4.1` | `2.5.2` |
| [sass](https://github.com/sass/dart-sass) | `1.66.1` | `1.87.0` |
| [use-debounce](https://github.com/xnimorz/use-debounce) | `10.0.0` | `10.0.4` |
| [yup](https://github.com/jquense/yup) | `1.4.0` | `1.6.1` |
| [@openapitools/openapi-generator-cli](https://github.com/OpenAPITools/openapi-generator-cli) | `2.13.4` | `2.20.0` |
| [@swc/core](https://github.com/swc-project/swc) | `1.3.107` | `1.11.24` |
| [@swc/jest](https://github.com/swc-project/pkgs) | `0.2.36` | `0.2.38` |
| [@testing-library/jest-dom](https://github.com/testing-library/jest-dom) | `6.4.2` | `6.6.3` |
| [@testing-library/user-event](https://github.com/testing-library/user-event) | `14.5.2` | `14.6.1` |
| [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react/tree/HEAD/packages/plugin-react-swc) | `3.6.0` | `3.9.0` |
| [dotenv](https://github.com/motdotla/dotenv) | `16.4.5` | `16.5.0` |
| [eslint-plugin-import](https://github.com/import-js/eslint-plugin-import) | `2.29.1` | `2.31.0` |
| [eslint-plugin-jest-dom](https://github.com/testing-library/eslint-plugin-jest-dom) | `5.4.0` | `5.5.0` |
| [eslint-plugin-jsx-a11y](https://github.com/jsx-eslint/eslint-plugin-jsx-a11y) | `6.8.0` | `6.10.2` |
| [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier) | `5.1.3` | `5.3.1` |
| [eslint-plugin-react](https://github.com/jsx-eslint/eslint-plugin-react) | `7.34.1` | `7.37.5` |
| [jest-styled-components](https://github.com/styled-components/jest-styled-components) | `7.1.1` | `7.2.0` |
| [prettier](https://github.com/prettier/prettier) | `3.2.5` | `3.5.3` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.3.3` | `5.8.3` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `6.2.3` | `6.3.5` |
| [vite-plugin-checker](https://github.com/fi3ework/vite-plugin-checker) | `0.6.4` | `0.9.2` |



Updates `@floating-ui/react` from 0.26.13 to 0.27.8
- [Release notes](https://github.com/floating-ui/floating-ui/releases)
- [Changelog](https://github.com/floating-ui/floating-ui/blob/master/packages/react/CHANGELOG.md)
- [Commits](https://github.com/floating-ui/floating-ui/commits/@floating-ui/react@0.27.8/packages/react)

Updates `@tanstack/react-table` from 8.16.0 to 8.21.3
- [Release notes](https://github.com/TanStack/table/releases)
- [Commits](https://github.com/TanStack/table/commits/v8.21.3/packages/react-table)

Updates `ace-builds` from 1.33.0 to 1.41.0
- [Release notes](https://github.com/ajaxorg/ace-builds/releases)
- [Changelog](https://github.com/ajaxorg/ace-builds/blob/master/CHANGELOG.md)
- [Commits](ajaxorg/ace-builds@v1.33.0...v1.41.0)

Updates `ajv` from 8.8.2 to 8.17.1
- [Release notes](https://github.com/ajv-validator/ajv/releases)
- [Commits](ajv-validator/ajv@v8.8.2...v8.17.1)

Updates `json-schema-faker` from 0.5.6 to 0.5.9
- [Changelog](https://github.com/json-schema-faker/json-schema-faker/blob/master/CHANGELOG)
- [Commits](json-schema-faker/json-schema-faker@v0.5.6...v0.5.9)

Updates `react-hook-form` from 7.54.2 to 7.56.2
- [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.54.2...v7.56.2)

Updates `react-hot-toast` from 2.4.1 to 2.5.2
- [Release notes](https://github.com/timolins/react-hot-toast/releases)
- [Commits](timolins/react-hot-toast@v2.4.1...v2.5.2)

Updates `sass` from 1.66.1 to 1.87.0
- [Release notes](https://github.com/sass/dart-sass/releases)
- [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md)
- [Commits](sass/dart-sass@1.66.1...1.87.0)

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

Updates `yup` from 1.4.0 to 1.6.1
- [Release notes](https://github.com/jquense/yup/releases)
- [Changelog](https://github.com/jquense/yup/blob/master/CHANGELOG.md)
- [Commits](jquense/yup@v1.4.0...v1.6.1)

Updates `@openapitools/openapi-generator-cli` from 2.13.4 to 2.20.0
- [Release notes](https://github.com/OpenAPITools/openapi-generator-cli/releases)
- [Changelog](https://github.com/OpenAPITools/openapi-generator-cli/blob/master/.releaserc)
- [Commits](OpenAPITools/openapi-generator-cli@v2.13.4...v2.20.0)

Updates `@swc/core` from 1.3.107 to 1.11.24
- [Release notes](https://github.com/swc-project/swc/releases)
- [Changelog](https://github.com/swc-project/swc/blob/main/CHANGELOG-CORE.md)
- [Commits](swc-project/swc@v1.3.107...v1.11.24)

Updates `@swc/jest` from 0.2.36 to 0.2.38
- [Commits](https://github.com/swc-project/pkgs/commits)

Updates `@testing-library/jest-dom` from 6.4.2 to 6.6.3
- [Release notes](https://github.com/testing-library/jest-dom/releases)
- [Changelog](https://github.com/testing-library/jest-dom/blob/main/CHANGELOG.md)
- [Commits](testing-library/jest-dom@v6.4.2...v6.6.3)

Updates `@testing-library/user-event` from 14.5.2 to 14.6.1
- [Release notes](https://github.com/testing-library/user-event/releases)
- [Changelog](https://github.com/testing-library/user-event/blob/main/CHANGELOG.md)
- [Commits](testing-library/user-event@v14.5.2...v14.6.1)

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

Updates `dotenv` from 16.4.5 to 16.5.0
- [Changelog](https://github.com/motdotla/dotenv/blob/master/CHANGELOG.md)
- [Commits](motdotla/dotenv@v16.4.5...v16.5.0)

Updates `eslint-plugin-import` from 2.29.1 to 2.31.0
- [Release notes](https://github.com/import-js/eslint-plugin-import/releases)
- [Changelog](https://github.com/import-js/eslint-plugin-import/blob/main/CHANGELOG.md)
- [Commits](import-js/eslint-plugin-import@v2.29.1...v2.31.0)

Updates `eslint-plugin-jest-dom` from 5.4.0 to 5.5.0
- [Release notes](https://github.com/testing-library/eslint-plugin-jest-dom/releases)
- [Commits](testing-library/eslint-plugin-jest-dom@v5.4.0...v5.5.0)

Updates `eslint-plugin-jsx-a11y` from 6.8.0 to 6.10.2
- [Release notes](https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/releases)
- [Changelog](https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/blob/main/CHANGELOG.md)
- [Commits](jsx-eslint/eslint-plugin-jsx-a11y@v6.8.0...v6.10.2)

Updates `eslint-plugin-prettier` from 5.1.3 to 5.3.1
- [Release notes](https://github.com/prettier/eslint-plugin-prettier/releases)
- [Changelog](https://github.com/prettier/eslint-plugin-prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/eslint-plugin-prettier@v5.1.3...v5.3.1)

Updates `eslint-plugin-react` from 7.34.1 to 7.37.5
- [Release notes](https://github.com/jsx-eslint/eslint-plugin-react/releases)
- [Changelog](https://github.com/jsx-eslint/eslint-plugin-react/blob/master/CHANGELOG.md)
- [Commits](jsx-eslint/eslint-plugin-react@v7.34.1...v7.37.5)

Updates `jest-styled-components` from 7.1.1 to 7.2.0
- [Release notes](https://github.com/styled-components/jest-styled-components/releases)
- [Changelog](https://github.com/styled-components/jest-styled-components/blob/main/CHANGELOG.md)
- [Commits](styled-components/jest-styled-components@v7.1.1...v7.2.0)

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

Updates `typescript` from 5.3.3 to 5.8.3
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release-publish.yml)
- [Commits](microsoft/TypeScript@v5.3.3...v5.8.3)

Updates `vite` from 6.2.3 to 6.3.5
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v6.3.5/packages/vite)

Updates `vite-plugin-checker` from 0.6.4 to 0.9.2
- [Release notes](https://github.com/fi3ework/vite-plugin-checker/releases)
- [Changelog](https://github.com/fi3ework/vite-plugin-checker/blob/main/CHANGELOG.md)
- [Commits](https://github.com/fi3ework/vite-plugin-checker/compare/vite-plugin-checker@0.6.4...vite-plugin-checker@0.9.2)

---
updated-dependencies:
- dependency-name: "@floating-ui/react"
  dependency-version: 0.27.8
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pnpm-dependencies
- dependency-name: "@tanstack/react-table"
  dependency-version: 8.21.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pnpm-dependencies
- dependency-name: ace-builds
  dependency-version: 1.41.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pnpm-dependencies
- dependency-name: ajv
  dependency-version: 8.17.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pnpm-dependencies
- dependency-name: json-schema-faker
  dependency-version: 0.5.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pnpm-dependencies
- dependency-name: react-hook-form
  dependency-version: 7.56.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pnpm-dependencies
- dependency-name: react-hot-toast
  dependency-version: 2.5.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pnpm-dependencies
- dependency-name: sass
  dependency-version: 1.87.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pnpm-dependencies
- dependency-name: use-debounce
  dependency-version: 10.0.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pnpm-dependencies
- dependency-name: yup
  dependency-version: 1.6.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pnpm-dependencies
- dependency-name: "@openapitools/openapi-generator-cli"
  dependency-version: 2.20.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: pnpm-dependencies
- dependency-name: "@swc/core"
  dependency-version: 1.11.24
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: pnpm-dependencies
- dependency-name: "@swc/jest"
  dependency-version: 0.2.38
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: pnpm-dependencies
- dependency-name: "@testing-library/jest-dom"
  dependency-version: 6.6.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: pnpm-dependencies
- dependency-name: "@testing-library/user-event"
  dependency-version: 14.6.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: pnpm-dependencies
- dependency-name: "@vitejs/plugin-react-swc"
  dependency-version: 3.9.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: pnpm-dependencies
- dependency-name: dotenv
  dependency-version: 16.5.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: pnpm-dependencies
- dependency-name: eslint-plugin-import
  dependency-version: 2.31.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: pnpm-dependencies
- dependency-name: eslint-plugin-jest-dom
  dependency-version: 5.5.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: pnpm-dependencies
- dependency-name: eslint-plugin-jsx-a11y
  dependency-version: 6.10.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: pnpm-dependencies
- dependency-name: eslint-plugin-prettier
  dependency-version: 5.3.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: pnpm-dependencies
- dependency-name: eslint-plugin-react
  dependency-version: 7.37.5
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: pnpm-dependencies
- dependency-name: jest-styled-components
  dependency-version: 7.2.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: pnpm-dependencies
- dependency-name: prettier
  dependency-version: 3.5.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: pnpm-dependencies
- dependency-name: typescript
  dependency-version: 5.8.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: pnpm-dependencies
- dependency-name: vite
  dependency-version: 6.3.5
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: pnpm-dependencies
- dependency-name: vite-plugin-checker
  dependency-version: 0.9.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: pnpm-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/frontend/pnpm-dependencies-5860f654a6 branch from 6a2db3b to c340290 Compare May 26, 2025 11:01
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
scope/frontend Related to frontend changes status/triage/completed Automatic triage completed status/triage/manual Manual triage in progress type/dependencies A pull request/issue dedicated to updating the dependency(-ies)
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants