kafka-ui
kafka-ui copied to clipboard
Bump the pnpm-dependencies group across 1 directory with 27 updates
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.8Patch 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
parentOrientationprop
@floating-ui/react@0.27.7Patch 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
FloatingFocusManagerinitialFocusis 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(anduseNextFloatingDelayGroup). UnlikeFloatingDelayGroup, 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 forFloatingDelayGroupin 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
eventsemitter- fix(FloatingFocusManager): ensure floating elements with no tabbable content are assigned
tabIndex=0wheninitialFocusis -1- fix(useListNavigation): handle list navigation for nested lists with mixed orientation
@floating-ui/react@0.27.6Patch Changes
- fix(useFloating): prevent error when using
inlinemiddleware when passing a real DOM element torefs.setPositionReferencedue toelement.getClientRects()not being handled- fix: avoid marking root ancestor combobox with
aria-hiddenwhen nested virtual floating element opens- fix(FloatingFocusManager): set
inertattribute 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):
getInsideElementsprop. Allows you to specify elements that are considered as "inside" the floating element. These will avoid being marked witharia-hiddenanddata-floating-ui-inertattributes.- fix(useFocus): improve
:focus-visiblechecks
@floating-ui/react@0.27.5Patch 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.4Patch 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.3Patch 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
parentOrientationprop0.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
FloatingFocusManagerinitialFocusis 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(anduseNextFloatingDelayGroup). UnlikeFloatingDelayGroup, 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 forFloatingDelayGroupin 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
eventsemitter- fix(FloatingFocusManager): ensure floating elements with no tabbable content are assigned
tabIndex=0wheninitialFocusis -1- fix(useListNavigation): handle list navigation for nested lists with mixed orientation
0.27.6
Patch Changes
- fix(useFloating): prevent error when using
inlinemiddleware when passing a real DOM element torefs.setPositionReferencedue toelement.getClientRects()not being handled- fix: avoid marking root ancestor combobox with
aria-hiddenwhen nested virtual floating element opens- fix(FloatingFocusManager): set
inertattribute 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):
getInsideElementsprop. Allows you to specify elements that are considered as "inside" the floating element. These will avoid being marked witharia-hiddenanddata-floating-ui-inertattributes.- fix(useFocus): improve
:focus-visiblechecks0.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
8b83786chore: version packages (#3300)d97b16ffix(FloatingFocusManager): handle data-tabindex attribute3226dd0fix(FloatingFocusManager): check for data-tabindex existenceeeade99feat: (useListNavigation): addparentOrientationprop (#3296)1bc8e26feat(react): export most utils (#3297)18add92perf(FloatingFocusManager): move manualtabindexhandling on floating eleme...9364ce0fix(FloatingFocusManager): prioritize returning focus to reference if availab...83a0de9chore: version packages (#3278)a0936e2fix(useRole): automatically handle customids (#3288)f578a30fix(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
@riccardoperraDocs
- fix all 158 broken links (#5972) (f7bf6f1) by
@kisaragi-hiu- add vue example for grouping (#5941) (3efa59c) by Harshil Patel
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.3v8.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
@kadoshmsDocs
- 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
... (truncated)
Commits
f4dc742release: v8.21.3db745afrelease: v8.21.2a92ce6arelease: v8.20.6cbcea6afix: JSX namespace from React (#5830)ab2819crelease: v8.20.59370c9erelease: v8.20.1f269a59release: v8.19.43f0e5d2release: v8.19.37c7af15release: v8.19.2e585a2echore: upgrade packages except for angular and typescript (#5635)- Additional commits viewable in compare view
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
1.40.0 (2025-04-15)
Features
1.39.1 (2025-03-20)
Features
Bug Fixes
- Fix is check in xml FoldMode (#5752) (810c465)
- replace NodeList.foreach with for loop (#5769) (b3de3c1)
- updateDocTooltip with undefined this.completions (#5754) (adde072)
- wrong java keywords (#5759) (6b4c7a0)
1.39.0 (2025-02-21)
Features
Bug Fixes
... (truncated)
Commits
9392519package 02.05.250c8b483package 23.04.25c27ad0epackage 15.04.25b0c9b66package 21.03.25d8f80cbMerge pull request #266 from hartman/duplicatedemofiles96ea504Remove duplicate files3346dd1package 21.02.25e6e7e81package 12.02.259ce7fb7package 16.01.25b09d3a9package 09.01.25- Additional commits viewable in compare view
Updates ajv from 8.8.2 to 8.17.1
Release notes
Sourced from ajv's releases.
v8.17.1
What's Changed
- bump version to 8.17.1 by
@jasoniangreenin ajv-validator/ajv#2472Full Changelog: https://github.com/ajv-validator/ajv/compare/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
@gurgundayin ajv-validator/ajv#2448 fix: ignore new eslint error for@typescript-eslint/no-extraneous-classby@jasoniangreenin ajv-validator/ajv#2455 docs: clarify behaviour of addVocabulary by@jasoniangreenin ajv-validator/ajv#2454 docs: refactor to improve legibility by@blottnin ajv-validator/ajv#2432 Fix grammatical typo in managing-schemas.md by@wetnebin ajv-validator/ajv#2305 docs: Fix broken strict-mode link by@alexanderjsxin ajv-validator/ajv#2459 feat: add test for encoded refs and bump fast-uri by@jasoniangreenin ajv-validator/ajv#2449 fix: changes for@typescript-eslint/array-typerule by@jasoniangreenin ajv-validator/ajv#2467 fixes ajv-validator/ajv#2217 - clarify custom keyword naming by@jasoniangreenin ajv-validator/ajv#2457v8.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.
- Revert "Revert fast-uri change (#2444)" by
@gurgundayin ajv-validator/ajv#2448- fix: ignore new eslint error for
@typescript-eslint/no-extraneous-classby@jasoniangreenin ajv-validator/ajv#2455- docs: clarify behaviour of addVocabulary by
@jasoniangreenin ajv-validator/ajv#2454- docs: refactor to improve legibility by
@blottnin ajv-validator/ajv#2432- Fix grammatical typo in managing-schemas.md by
@wetnebin ajv-validator/ajv#2305- docs: Fix broken strict-mode link by
@alexanderjsxin ajv-validator/ajv#2459- feat: add test for encoded refs and bump fast-uri by
@jasoniangreenin ajv-validator/ajv#2449- fix: changes for
@typescript-eslint/array-typerule by@jasoniangreenin ajv-validator/ajv#2467- fixes #2217 - clarify custom keyword naming by
@jasoniangreenin ajv-validator/ajv#2457New Contributors
@gurgundaymade their first contribution in ajv-validator/ajv#2448@blottnmade their first contribution in ajv-validator/ajv#2432@wetnebmade their first contribution in ajv-validator/ajv#2305@alexanderjsxmade their first contribution in ajv-validator/ajv#2459Full Changelog: https://github.com/ajv-validator/ajv/compare/v8.16.0...v8.17.0
v8.16.0
What's Changed
- Revert fast-uri change by
@jasoniangreenin ajv-validator/ajv#2444Full Changelog: https://github.com/ajv-validator/ajv/compare/v8.15.0...v8.16.0
... (truncated)
Commits
9050ba1bump version to 8.17.1 (#2472)f7831b4fixes #2217 - clarify custom keyword naming (#2457)a523784fix: changes for@typescript-eslint/array-typerule (#2467)595fe58feat: add test for encoded refs and bump fast-uri (#2449)a18641eUpdate modifying-data.md - fix broken strict-mode link (#2459)650c7f6Fix grammatical typo in managing-schemas.md (#2305)603f63bdocs: refactor to improve legibility (#2432)8bccdc4docs: clarify behaviour of addVocabulary (#2454)85dafb0fix: ignore new eslint error (#2455)80c014fRevert "Revert fast-uri change (#2444)" (#2448)- Additional commits viewable in compare view
Updates json-schema-faker from 0.5.6 to 0.5.9
Commits
89a97aa0.5.9c8ed753Merge pull request #836 from json-schema-faker/developf525a69Merge pull request #844 from EinfachHans/fix/cveae88792chore(deps): bump jsonpath-plus from 10.1.0 to 10.3.00ca99b6Merge pull request #839 from tleasor/fix-missing-cjs-type-definitions939cc83fix: publish missing index.d.cts to npmb2b101cfix: use current version5984fc3Merge pull request #835 from denbon05/large-min-gen-fix0e0cf56revert package.json version407ad7cfix: 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
83165967.56.208470bf🐞 fix #12785 regression on default value gets overwritten by values props (#1...2e41530🐞 fix: use layoutEffect in useWatch for subscription similar to useForm (#12...5f4f050🐞 fix #12772 reset form useWatch to utilize ref for defaultValue and … (#12780)e87880c📭 close #12773 pass input ref instead partial (#12775)29631087.56.1b991822🐞 fix #12761 #12762 issue with usage reset isReady formState (#12765)3cf777f🐞 fix #12763 import warning with named exports (#12764)3a968fe7.56.09ffe5cb7.56.0-next.0- Additional commits viewable in compare view
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
https://github.com/timolins/react-hot-toast/compare/v2.5.1...v2.5.2
Commits
9a972472.5.23fcff64AddpackageMangerfield40abbf8Merge pull request #395 from timolins/fix-subscription-race-conditione5819fbUpdate pnpm in size action1556d28Fix race condition in backwards compatible waya9c12f1Add test for race condition51d78b5Merge pull request #392 from kaisermann/fix-jsx-refdedece2Oops. Delete package-lock.json87c7a52Replace JSX.Element with React.ReactElement38237912.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 viameta.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 viameta.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 CSStype()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
3b8afa2Fix top-level nesting selectors in loaded plain CSS (#2560)087a685Stop releasing the Bazel repo (#2565)1adf814Switch to OSS windows-11-arm runner (#2563)52221c0Fix canonicalize paths containing..(#2561)f6fea3aFix the sass_api release (#2557)cee843bImprove case canonicalization performance (#2552)bce1f4cMerge pull request #2547 from ntkme/gh-cli-release6a9fb83Generate artifact attestationef8f3c4Replace an external github action with github clic6706e7Add support for%as a stand-alone expression (#2540)- Additional commits viewable in compare view
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
- Fixed:
isPendingdoes not reset the state if the tracked value hasn't changed.. See xnimorz/use-debounce#178v10.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
- Removed
peerDependencypart frompackage.jsonas NPM cannot correctly resolvepeerDependencyfor beta and rc versions: see https://stackoverflow.com/questions/67934358/npm-including-all-range-of-pre-release-when-defining-peer-dependency for context10.0.2
- Fixed:
isPendingdoes not reset the state if the tracked value hasn't changed.. See xnimorz/use-debounce#17810.0.1
- Fixed flush method return args, thanks to
@h
Commits
324885cUpdate versioncd102d3Fix React Strict mode behaviour4c27377Merge pull request #185 from xnimorz/dependabot/npm_and_yarn/rollup-2.79.27b99fa4Bump rollup from 2.79.1 to 2.79.2453490e10.03460b1dfMerge pull request #180 from xnimorz/isPendingda112e0Fix isPending stated4f9cc9Merge pull request #177 from xnimorz/dependabot/npm_and_yarn/braces-3.0.3a6a95ccBump braces from 3.0.2 to 3.0.34386accMerge 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
- expose LazySchema (2b0f126)
1.5.0 (2024-12-03)
Bug Fixes
Features
- Add exact and stripUnknown method to object() (adcdd8d)
Commits
d00abc3Publish v1.6.1c7d7f97fix: lazy validation errors thrown in builders should resolve async like othe...f27fa44Publish v1.6.00d7c327build: modernize stuff2b0f126feat: expose LazySchemac26f9afUpdate README.md8ac18b6Publish v1.5.0adcdd8dfeat: Add exact and stripUnknown method to object()87be159Fix ValidationError.formatError() clobbering path param (#2250)5a22c16let/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
v2.19.0
2.19.0 (2025-04-16)
Features
v2.18.4
2.18.4 (2025-03-15)
Bug Fixes
v2.18.3
Description%20has%20been%20truncated%0A" rel="nofollow" target="_blank" >