Commit 3bc7d90
authored
chore(deps): update all non-major dependencies (#149)
This PR contains the following updates:
| Package | Type | Update | Change | Pending |
[Age](https://docs.renovatebot.com/merge-confidence/) |
[Confidence](https://docs.renovatebot.com/merge-confidence/) |
|---|---|---|---|---|---|---|
| [actions/checkout](https://redirect.github.com/actions/checkout) |
action | patch | `v6.0.0` -> `v6.0.1` | |

|

|
| [actions/setup-node](https://redirect.github.com/actions/setup-node) |
action | minor | `v6.0.0` -> `v6.1.0` | |

|

|
|
[github/codeql-action](https://redirect.github.com/github/codeql-action)
| action | patch | `v4.31.5` -> `v4.31.7` | |

|

|
| [prettier](https://prettier.io)
([source](https://redirect.github.com/prettier/prettier)) |
devDependencies | minor | [`3.6.2` ->
`3.7.3`](https://renovatebot.com/diffs/npm/prettier/3.6.2/3.7.3) |
`3.7.4` |

|

|
|
[typescript-eslint](https://typescript-eslint.io/packages/typescript-eslint)
([source](https://redirect.github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint))
| devDependencies | minor | [`8.47.0` ->
`8.48.0`](https://renovatebot.com/diffs/npm/typescript-eslint/8.47.0/8.48.0)
| `8.48.1` |

|

|
---
### Release Notes
<details>
<summary>actions/checkout (actions/checkout)</summary>
###
[`v6.0.1`](https://redirect.github.com/actions/checkout/compare/v6.0.0...v6.0.1)
[Compare
Source](https://redirect.github.com/actions/checkout/compare/v6.0.0...v6.0.1)
</details>
<details>
<summary>actions/setup-node (actions/setup-node)</summary>
###
[`v6.1.0`](https://redirect.github.com/actions/setup-node/releases/tag/v6.1.0)
[Compare
Source](https://redirect.github.com/actions/setup-node/compare/v6.0.0...v6.1.0)
#### What's Changed
##### Enhancement:
- Remove always-auth configuration handling by
[@​priyagupta108](https://redirect.github.com/priyagupta108) in
[#​1436](https://redirect.github.com/actions/setup-node/pull/1436)
##### Dependency updates:
- Upgrade
[@​actions/cache](https://redirect.github.com/actions/cache) from
4.0.3 to 4.1.0 by
[@​dependabot](https://redirect.github.com/dependabot)\[bot] in
[#​1384](https://redirect.github.com/actions/setup-node/pull/1384)
- Upgrade actions/checkout from 5 to 6 by
[@​dependabot](https://redirect.github.com/dependabot)\[bot] in
[#​1439](https://redirect.github.com/actions/setup-node/pull/1439)
- Upgrade js-yaml from 3.14.1 to 3.14.2 by
[@​dependabot](https://redirect.github.com/dependabot)\[bot] in
[#​1435](https://redirect.github.com/actions/setup-node/pull/1435)
##### Documentation update:
- Add example for restore-only cache in documentation by
[@​aparnajyothi-y](https://redirect.github.com/aparnajyothi-y) in
[#​1419](https://redirect.github.com/actions/setup-node/pull/1419)
**Full Changelog**:
<actions/setup-node@v6...v6.1.0>
</details>
<details>
<summary>github/codeql-action (github/codeql-action)</summary>
###
[`v4.31.7`](https://redirect.github.com/github/codeql-action/releases/tag/v4.31.7)
[Compare
Source](https://redirect.github.com/github/codeql-action/compare/v4.31.6...v4.31.7)
##### CodeQL Action Changelog
See the [releases
page](https://redirect.github.com/github/codeql-action/releases) for the
relevant changes to the CodeQL CLI and language packs.
##### 4.31.7 - 05 Dec 2025
- Update default CodeQL bundle version to 2.23.7.
[#​3343](https://redirect.github.com/github/codeql-action/pull/3343)
See the full
[CHANGELOG.md](https://redirect.github.com/github/codeql-action/blob/v4.31.7/CHANGELOG.md)
for more information.
###
[`v4.31.6`](https://redirect.github.com/github/codeql-action/releases/tag/v4.31.6)
[Compare
Source](https://redirect.github.com/github/codeql-action/compare/v4.31.5...v4.31.6)
##### CodeQL Action Changelog
See the [releases
page](https://redirect.github.com/github/codeql-action/releases) for the
relevant changes to the CodeQL CLI and language packs.
##### 4.31.6 - 01 Dec 2025
No user facing changes.
See the full
[CHANGELOG.md](https://redirect.github.com/github/codeql-action/blob/v4.31.6/CHANGELOG.md)
for more information.
</details>
<details>
<summary>prettier/prettier (prettier)</summary>
###
[`v3.7.3`](https://redirect.github.com/prettier/prettier/blob/HEAD/CHANGELOG.md#373)
[Compare
Source](https://redirect.github.com/prettier/prettier/compare/3.7.2...3.7.3)
[diff](https://redirect.github.com/prettier/prettier/compare/3.7.2...3.7.3)
##### API: Fix `prettier.getFileInfo()` change that breaks VSCode
extension
([#​18375](https://redirect.github.com/prettier/prettier/pull/18375)
by [@​fisker](https://redirect.github.com/fisker))
An internal refactor accidentally broke the VSCode extension plugin
loading.
###
[`v3.7.2`](https://redirect.github.com/prettier/prettier/blob/HEAD/CHANGELOG.md#372)
[Compare
Source](https://redirect.github.com/prettier/prettier/compare/3.7.1...3.7.2)
[diff](https://redirect.github.com/prettier/prettier/compare/3.7.1...3.7.2)
##### JavaScript: Fix string print when switching quotes
([#​18351](https://redirect.github.com/prettier/prettier/pull/18351)
by [@​fisker](https://redirect.github.com/fisker))
<!-- prettier-ignore -->
```jsx
// Input
console.log("A descriptor\\'s .kind must be \"method\" or \"field\".")
// Prettier 3.7.1
console.log('A descriptor\\'s .kind must be "method" or "field".');
// Prettier 3.7.2
console.log('A descriptor\\\'s .kind must be "method" or "field".');
```
##### JavaScript: Preserve quote for embedded HTML attribute values
([#​18352](https://redirect.github.com/prettier/prettier/pull/18352)
by [@​kovsu](https://redirect.github.com/kovsu))
<!-- prettier-ignore -->
```tsx
// Input
const html = /* HTML */ ` <div class="${styles.banner}"></div> `;
// Prettier 3.7.1
const html = /* HTML */ ` <div class=${styles.banner}></div> `;
// Prettier 3.7.2
const html = /* HTML */ ` <div class="${styles.banner}"></div> `;
```
##### TypeScript: Fix comment in empty type literal
([#​18364](https://redirect.github.com/prettier/prettier/pull/18364)
by [@​fisker](https://redirect.github.com/fisker))
<!-- prettier-ignore -->
```tsx
// Input
export type XXX = {
// tbd
};
// Prettier 3.7.1
export type XXX = { // tbd };
// Prettier 3.7.2
export type XXX = {
// tbd
};
```
###
[`v3.7.1`](https://redirect.github.com/prettier/prettier/blob/HEAD/CHANGELOG.md#371)
[Compare
Source](https://redirect.github.com/prettier/prettier/compare/3.7.0...3.7.1)
[diff](https://redirect.github.com/prettier/prettier/compare/3.7.0...3.7.1)
##### API: Fix performance regression in doc printer
([#​18342](https://redirect.github.com/prettier/prettier/pull/18342)
by [@​fisker](https://redirect.github.com/fisker))
Prettier 3.7.1 can be very slow when formatting big files, the
regression has been fixed.
###
[`v3.7.0`](https://redirect.github.com/prettier/prettier/blob/HEAD/CHANGELOG.md#370)
[Compare
Source](https://redirect.github.com/prettier/prettier/compare/3.6.2...3.7.0)
[diff](https://redirect.github.com/prettier/prettier/compare/3.6.2...3.7.0)
🔗 [Release Notes](https://prettier.io/blog/2025/11/27/3.7.0)
</details>
<details>
<summary>typescript-eslint/typescript-eslint
(typescript-eslint)</summary>
###
[`v8.48.0`](https://redirect.github.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/typescript-eslint/CHANGELOG.md#8480-2025-11-24)
[Compare
Source](https://redirect.github.com/typescript-eslint/typescript-eslint/compare/v8.47.0...v8.48.0)
This was a version bump only for typescript-eslint to align it with
other projects, there were no code changes.
You can read about our [versioning
strategy](https://typescript-eslint.io/users/versioning) and
[releases](https://typescript-eslint.io/users/releases) on our website.
</details>
---
### Configuration
📅 **Schedule**: Branch creation - "on Sunday" (UTC), Automerge - At any
time (no schedule defined).
🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.
♻ **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/8hobbies/commitrack).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi4zMi4yIiwidXBkYXRlZEluVmVyIjoiNDIuMzIuMiIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6W119-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>1 parent 06ff593 commit 3bc7d90
File tree
12 files changed
+286
-921
lines changed- .github/workflows
- packages
- api-server
- common
- updater
12 files changed
+286
-921
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
32 | 32 | | |
33 | 33 | | |
34 | 34 | | |
35 | | - | |
| 35 | + | |
36 | 36 | | |
37 | 37 | | |
38 | | - | |
| 38 | + | |
39 | 39 | | |
40 | 40 | | |
41 | 41 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
29 | 29 | | |
30 | 30 | | |
31 | 31 | | |
32 | | - | |
| 32 | + | |
33 | 33 | | |
34 | 34 | | |
35 | | - | |
| 35 | + | |
36 | 36 | | |
37 | 37 | | |
38 | 38 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
32 | 32 | | |
33 | 33 | | |
34 | 34 | | |
35 | | - | |
| 35 | + | |
36 | 36 | | |
37 | 37 | | |
38 | | - | |
| 38 | + | |
39 | 39 | | |
40 | 40 | | |
41 | 41 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
34 | 34 | | |
35 | 35 | | |
36 | 36 | | |
37 | | - | |
| 37 | + | |
38 | 38 | | |
39 | 39 | | |
40 | 40 | | |
41 | 41 | | |
42 | 42 | | |
43 | | - | |
| 43 | + | |
44 | 44 | | |
45 | 45 | | |
46 | 46 | | |
| |||
55 | 55 | | |
56 | 56 | | |
57 | 57 | | |
58 | | - | |
| 58 | + | |
59 | 59 | | |
60 | 60 | | |
61 | 61 | | |
62 | 62 | | |
63 | 63 | | |
64 | | - | |
| 64 | + | |
65 | 65 | | |
66 | 66 | | |
67 | 67 | | |
0 commit comments