Skip to content

chore: update non-major dev-dependencies - #50

Draft
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/non-major-dev-deps
Draft

chore: update non-major dev-dependencies#50
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/non-major-dev-deps

Conversation

@renovate

@renovate renovate Bot commented Oct 6, 2025

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence
@hypermod/utils (source) ^0.4.2^0.7.0 age confidence
prettier (source) 3.8.13.9.6 age confidence

Release Notes

hypermod-io/hypermod-community (@​hypermod/utils)

v0.7.1

Compare Source

Patch Changes
  • 1cfe66f: Bump jscodeshift to fix JSX redundant brackets error

v0.7.0

Compare Source

Minor Changes
  • 68eabcf: Bump CLI to surface changes to App package downloads

v0.6.0

Compare Source

Minor Changes
  • 6baffa1: Bumps jscodeshift to the latest version to surface bug fixes and various improvements. Note: this may inherently change how files are parsed and transformed.

v0.5.0

Compare Source

Minor Changes
  • c17dd18: Require node 20.17 in support of moving from CJS to ESM
prettier/prettier (prettier)

v3.9.6

Compare Source

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[@name];
  color: #theme[@@name];
}

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

// Prettier 3.9.5
.foo {
  color: #theme[primary];
  color: #theme[@name];
  color: #theme[@@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 -->
@switch (state.mode) {
  @default never(state);
}

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

<!-- Prettier 3.9.5 -->
@switch (state.mode) {
  @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 */};

v3.9.4

Compare Source

v3.9.3

Compare Source

v3.9.2

Compare Source

v3.9.1

Compare Source

v3.9.0

Compare Source

diff

🔗 Release Notes

v3.8.5

Compare Source

v3.8.4

Compare Source

diff

Markdown: Fix blank lines between list items and nested sub-lists being removed in Markdown/MDX (#​17746 by @​byplayer)

Prettier was removing blank lines between list items and their nested sub-lists, converting loose lists into tight lists and changing their semantic meaning.

<!-- Input -->
- a

  - b

- c

  - d

<!-- Prettier 3.8.3 -->
- a
  - b
- c
  - d

<!-- Prettier 3.8.4 -->
- a

  - b

- c

  - d

v3.8.3

Compare Source

diff

SCSS: Prevent trailing comma in if() function (#​18471 by @​kovsu)
// Input
$value: if(sass(false): 1; else: -1);

// Prettier 3.8.2
$value: if(
  sass(false): 1; else: -1,
);

// Prettier 3.8.3
$value: if(sass(false): 1; else: -1);

v3.8.2

Compare Source

diff

Angular: Support Angular v21.2 (#​18722, #​19034 by @​fisker)

Exhaustive typechecking with @default never;

<!-- Input -->
@switch (foo) {
  @case (1) {}
  @default never;
}

<!-- Prettier 3.8.1 -->
SyntaxError: Incomplete block "default never". If you meant to write the @ character, you should use the "&#&#8203;64;" HTML entity instead. (3:3)

<!-- Prettier 3.8.2 -->
@switch (foo) {
  @case (1) {}
  @default never;
}

arrow function and instanceof expressions.

<!-- Input -->
@let fn = (a) =>        a?    1:2;

{{ fn ( a         instanceof b)}}

<!-- Prettier 3.8.1 -->
@let fn = (a) =>        a?    1:2;

{{ fn ( a         instanceof b)}}

<!-- Prettier 3.8.2 -->
@let fn = (a) => (a ? 1 : 2);

{{ fn(a instanceof b) }}

Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • 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 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.

@eslintbot eslintbot added this to Triage Oct 6, 2025
@github-project-automation github-project-automation Bot moved this to Needs Triage in Triage Oct 6, 2025
@nzakas nzakas removed this from Triage Oct 14, 2025
@renovate
renovate Bot force-pushed the renovate/non-major-dev-deps branch from 2edde52 to 50d568c Compare October 21, 2025 09:47
@github-actions

Copy link
Copy Markdown
Contributor

Hi everyone, it looks like we lost track of this pull request. Please review and see what the next steps are. This pull request will auto-close in 7 days without an update.

@lumirlumir

Copy link
Copy Markdown
Member

Require node 20.17 in support of moving from CJS to ESM

Since the new version of @hypermod/utils requires Node.js 20.17.0 or newer, I'm marking this as a draft until we drop support for Node.js versions below 20.17.0.

@lumirlumir
lumirlumir marked this pull request as draft November 2, 2025 09:02
@renovate
renovate Bot force-pushed the renovate/non-major-dev-deps branch from 50d568c to d867614 Compare November 11, 2025 01:42
@renovate
renovate Bot force-pushed the renovate/non-major-dev-deps branch from d867614 to b7f1c9e Compare November 19, 2025 00:04
@renovate
renovate Bot force-pushed the renovate/non-major-dev-deps branch from b7f1c9e to 36b2e64 Compare December 3, 2025 17:10
@renovate
renovate Bot force-pushed the renovate/non-major-dev-deps branch from 36b2e64 to 9556b75 Compare December 31, 2025 17:10
@renovate
renovate Bot force-pushed the renovate/non-major-dev-deps branch from 9556b75 to 1a3bca3 Compare January 8, 2026 16:36
@renovate
renovate Bot force-pushed the renovate/non-major-dev-deps branch from 1a3bca3 to fd542ec Compare January 19, 2026 15:47
@renovate
renovate Bot force-pushed the renovate/non-major-dev-deps branch from fd542ec to 706b6ec Compare February 2, 2026 21:44
@renovate
renovate Bot force-pushed the renovate/non-major-dev-deps branch 3 times, most recently from 2b401b9 to d22bd10 Compare February 17, 2026 16:50
@renovate
renovate Bot force-pushed the renovate/non-major-dev-deps branch 2 times, most recently from 13b5282 to 3963220 Compare March 7, 2026 05:40
@renovate
renovate Bot force-pushed the renovate/non-major-dev-deps branch from 3963220 to 474be28 Compare March 13, 2026 17:03
@renovate
renovate Bot force-pushed the renovate/non-major-dev-deps branch 2 times, most recently from 0061341 to f31c9ba Compare April 8, 2026 19:58
@renovate
renovate Bot force-pushed the renovate/non-major-dev-deps branch from 5cd4091 to b520b47 Compare May 19, 2026 10:14
@renovate
renovate Bot force-pushed the renovate/non-major-dev-deps branch 2 times, most recently from cdf927b to 66bf09c Compare June 1, 2026 21:43
@renovate
renovate Bot force-pushed the renovate/non-major-dev-deps branch 3 times, most recently from b428fb6 to cab0e44 Compare June 16, 2026 15:04
@renovate
renovate Bot force-pushed the renovate/non-major-dev-deps branch 2 times, most recently from 3880925 to ce2c98b Compare June 24, 2026 10:39
@renovate
renovate Bot force-pushed the renovate/non-major-dev-deps branch 6 times, most recently from ef5bc44 to 75893fd Compare July 7, 2026 03:40
@renovate
renovate Bot force-pushed the renovate/non-major-dev-deps branch 2 times, most recently from b9dc081 to c0978d5 Compare July 11, 2026 10:11
@renovate
renovate Bot force-pushed the renovate/non-major-dev-deps branch from c0978d5 to 1a8c080 Compare July 16, 2026 17:37
@renovate
renovate Bot force-pushed the renovate/non-major-dev-deps branch 5 times, most recently from 6f58967 to 9d3dd69 Compare August 1, 2026 20:40
@renovate
renovate Bot force-pushed the renovate/non-major-dev-deps branch 4 times, most recently from 00a161b to 063afed Compare August 11, 2026 10:49
@renovate
renovate Bot force-pushed the renovate/non-major-dev-deps branch 2 times, most recently from a102c7f to 79ee4d3 Compare September 1, 2026 13:05
@renovate
renovate Bot force-pushed the renovate/non-major-dev-deps branch from 79ee4d3 to 37eb465 Compare September 9, 2026 17:17
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.

3 participants