Skip to content

chore(deps): update all non-major dependencies#24

Open
open-turo-bot wants to merge 1 commit into
mainfrom
c/renovate_all-minor-patch
Open

chore(deps): update all non-major dependencies#24
open-turo-bot wants to merge 1 commit into
mainfrom
c/renovate_all-minor-patch

Conversation

@open-turo-bot

@open-turo-bot open-turo-bot commented Jul 10, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence
@open-turo/eslint-config-typescript 23.1.6 -> 23.1.12 age confidence
eslint (source) 9.39.4 -> 9.39.5 age confidence
prettier (source) 3.9.4 -> 3.9.5 age confidence

Release Notes

open-turo/eslint-config-typescript (@​open-turo/eslint-config-typescript)

v23.1.12

Compare Source

Bug Fixes

v23.1.11

Compare Source

Bug Fixes
  • deps: update all non-major dependencies (61e02c9)

v23.1.10

Compare Source

Bug Fixes
  • deps: update dependency eslint-plugin-perfectionist to v5.10.0 (30d006c)

v23.1.9

Compare Source

Miscellaneous
  • .github/renovate.json: bump renovate config to try and remove 3 day delay on select deps (34d0f69)
Bug Fixes
  • deps: update all non-major dependencies to v8.63.0 (fec6ab7)

v23.1.8

Compare Source

Bug Fixes

v23.1.7

Compare Source

Miscellaneous
  • .pre-commit-config.yaml: run prettier from script to avoid needing to bump pre-commit version (e30abfa)
  • deps: update all non-major dependencies (310c1e7)
  • deps: update dependency prettier to v3.9.1 (665b1c2)
Bug Fixes
  • deps: update all non-major dependencies (47b27f2)
eslint/eslint (eslint)

v9.39.5

Compare Source

Bug Fixes

Documentation

Chores

  • 458205f chore: update @eslint/eslintrc and @eslint/js for v9.39.5 (#​21077) (Francesco Trotta)
  • 202117b chore: package.json update for @​eslint/js release (Jenkins)
  • d9eb6ed test: disable warning for vm.constants.USE_MAIN_CONTEXT_DEFAULT_LOADER (#​21074) (Francesco Trotta)
  • 7b431a7 chore: override re2 dependency for @metascraper/helpers (#​21068) (Milos Djermanovic)
  • daf7791 chore: pin fflate@​0.8.2 (#​20895) (Milos Djermanovic)
  • daee8ba ci: use pnpm in eslint-flat-config-utils type integration test (#​20829) (Milos Djermanovic)
  • 116d4be ci: unpin Node.js 25.x in CI (#​20619) (Copilot)
prettier/prettier (prettier)

v3.9.5

Compare Source

diff

Markdown: Cap ordered list mark at 999,999,999 (#​19351 by @​tats-u)

CommonMark parsers only support ordered list item numbers up to 999,999,999.

With this change, Prettier now caps the ordered list item number at 999,999,999 to ensure that the output is correctly parsed as an ordered list by CommonMark parsers. Numbers larger than 999,999,999 are not parsed as list item numbers and are left unchanged in the output:

<!-- Input -->
999999998. text
999999998. text
999999998. text
999999998. text

1234567890123456789012) text

<!-- Prettier 3.9.4 -->
999999998. text
999999999. text
1000000000. text
1000000001. text

1234567890123456789012) text

<!-- Prettier 3.9.5 -->
999999998. text
999999999. text
999999999. text
999999999. text

1234567890123456789012) text
Markdown: Avoid corrupting empty link with title (#​19487 by @​andersk)

Do not remove <> from an inline link or image with an empty URL and a title, as this removal would change its interpretation.

<!-- Input -->
[link](<> "title")

<!-- Prettier 3.9.4 -->
[link]( "title")

<!-- Prettier 3.9.5 -->
[link](<> "title")
Less: Remove extra spaces after [ in map lookups (#​19503 by @​kovsu)
// Input
.foo {
  color: #theme[ primary];
  color: #theme[@&#8203;name];
  color: #theme[@&#8203;@&#8203;name];
}

// Prettier 3.9.4
.foo {
  color: #theme[ primary];
  color: #theme[ @&#8203;name];
  color: #theme[ @&#8203;@&#8203;name];
}

// Prettier 3.9.5
.foo {
  color: #theme[primary];
  color: #theme[@&#8203;name];
  color: #theme[@&#8203;@&#8203;name];
}
CSS: Prevent addition space in type() with + (#​19516 by @​bigandy)

This fixes the addition space before + in CSS type() declaration. For example type(<number>+) was being converted into type(<number> +) which is invalid CSS and does not work.

/* Input */
div {
  border-radius: attr(br type(<length>+));
}

/* Prettier 3.9.4 */
div {
  border-radius: attr(br type(<length> +));
}

/* Prettier 3.9.5 */
div {
  border-radius: attr(br type(<length>+));
}
Less: Remove spaces between merge markers and colons (#​19517 by @​kovsu)
// Input
a {
  box-shadow  +  : 0 0 1px #&#8203;000;
}

// Prettier 3.9.4
a {
  box-shadow+  : 0 0 1px #&#8203;000;
}

// Prettier 3.9.5
a {
  box-shadow+: 0 0 1px #&#8203;000;
}
Markdown: Preserve wiki links with aliases (#​19527 by @​kovsu)
<!-- Input -->
[[Foo:Bar]]

<!-- Prettier 3.9.4 -->
[[Foo]]

<!-- Prettier 3.9.5 -->
[[Foo:Bar]]
TypeScript: Fix comments being dropped on shorthand type import/export specifiers (#​19565 by @​kirkwaiblinger)
// Input
export { type /* comment */ T } from "foo";
import { type /* comment */ T } from "foo";

// Prettier 3.9.4
Error: Comment "comment" was not printed. Please report this error!

// Prettier 3.9.5
export { type /* comment */ T } from "foo";
import { type /* comment */ T } from "foo";
Miscellaneous: Preserving comments' placement property (#​19567 by @​Janther)

Prettier@​3.9.0 deleted an undocumented property on comments, which was already used by plugins, comment.placement is now available again after comment attach.

Flow: Stop enforcing empty module declaration to break (#​19568 by @​fisker)
// Input
declare module "foo" {}

// Prettier 3.9.4
declare module "foo" {
}

// Prettier 3.9.5
declare module "foo" {}
Angular: Support expression for exhaustive typechecking (#​19571 by @​fisker)
<!-- Input -->
@&#8203;switch (state.mode) {
  @&#8203;default never(state);
}

<!-- Prettier 3.9.4 -->
@&#8203;switch (state.mode) {
  @&#8203;default never;
}

<!-- Prettier 3.9.5 -->
@&#8203;switch (state.mode) {
  @&#8203;default never(state);
}
TypeScript: Ignore comments inside mapped type when checking type parameter comments (#​19572 by @​fisker)
// Input
foo<{
  // comment
  [key in keyof Foo]: number
}>();

// Prettier 3.9.4
foo<
  {
    // comment
    [key in keyof Foo]: number;
  }
>();

// Prettier 3.9.5
foo<{
  // comment
  [key in keyof Foo]: number;
}>();
Less: Fix adjacent block comments being corrupted (#​19574 by @​kovsu)
// Input
/* a *//* b */
/* a */* {
  color: red;
}

// Prettier 3.9.4
/* a */
/* b */
/* a * {
  color: red;
}

// Prettier 3.9.5
/* a */ /* b */
/* a */
* {
  color: red;
}
JavaScript: Handle dangling comments in SwitchStatement (#​19581 by @​fisker)
// Input
switch (foo) {
 // comment
}

// Prettier 3.9.4
switch (
  foo
  // comment
) {
}

// Prettier 3.9.5
switch (foo) {
  // comment
}
TypeScript: Remove space in comment-only object type (#​19583 by @​fisker)
// Input
var foo = {
  /* comment */
};
type Foo = {
  /* comment */
};

// Prettier 3.9.4
var foo = {/* comment */};
type Foo = { /* comment */ };

// Prettier 3.9.5
var foo = {/* comment */};
type Foo = {/* comment */};

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 is behind base branch, 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 has been generated by Renovate Bot.

@open-turo-bot
open-turo-bot requested a review from a team as a code owner July 10, 2026 02:54
@github-actions

github-actions Bot commented Jul 10, 2026

Copy link
Copy Markdown

Release notes preview

Below is a preview of the release notes if your PR gets merged.


1.2.0 (2026-07-15)

Build System

  • adopt open-turo semantic-release-config npm preset (4d78583)
  • migrate to eslint flat config and rename entrypoint to CJS (3468384)

Miscellaneous

  • add .nvmrc and tidy .gitignore (7c13cdd)
  • deps: update all non-major dependencies (284c2fd)
  • deps: update all non-major dependencies (e09baeb)
  • deps: update dependency open-turo/renovate-config to v1.20.0 (791843d)
  • deps: update node.js to v24.18.0 (628c3d6)
  • deps: update pre-commit hook alessandrojcm/commitlint-pre-commit-hook to v9.26.0 (61c10e9)
  • release: update release 1.1.0 (f59d1d3)
  • release: update release 1.1.0 (684e0d4)

Continuous Integration

  • add renovate config, update-dependencies workflow, and CODEOWNERS (68a4bb7)
  • consolidate release and prerelease into one workflow for npm trusted publishing (6cf4344)
  • modernize pre-commit hook versions (4396208)
  • use open-turo/actions-node for the CI workflow (454f11f)

Features

  • upgrade @commitlint/config-conventional to v21 (5e29b2b)

@open-turo-bot
open-turo-bot force-pushed the c/renovate_all-minor-patch branch from acfe681 to 8b9ea7b Compare July 11, 2026 02:32
@open-turo-bot open-turo-bot changed the title chore(deps): update dependency @open-turo/eslint-config-typescript to v23.1.9 chore(deps): update dependency @open-turo/eslint-config-typescript to v23.1.10 Jul 11, 2026
@open-turo-bot
open-turo-bot force-pushed the c/renovate_all-minor-patch branch from 8b9ea7b to e01dcdf Compare July 12, 2026 02:37
@open-turo-bot open-turo-bot changed the title chore(deps): update dependency @open-turo/eslint-config-typescript to v23.1.10 chore(deps): update all non-major dependencies Jul 12, 2026
@open-turo-bot
open-turo-bot force-pushed the c/renovate_all-minor-patch branch 2 times, most recently from 2ed31cd to 193de01 Compare July 14, 2026 02:23
@open-turo-bot
open-turo-bot force-pushed the c/renovate_all-minor-patch branch from 193de01 to 284c2fd Compare July 15, 2026 02:21
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants