Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Jul 17, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@aptre/common ^0.22.7 -> ^0.24.0 age adoption passing confidence devDependencies minor
actions/checkout v5.0.0 -> v6.0.1 age adoption passing confidence action major
actions/dependency-review-action v4.8.1 -> v4.8.2 age adoption passing confidence action patch
actions/setup-go v6.0.0 -> v6.1.0 age adoption passing confidence action minor
actions/setup-node v6.0.0 -> v6.1.0 age adoption passing confidence action minor
github.com/aperturerobotics/common v0.22.12 -> v0.24.0 age adoption passing confidence require minor
github/codeql-action v4.31.2 -> v4.31.6 age adoption passing confidence action patch
go (source) 1.25.3 -> 1.25.5 age adoption passing confidence toolchain patch
happy-dom 20.0.10 -> 20.0.11 age adoption passing confidence devDependencies patch
prettier (source) 3.6.2 -> 3.7.4 age adoption passing confidence devDependencies minor
rimraf 6.1.0 -> 6.1.2 age adoption passing confidence devDependencies patch
starpc ^0.39.5 -> ^0.41.0 age adoption passing confidence dependencies minor
vitest (source) 4.0.6 -> 4.0.15 age adoption passing confidence devDependencies patch

Release Notes

aperturerobotics/common (@​aptre/common)

v0.24.0

Compare Source

v0.23.0

Compare Source

v0.22.14

Compare Source

v0.22.13

Compare Source

actions/checkout (actions/checkout)

v6.0.1

Compare Source

v6.0.0

Compare Source

v5.0.1

Compare Source

What's Changed

Full Changelog: actions/checkout@v5...v5.0.1

actions/dependency-review-action (actions/dependency-review-action)

v4.8.2

Compare Source

Minor fixes:

actions/setup-go (actions/setup-go)

v6.1.0

Compare Source

What's Changed

Enhancements
Dependency updates

New Contributors

Full Changelog: actions/setup-go@v6...v6.1.0

actions/setup-node (actions/setup-node)

v6.1.0

Compare Source

What's Changed

Enhancement:
Dependency updates:
Documentation update:

Full Changelog: actions/setup-node@v6...v6.1.0

github/codeql-action (github/codeql-action)

v4.31.6

Compare Source

CodeQL Action Changelog

See the releases page 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 for more information.

v4.31.5

Compare Source

CodeQL Action Changelog

See the releases page for the relevant changes to the CodeQL CLI and language packs.

4.31.5 - 24 Nov 2025
  • Update default CodeQL bundle version to 2.23.6. #​3321

See the full CHANGELOG.md for more information.

v4.31.4

Compare Source

CodeQL Action Changelog

See the releases page for the relevant changes to the CodeQL CLI and language packs.

4.31.4 - 18 Nov 2025

No user facing changes.

See the full CHANGELOG.md for more information.

v4.31.3

Compare Source

CodeQL Action Changelog

See the releases page for the relevant changes to the CodeQL CLI and language packs.

4.31.3 - 13 Nov 2025
  • CodeQL Action v3 will be deprecated in December 2026. The Action now logs a warning for customers who are running v3 but could be running v4. For more information, see Upcoming deprecation of CodeQL Action v3.
  • Update default CodeQL bundle version to 2.23.5. #​3288

See the full CHANGELOG.md for more information.

golang/go (go)

v1.25.5

v1.25.4

capricorn86/happy-dom (happy-dom)

v20.0.11

Compare Source

prettier/prettier (prettier)

v3.7.4

Compare Source

diff

LWC: Avoid quote around interpolations (#​18383 by @​kovsu)
<!-- Input -->
<div foo={bar}>   </div>

<!-- Prettier 3.7.3 (--embedded-language-formatting off) -->
<div foo="{bar}"></div>

<!-- Prettier 3.7.4 (--embedded-language-formatting off) -->
<div foo={bar}></div>
TypeScript: Fix comment inside union type gets duplicated (#​18393 by @​fisker)
// Input
type Foo = (/** comment */ a | b) | c;

// Prettier 3.7.3
type Foo = /** comment */ (/** comment */ a | b) | c;

// Prettier 3.7.4
type Foo = /** comment */ (a | b) | c;
TypeScript: Fix unstable comment print in union type comments (#​18395 by @​fisker)
// Input
type X = (A | B) & (
  // comment
  A | B
);

// Prettier 3.7.3 (first format)
type X = (A | B) &
  (// comment
  A | B);

// Prettier 3.7.3 (second format)
type X = (
  | A
  | B // comment
) &
  (A | B);

// Prettier 3.7.4
type X = (A | B) &
  // comment
  (A | B);

v3.7.3

Compare Source

diff

API: Fix prettier.getFileInfo() change that breaks VSCode extension (#​18375 by @​fisker)

An internal refactor accidentally broke the VSCode extension plugin loading.

v3.7.2

Compare Source

diff

JavaScript: Fix string print when switching quotes (#​18351 by @​fisker)
// 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 by @​kovsu)
// 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 by @​fisker)
// Input
export type XXX = {
  // tbd
};

// Prettier 3.7.1
export type XXX = { // tbd };

// Prettier 3.7.2
export type XXX = {
  // tbd
};

v3.7.1

Compare Source

diff

API: Fix performance regression in doc printer (#​18342 by @​fisker)

Prettier 3.7.1 can be very slow when formatting big files, the regression has been fixed.

v3.7.0

Compare Source

diff

🔗 Release Notes

isaacs/rimraf (rimraf)

v6.1.2

Compare Source

v6.1.1

Compare Source

aperturerobotics/starpc (starpc)

v0.41.0

Compare Source

v0.40.1

Compare Source

v0.40.0

Compare Source

vitest-dev/vitest (vitest)

v4.0.15

Compare Source

   🚀 Experimental Features
   🐞 Bug Fixes
    View changes on GitHub

v4.0.14

Compare Source

   🚀 Experimental Features
   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub

v4.0.13

Compare Source

   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub

v4.0.12

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v4.0.11

Compare Source

   🚀 Experimental Features
   🏎 Performance
    View changes on GitHub

v4.0.10

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v4.0.9

Compare Source

   🚀 Experimental Features
   🐞 Bug Fixes
    View changes on GitHub

v4.0.8

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v4.0.7

Compare Source

   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot changed the title fix(deps): update dependency starpc to v0.39.6 fix(deps): update all dependencies Jul 21, 2025
@renovate renovate bot force-pushed the renovate/all branch 4 times, most recently from 3cf879b to f54d8fb Compare July 29, 2025 22:51
@renovate renovate bot force-pushed the renovate/all branch 5 times, most recently from 5e72547 to 6f73f7b Compare August 7, 2025 07:46
@renovate renovate bot changed the title fix(deps): update all dependencies fix(deps): update all dependencies - autoclosed Aug 7, 2025
@renovate renovate bot closed this Aug 7, 2025
@renovate renovate bot deleted the renovate/all branch August 7, 2025 07:48
@renovate renovate bot changed the title fix(deps): update all dependencies - autoclosed fix(deps): update all dependencies Aug 7, 2025
@renovate renovate bot reopened this Aug 7, 2025
@renovate renovate bot changed the title fix(deps): update all dependencies chore(deps): update github/codeql-action action to v3.29.6 Aug 7, 2025
@renovate renovate bot changed the title chore(deps): update github/codeql-action action to v3.29.6 chore(deps): update github/codeql-action action to v3.29.7 Aug 7, 2025
@renovate renovate bot changed the title chore(deps): update github/codeql-action action to v3.29.7 chore(deps): update github/codeql-action action to v3.29.8 Aug 8, 2025
@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from ebb5e9f to cce3199 Compare August 11, 2025 13:50
@renovate renovate bot changed the title chore(deps): update github/codeql-action action to v3.29.8 chore(deps): update all dependencies Aug 11, 2025
@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from 7023c63 to c898fbe Compare August 12, 2025 22:01
@renovate renovate bot changed the title chore(deps): update all dependencies chore(deps): update all dependencies - autoclosed Aug 14, 2025
@renovate renovate bot closed this Aug 14, 2025
@renovate renovate bot changed the title chore(deps): update all dependencies - autoclosed chore(deps): update all dependencies Aug 14, 2025
@renovate renovate bot reopened this Aug 14, 2025
@renovate renovate bot changed the title chore(deps): update dependency vitest to v4.0.7 chore(deps): update all dependencies Nov 5, 2025
@renovate renovate bot force-pushed the renovate/all branch 4 times, most recently from 51f563f to 293aa16 Compare November 12, 2025 23:50
@renovate renovate bot changed the title chore(deps): update all dependencies fix(deps): update all dependencies Nov 12, 2025
@renovate renovate bot force-pushed the renovate/all branch 7 times, most recently from 34d2acc to eb23154 Compare November 20, 2025 04:37
@renovate renovate bot force-pushed the renovate/all branch 8 times, most recently from a2bd450 to efd46ac Compare November 27, 2025 11:40
@renovate renovate bot force-pushed the renovate/all branch 7 times, most recently from c09fc15 to c5506da Compare December 3, 2025 03:41
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Development

Successfully merging this pull request may close these issues.

1 participant