Skip to content

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Apr 7, 2025

Bumps the ui-dev-deps group in /ui with 13 updates:

Package From To
@eslint-react/eslint-plugin 1.38.4 1.40.3
@samchon/openapi 3.2.2 4.0.0
@testing-library/react 16.2.0 16.3.0
@types/node 22.13.14 22.14.0
@types/react 19.0.12 19.1.0
@types/react-dom 19.0.4 19.1.1
@vitest/coverage-istanbul 3.0.9 3.1.1
eslint 9.23.0 9.24.0
eslint-plugin-import-x 4.9.4 4.10.1
sass 1.86.0 1.86.3
typescript 5.8.2 5.8.3
typia 8.1.1 9.0.1
vitest 3.0.9 3.1.1

Updates @eslint-react/eslint-plugin from 1.38.4 to 1.40.3

Release notes

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

v1.40.3 (2025-04-04)

What's Changed

🐞 Fixes

Full Changelog: Rel1cx/eslint-react@v1.40.2...v1.40.3

v1.40.2 (2025-04-03)

What's Changed

🐞 Fixes

🪄 Improvements

Full Changelog: Rel1cx/eslint-react@v1.40.1...v1.40.2

v1.40.1 (2025-04-01)

What's Changed

✨ New

Full Changelog: Rel1cx/eslint-react@v1.40.0...v1.40.1

v1.40.0 (2025-04-01)

What's Changed

✨ New

Full Changelog: Rel1cx/eslint-react@v1.38.4...v1.40.0

Changelog

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

v1.40.3 (2025-04-04)

🐞 Fixes

Full Changelog: Rel1cx/eslint-react@v1.40.2...v1.40.3

v1.40.2 (2025-04-03)

🐞 Fixes

🪄 Improvements

Full Changelog: Rel1cx/eslint-react@v1.40.1...v1.40.2

v1.40.1 (2025-04-01)

✨ New

Full Changelog: Rel1cx/eslint-react@v1.40.0...v1.40.1

v1.40.0 (2025-04-01)

✨ New

Full Changelog: Rel1cx/eslint-react@v1.38.4...v1.40.0

Commits

Updates @samchon/openapi from 3.2.2 to 4.0.0

Release notes

Sourced from @​samchon/openapi's releases.

v4.0.0

export namespace JsonSchema {
  export interface INumber {
    type: "number";
    minimum?: number;
    maximum?: number;
    exclusiveMinimum?: number; // boolean -> number
    exclusiveMaximum?: number; // boolean -> number;
    examples?: Record<string, any> | Array<any>; // object -> array | object
  }
}

Anthropic Claude has banned boolean typed exclusiveMinimum and exclusiveMaximum properties. This release changes them to number type to support Anthropic Claude perflectly, and this is a typical major update taking a break change on types.

Also, in the JSON schema specifications, examples property has been changed from Array<any> type to Record<string, any> type since OpenAPI v3 update. However, too much people and frameworks are not responding such specification change. So, many of users validating OpenAPI specification by typia.assert<OpenApiV3_1.IDocument>(doc) function had been failed due to such JsonSchema.examples reason.

This release allows non-standard example type (Array<any>) considering the industrial environments, and supports polyfill methods instead.

What's Changed

Full Changelog: samchon/openapi@v3.3.0...v4.0.0

v3.3.0

What's Changed

Full Changelog: samchon/openapi@v3.2.4...v3.3.0

v3.2.4

What's Changed

Full Changelog: samchon/openapi@v3.2.3...v3.2.4

v3.2.3

What's Changed

Full Changelog: samchon/openapi@v3.2.2...v3.2.3

Commits

Updates @testing-library/react from 16.2.0 to 16.3.0

Release notes

Sourced from @​testing-library/react's releases.

v16.3.0

16.3.0 (2025-04-02)

Features

  • add bernardobelchior as a contributor for code, and doc (#1391) (9fc6a75)
Commits

Updates @types/node from 22.13.14 to 22.14.0

Commits

Updates @types/react from 19.0.12 to 19.1.0

Commits

Updates @types/react-dom from 19.0.4 to 19.1.1

Commits

Updates @vitest/coverage-istanbul from 3.0.9 to 3.1.1

Release notes

Sourced from @​vitest/coverage-istanbul's releases.

v3.1.1

   🐞 Bug Fixes

    View changes on GitHub

v3.1.0

🚀 Features

🐞 Bug Fixes

🏎 Performance

... (truncated)

Commits

Updates eslint from 9.23.0 to 9.24.0

Release notes

Sourced from eslint's releases.

v9.24.0

Features

  • 556c25b feat: support loading TS config files using --experimental-strip-types (#19401) (Arya Emami)
  • 72650ac feat: support TS syntax in init-declarations (#19540) (Nitin Kumar)
  • 03fb0bc feat: normalize patterns to handle "./" prefix in files and ignores (#19568) (Pixel998)
  • 071dcd3 feat: support TS syntax in no-dupe-class-members (#19558) (Nitin Kumar)
  • cd72bcc feat: Introduce a way to suppress violations (#19159) (Iacovos Constantinou)
  • 2a81578 feat: support TS syntax in no-loss-of-precision (#19560) (Nitin Kumar)
  • 30ae4ed feat: add new options to class-methods-use-this (#19527) (sethamus)
  • b79ade6 feat: support TypeScript syntax in no-array-constructor (#19493) (Tanuj Kanti)

Bug Fixes

  • b23d1c5 fix: deduplicate variable names in no-loop-func error messages (#19595) (Nitin Kumar)
  • fb8cdb8 fix: use any[] type for context.options (#19584) (Francesco Trotta)

Documentation

  • f857820 docs: update documentation for --experimental-strip-types (#19594) (Nikolas Schröter)
  • 803e4af docs: simplify gitignore path handling in includeIgnoreFile section (#19596) (Thomas Broyer)
  • 6d979cc docs: Update README (GitHub Actions Bot)
  • 82177e4 docs: Update README (GitHub Actions Bot)
  • e849dc0 docs: replace existing var with const (#19578) (Sweta Tanwar)
  • 0c65c62 docs: don't pass filename when linting rule examples (#19571) (Milos Djermanovic)
  • 6be36c9 docs: Update custom-rules.md code example of fixer (#19555) (Yifan Pan)

Build Related

  • 366e369 build: re-enable Prettier formatting for package.json files (#19569) (Francesco Trotta)

Chores

  • ef67420 chore: upgrade @​eslint/js@​9.24.0 (#19602) (Milos Djermanovic)
  • 4946847 chore: package.json update for @​eslint/js release (Jenkins)
  • a995acb chore: correct 'flter'/'filter' typo in package script (#19587) (Josh Goldberg ✨)
  • b9a5efa test: skip symlink test on Windows (#19503) (fisker Cheung)
  • 46eea6d chore: remove Rule & FormatterFunction from shared/types.js (#19556) (Nitin Kumar)
  • bdcc91d chore: modify .editorconfig to keep parity with prettier config (#19577) (Sweta Tanwar)
  • 7790d83 chore: fix some typos in comment (#19576) (todaymoon)
  • 76064a6 test: ignore package-lock.json for eslint-webpack-plugin (#19572) (Francesco Trotta)
Changelog

Sourced from eslint's changelog.

v9.24.0 - April 4, 2025

  • ef67420 chore: upgrade @​eslint/js@​9.24.0 (#19602) (Milos Djermanovic)
  • 4946847 chore: package.json update for @​eslint/js release (Jenkins)
  • f857820 docs: update documentation for --experimental-strip-types (#19594) (Nikolas Schröter)
  • 803e4af docs: simplify gitignore path handling in includeIgnoreFile section (#19596) (Thomas Broyer)
  • 6d979cc docs: Update README (GitHub Actions Bot)
  • b23d1c5 fix: deduplicate variable names in no-loop-func error messages (#19595) (Nitin Kumar)
  • 556c25b feat: support loading TS config files using --experimental-strip-types (#19401) (Arya Emami)
  • 82177e4 docs: Update README (GitHub Actions Bot)
  • a995acb chore: correct 'flter'/'filter' typo in package script (#19587) (Josh Goldberg ✨)
  • 72650ac feat: support TS syntax in init-declarations (#19540) (Nitin Kumar)
  • 03fb0bc feat: normalize patterns to handle "./" prefix in files and ignores (#19568) (Pixel998)
  • b9a5efa test: skip symlink test on Windows (#19503) (fisker Cheung)
  • 46eea6d chore: remove Rule & FormatterFunction from shared/types.js (#19556) (Nitin Kumar)
  • fb8cdb8 fix: use any[] type for context.options (#19584) (Francesco Trotta)
  • 071dcd3 feat: support TS syntax in no-dupe-class-members (#19558) (Nitin Kumar)
  • e849dc0 docs: replace existing var with const (#19578) (Sweta Tanwar)
  • bdcc91d chore: modify .editorconfig to keep parity with prettier config (#19577) (Sweta Tanwar)
  • 7790d83 chore: fix some typos in comment (#19576) (todaymoon)
  • cd72bcc feat: Introduce a way to suppress violations (#19159) (Iacovos Constantinou)
  • 2a81578 feat: support TS syntax in no-loss-of-precision (#19560) (Nitin Kumar)
  • 366e369 build: re-enable Prettier formatting for package.json files (#19569) (Francesco Trotta)
  • 30ae4ed feat: add new options to class-methods-use-this (#19527) (sethamus)
  • b79ade6 feat: support TypeScript syntax in no-array-constructor (#19493) (Tanuj Kanti)
  • 0c65c62 docs: don't pass filename when linting rule examples (#19571) (Milos Djermanovic)
  • 76064a6 test: ignore package-lock.json for eslint-webpack-plugin (#19572) (Francesco Trotta)
  • 6be36c9 docs: Update custom-rules.md code example of fixer (#19555) (Yifan Pan)
Commits
  • d49f5b7 9.24.0
  • 9b6ed8a Build: changelog update for 9.24.0
  • ef67420 chore: upgrade @​eslint/js@​9.24.0 (#19602)
  • 4946847 chore: package.json update for @​eslint/js release
  • f857820 docs: update documentation for --experimental-strip-types (#19594)
  • 803e4af docs: simplify gitignore path handling in includeIgnoreFile section (#19596)
  • 6d979cc docs: Update README
  • b23d1c5 fix: deduplicate variable names in no-loop-func error messages (#19595)
  • 556c25b feat: support loading TS config files using --experimental-strip-types (#19...
  • 82177e4 docs: Update README
  • Additional commits viewable in compare view

Updates eslint-plugin-import-x from 4.9.4 to 4.10.1

Release notes

Sourced from eslint-plugin-import-x's releases.

v4.10.1

Patch Changes

Full Changelog: un-ts/eslint-plugin-import-x@v4.10.0...v4.10.1

v4.10.0

Minor Changes

Patch Changes

New Contributors

Full Changelog: un-ts/eslint-plugin-import-x@v4.9.4...v4.10.0

Changelog

Sourced from eslint-plugin-import-x's changelog.

4.10.1

Patch Changes

4.10.0

Minor Changes

Patch Changes

Commits

Updates sass from 1.86.0 to 1.86.3

Release notes

Sourced from sass's 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.

Changelog

Sourced from sass's changelog.

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

Updates typescript from 5.8.2 to 5.8.3

Commits

Updates typia from 8.1.1 to 9.0.1

Release notes

Sourced from typia's releases.

v9.0.1

Major update from @samchon/openapi: https://github.com/samchon/openapi/releases/tag/v4.0.0

export namespace JsonSchema {
  export interface INumber {
    type: "number";
    minimum?: number;
    maximum?: number;
    exclusiveMinimum?: number; // boolean -> number
    exclusiveMaximum?: number; // boolean -> number;
    examples?: Record<string, any> | Array<any>; // object -> array | object
  }
}

Anthropic Claude has banned boolean typed exclusiveMinimum and exclusiveMaximum properties. So @samchon/openapi has changed them to number type to support Anthropic Claude perflectly, and it is a typical major update taking a break change on types.

Also, in the JSON schema specifications, examples property has been changed from Array<any> type to Record<string, any> type since OpenAPI v3 update. However, too much people and frameworks are not responding such specification change. So, many of users validating OpenAPI specification by typia.assert<OpenApiV3_1.IDocument>(doc) function had been failed due to such JsonSchema.examples reason.

@samchon/openapi's new release allows non-standard example type (Array<any>) considering the industrial environments, and supports polyfill methods instead.

To respond such break changes with major update from @samchon/openapi, typia has released new major update v9. Also, realising a new major update, typia has enhanced number & tags.Type<"uint32"> like unsigned integer type about JSON schema generation. From now on, when define a number & tags.Type<"int32"> like tag, it would also contain the minimum: 0 constraint in the JSON schema.

What's Changed

Full Changelog: samchon/typia@v8.2.0...v9.0.1

v8.2.0

What's Changed

New Contributors

Full Changelog: samchon/typia@v8.1.1...v8.2.0

Commits

Bumps the ui-dev-deps group in /ui with 13 updates:

| Package | From | To |
| --- | --- | --- |
| [@eslint-react/eslint-plugin](https://github.com/Rel1cx/eslint-react/tree/HEAD/packages/plugins/eslint-plugin) | `1.38.4` | `1.40.3` |
| [@samchon/openapi](https://github.com/samchon/openapi) | `3.2.2` | `4.0.0` |
| [@testing-library/react](https://github.com/testing-library/react-testing-library) | `16.2.0` | `16.3.0` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `22.13.14` | `22.14.0` |
| [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.0.12` | `19.1.0` |
| [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `19.0.4` | `19.1.1` |
| [@vitest/coverage-istanbul](https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-istanbul) | `3.0.9` | `3.1.1` |
| [eslint](https://github.com/eslint/eslint) | `9.23.0` | `9.24.0` |
| [eslint-plugin-import-x](https://github.com/un-ts/eslint-plugin-import-x) | `4.9.4` | `4.10.1` |
| [sass](https://github.com/sass/dart-sass) | `1.86.0` | `1.86.3` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.8.2` | `5.8.3` |
| [typia](https://github.com/samchon/typia) | `8.1.1` | `9.0.1` |
| [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `3.0.9` | `3.1.1` |


Updates `@eslint-react/eslint-plugin` from 1.38.4 to 1.40.3
- [Release notes](https://github.com/Rel1cx/eslint-react/releases)
- [Changelog](https://github.com/Rel1cx/eslint-react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/Rel1cx/eslint-react/commits/v1.40.3/packages/plugins/eslint-plugin)

Updates `@samchon/openapi` from 3.2.2 to 4.0.0
- [Release notes](https://github.com/samchon/openapi/releases)
- [Commits](samchon/openapi@v3.2.2...v4.0.0)

Updates `@testing-library/react` from 16.2.0 to 16.3.0
- [Release notes](https://github.com/testing-library/react-testing-library/releases)
- [Changelog](https://github.com/testing-library/react-testing-library/blob/main/CHANGELOG.md)
- [Commits](testing-library/react-testing-library@v16.2.0...v16.3.0)

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

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

Updates `@types/react-dom` from 19.0.4 to 19.1.1
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom)

Updates `@vitest/coverage-istanbul` from 3.0.9 to 3.1.1
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v3.1.1/packages/coverage-istanbul)

Updates `eslint` from 9.23.0 to 9.24.0
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](eslint/eslint@v9.23.0...v9.24.0)

Updates `eslint-plugin-import-x` from 4.9.4 to 4.10.1
- [Release notes](https://github.com/un-ts/eslint-plugin-import-x/releases)
- [Changelog](https://github.com/un-ts/eslint-plugin-import-x/blob/master/CHANGELOG.md)
- [Commits](un-ts/eslint-plugin-import-x@v4.9.4...v4.10.1)

Updates `sass` from 1.86.0 to 1.86.3
- [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.86.0...1.86.3)

Updates `typescript` from 5.8.2 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](https://github.com/microsoft/TypeScript/commits)

Updates `typia` from 8.1.1 to 9.0.1
- [Release notes](https://github.com/samchon/typia/releases)
- [Commits](samchon/typia@v8.1.1...v9.0.1)

Updates `vitest` from 3.0.9 to 3.1.1
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v3.1.1/packages/vitest)

---
updated-dependencies:
- dependency-name: "@eslint-react/eslint-plugin"
  dependency-version: 1.40.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: ui-dev-deps
- dependency-name: "@samchon/openapi"
  dependency-version: 4.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: ui-dev-deps
- dependency-name: "@testing-library/react"
  dependency-version: 16.3.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: ui-dev-deps
- dependency-name: "@types/node"
  dependency-version: 22.14.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: ui-dev-deps
- dependency-name: "@types/react"
  dependency-version: 19.1.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: ui-dev-deps
- dependency-name: "@types/react-dom"
  dependency-version: 19.1.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: ui-dev-deps
- dependency-name: "@vitest/coverage-istanbul"
  dependency-version: 3.1.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: ui-dev-deps
- dependency-name: eslint
  dependency-version: 9.24.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: ui-dev-deps
- dependency-name: eslint-plugin-import-x
  dependency-version: 4.10.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: ui-dev-deps
- dependency-name: sass
  dependency-version: 1.86.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: ui-dev-deps
- dependency-name: typescript
  dependency-version: 5.8.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: ui-dev-deps
- dependency-name: typia
  dependency-version: 9.0.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: ui-dev-deps
- dependency-name: vitest
  dependency-version: 3.1.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: ui-dev-deps
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Apr 7, 2025
@dependabot dependabot bot requested a review from Zxilly as a code owner April 7, 2025 00:42
Copy link

codecov bot commented Apr 7, 2025

Bundle Report

Bundle size has no change ✅

Copy link

codecov bot commented Apr 7, 2025

Codecov Report

All modified and coverable lines are covered by tests ✅

✅ All tests successful. No failed tests found.

Additional details and impacted files
@@            Coverage Diff             @@
##           master     #352      +/-   ##
==========================================
- Coverage   87.21%   87.15%   -0.07%     
==========================================
  Files          85       85              
  Lines        4397     4397              
  Branches       99       99              
==========================================
- Hits         3835     3832       -3     
- Misses        420      423       +3     
  Partials      142      142              
Flag Coverage Δ
integration 62.10% <ø> (-0.09%) ⬇️
ui 87.89% <ø> (ø)
unit 38.82% <ø> (ø)

Flags with carried forward coverage won't be shown. Click here to find out more.

📢 Thoughts on this report? Let us know!

@Zxilly Zxilly merged commit f4a0a65 into master Apr 7, 2025
43 checks passed
@Zxilly Zxilly deleted the dependabot/npm_and_yarn/ui/ui-dev-deps-44e7d7d459 branch April 7, 2025 02:48
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant