Commit 8a381c3
authored
chore(deps): update all non-major dependencies (patch) (#6708)
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[@types/react](https://redirect.github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react)
([source](https://redirect.github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react))
| [`18.3.12` ->
`18.3.14`](https://renovatebot.com/diffs/npm/@types%2freact/18.3.12/18.3.14)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
|
[@types/react-dom](https://redirect.github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-dom)
([source](https://redirect.github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom))
| [`18.3.1` ->
`18.3.2`](https://renovatebot.com/diffs/npm/@types%2freact-dom/18.3.1/18.3.2)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
| [cypress](https://cypress.io)
([source](https://redirect.github.com/cypress-io/cypress)) | [`13.16.0`
-> `13.16.1`](https://renovatebot.com/diffs/npm/cypress/13.16.0/13.16.1)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
| [prettier](https://prettier.io)
([source](https://redirect.github.com/prettier/prettier)) | [`3.4.1` ->
`3.4.2`](https://renovatebot.com/diffs/npm/prettier/3.4.1/3.4.2) |
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
| [typedoc](https://typedoc.org)
([source](https://redirect.github.com/TypeStrong/TypeDoc)) | [`0.27.2`
-> `0.27.4`](https://renovatebot.com/diffs/npm/typedoc/0.27.2/0.27.4) |
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
|
[vite-tsconfig-paths](https://redirect.github.com/aleclarson/vite-tsconfig-paths)
| [`5.1.3` ->
`5.1.4`](https://renovatebot.com/diffs/npm/vite-tsconfig-paths/5.1.3/5.1.4)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
---
### Release Notes
<details>
<summary>cypress-io/cypress (cypress)</summary>
###
[`v13.16.1`](https://redirect.github.com/cypress-io/cypress/releases/tag/v13.16.1)
[Compare
Source](https://redirect.github.com/cypress-io/cypress/compare/v13.16.0...v13.16.1)
Changelog: https://docs.cypress.io/app/references/changelog#13-16-1
</details>
<details>
<summary>prettier/prettier (prettier)</summary>
###
[`v3.4.2`](https://redirect.github.com/prettier/prettier/blob/HEAD/CHANGELOG.md#342)
[Compare
Source](https://redirect.github.com/prettier/prettier/compare/3.4.1...3.4.2)
[diff](https://redirect.github.com/prettier/prettier/compare/3.4.1...3.4.2)
##### Treat U+30A0 & U+30FB in Katakana Block as CJK
([#​16796](https://redirect.github.com/prettier/prettier/pull/16796)
by [@​tats-u](https://redirect.github.com/tats-u))
Prettier doesn't treat U+30A0 & U+30FB as Japanese. U+30FB is commonly
used in Japanese to represent the delimitation of first and last names
of non-Japanese people or “and”. The following “C言語・C++・Go・Rust” means
“C language & C++ & Go & Rust” in Japanese.
<!-- prettier-ignore -->
```md
<!-- Input (--prose-wrap=never) -->
C言
語
・
C++
・
Go
・
Rust
<!-- Prettier 3.4.1 -->
C言語・ C++ ・ Go ・ Rust
<!-- Prettier 3.4.2 -->
C言語・C++・Go・Rust
```
U+30A0 can be used as the replacement of the `-` in non-Japanese names
(e.g. “Saint-Saëns” (Charles Camille Saint-Saëns) can be represented as
“サン゠サーンス” in Japanese), but substituted by ASCII hyphen (U+002D) or
U+FF1D (full width hyphen) in many cases (e.g. “サン=サーンス” or “サン=サーンス”).
##### Fix comments print on class methods with decorators
([#​16891](https://redirect.github.com/prettier/prettier/pull/16891)
by [@​fisker](https://redirect.github.com/fisker))
<!-- prettier-ignore -->
```jsx
// Input
class A {
@​decorator
/**
* The method description
*
*/
async method(foo: Foo, bar: Bar) {
console.log(foo);
}
}
// Prettier 3.4.1
class A {
@​decorator
async /**
* The method description
*
*/
method(foo: Foo, bar: Bar) {
console.log(foo);
}
}
// Prettier 3.4.2
class A {
@​decorator
/**
* The method description
*
*/
async method(foo: Foo, bar: Bar) {
console.log(foo);
}
}
```
##### Fix non-idempotent formatting
([#​16899](https://redirect.github.com/prettier/prettier/pull/16899)
by [@​seiyab](https://redirect.github.com/seiyab))
This bug fix is not language-specific. You may see similar change in any
languages. This fixes regression in 3.4.0 so change caused by it should
yield same formatting as 3.3.3.
<!-- prettier-ignore -->
```jsx
// Input
<div>
foo
<span>longlonglonglonglonglonglonglonglonglonglonglonglonglonglongl foo</span>
, abc
</div>;
// Prettier 3.4.1 (first)
<div>
foo
<span>
longlonglonglonglonglonglonglonglonglonglonglonglonglonglongl foo
</span>, abc
</div>;
// Prettier 3.4.1 (second)
<div>
foo
<span>longlonglonglonglonglonglonglonglonglonglonglonglonglonglongl foo</span>
, abc
</div>;
// Prettier 3.4.2
<div>
foo
<span>longlonglonglonglonglonglonglonglonglonglonglonglonglonglongl foo</span>
, abc
</div>;
```
</details>
<details>
<summary>TypeStrong/TypeDoc (typedoc)</summary>
###
[`v0.27.4`](https://redirect.github.com/TypeStrong/TypeDoc/blob/HEAD/CHANGELOG.md#v0274-2024-12-09)
[Compare
Source](https://redirect.github.com/TypeStrong/TypeDoc/compare/v0.27.3...v0.27.4)
##### Features
- API: Introduced new `Converter.EVENT_CREATE_PROJECT` event which fires
when a project is created by the converter,
[#​2800](https://redirect.github.com/TypeStrong/TypeDoc/issues/2800).
##### Bug Fixes
- Switch from gzip to deflate for compressing assets to make output
consistent across different operating systems,
[#​2796](https://redirect.github.com/TypeStrong/TypeDoc/issues/2796).
- `@include` and `@includeCode` now work for comments on the entry point
for projects with a single entry point,
[#​2800](https://redirect.github.com/TypeStrong/TypeDoc/issues/2800).
- Cascaded modifier tags will no longer be copied into type literals,
[#​2802](https://redirect.github.com/TypeStrong/TypeDoc/issues/2802).
- `@summary` now works to describe functions within modules,
[#​2803](https://redirect.github.com/TypeStrong/TypeDoc/issues/2803).
- Corrected navigation showing module link as current when not on module
page,
[#​2805](https://redirect.github.com/TypeStrong/TypeDoc/issues/2805).
###
[`v0.27.3`](https://redirect.github.com/TypeStrong/TypeDoc/blob/HEAD/CHANGELOG.md#v0273-2024-12-04)
[Compare
Source](https://redirect.github.com/TypeStrong/TypeDoc/compare/v0.27.2...v0.27.3)
##### Features
- Added support for PNG favicons,
[#​2790](https://redirect.github.com/TypeStrong/TypeDoc/issues/2790).
- Improved support for hosting TypeDoc with strict Content Security
Policy rules,
[#​2794](https://redirect.github.com/TypeStrong/TypeDoc/issues/2794).
##### Bug Fixes
- Add special handling for import types with type errors discarded with
ts-expect-error,
[#​2792](https://redirect.github.com/TypeStrong/TypeDoc/issues/2792).
- Fixed low contrast in default colors for properties/accessors in light
mode,
[#​2795](https://redirect.github.com/TypeStrong/TypeDoc/issues/2795).
- The `highlightLanguages` option now permits Shiki aliases to be
specified rather than just the language ID,
[#​2798](https://redirect.github.com/TypeStrong/TypeDoc/issues/2798).
##### Thanks!
- [@​mikalai-snap](https://redirect.github.com/mikalai-snap)
- [@​mistic100](https://redirect.github.com/mistic100)
</details>
<details>
<summary>aleclarson/vite-tsconfig-paths (vite-tsconfig-paths)</summary>
###
[`v5.1.4`](https://redirect.github.com/aleclarson/vite-tsconfig-paths/releases/tag/v5.1.4)
[Compare
Source](https://redirect.github.com/aleclarson/vite-tsconfig-paths/compare/v5.1.3...v5.1.4)
- **fix:** correctly infer the `paths` root dir
([`eea1c17`](https://redirect.github.com/aleclarson/vite-tsconfig-paths/commit/eea1c17d0fe4ad6e3f8bc324216bc09173e3c778))
([#​150](https://redirect.github.com/aleclarson/vite-tsconfig-paths/issues/150))
</details>
---
### Configuration
📅 **Schedule**: Branch creation - "* 0-3 * * 1" (UTC), Automerge - At
any time (no schedule defined).
🚦 **Automerge**: Enabled.
♻ **Rebasing**: Whenever PR is behind base branch, or you tick the
rebase/retry checkbox.
👻 **Immortal**: This PR will be recreated if closed unmerged. Get
[config
help](https://redirect.github.com/renovatebot/renovate/discussions) if
that's undesired.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/SAP/ui5-webcomponents-react).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS40Mi40IiwidXBkYXRlZEluVmVyIjoiMzkuNDIuNCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIl19-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>1 parent c0aadbb commit 8a381c3
2 files changed
+23
-23
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
69 | 69 | | |
70 | 70 | | |
71 | 71 | | |
72 | | - | |
| 72 | + | |
73 | 73 | | |
74 | 74 | | |
75 | 75 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
5064 | 5064 | | |
5065 | 5065 | | |
5066 | 5066 | | |
5067 | | - | |
5068 | | - | |
| 5067 | + | |
| 5068 | + | |
5069 | 5069 | | |
5070 | | - | |
5071 | | - | |
| 5070 | + | |
| 5071 | + | |
5072 | 5072 | | |
5073 | 5073 | | |
5074 | 5074 | | |
5075 | | - | |
5076 | | - | |
5077 | | - | |
| 5075 | + | |
| 5076 | + | |
| 5077 | + | |
5078 | 5078 | | |
5079 | 5079 | | |
5080 | 5080 | | |
5081 | | - | |
| 5081 | + | |
5082 | 5082 | | |
5083 | 5083 | | |
5084 | 5084 | | |
| |||
8500 | 8500 | | |
8501 | 8501 | | |
8502 | 8502 | | |
8503 | | - | |
8504 | | - | |
8505 | | - | |
| 8503 | + | |
| 8504 | + | |
| 8505 | + | |
8506 | 8506 | | |
8507 | 8507 | | |
8508 | 8508 | | |
| |||
8549 | 8549 | | |
8550 | 8550 | | |
8551 | 8551 | | |
8552 | | - | |
| 8552 | + | |
8553 | 8553 | | |
8554 | 8554 | | |
8555 | 8555 | | |
| |||
17625 | 17625 | | |
17626 | 17626 | | |
17627 | 17627 | | |
17628 | | - | |
17629 | | - | |
| 17628 | + | |
| 17629 | + | |
17630 | 17630 | | |
17631 | 17631 | | |
17632 | | - | |
| 17632 | + | |
17633 | 17633 | | |
17634 | 17634 | | |
17635 | 17635 | | |
| |||
20732 | 20732 | | |
20733 | 20733 | | |
20734 | 20734 | | |
20735 | | - | |
20736 | | - | |
| 20735 | + | |
| 20736 | + | |
20737 | 20737 | | |
20738 | 20738 | | |
20739 | 20739 | | |
| |||
20744 | 20744 | | |
20745 | 20745 | | |
20746 | 20746 | | |
20747 | | - | |
| 20747 | + | |
20748 | 20748 | | |
20749 | 20749 | | |
20750 | 20750 | | |
| |||
20888 | 20888 | | |
20889 | 20889 | | |
20890 | 20890 | | |
20891 | | - | |
| 20891 | + | |
20892 | 20892 | | |
20893 | 20893 | | |
20894 | 20894 | | |
| |||
21385 | 21385 | | |
21386 | 21386 | | |
21387 | 21387 | | |
21388 | | - | |
21389 | | - | |
| 21388 | + | |
| 21389 | + | |
21390 | 21390 | | |
21391 | 21391 | | |
21392 | 21392 | | |
| |||
21396 | 21396 | | |
21397 | 21397 | | |
21398 | 21398 | | |
21399 | | - | |
| 21399 | + | |
21400 | 21400 | | |
21401 | 21401 | | |
21402 | 21402 | | |
| |||
0 commit comments