Skip to content

Update devDependencies#116

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/devdependencies
Open

Update devDependencies#116
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/devdependencies

Conversation

@renovate

@renovate renovate Bot commented Feb 22, 2026

Copy link
Copy Markdown
Contributor

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
@babel/core (source) 7.28.67.29.7 age confidence
@babel/plugin-transform-typescript (source) 7.28.67.29.7 age confidence
@babel/runtime (source) 7.28.67.29.7 age confidence
@ember/test-helpers 5.4.15.4.3 age confidence
@embroider/compat (source) 3.9.33.9.4 age confidence
@embroider/core (source) 3.5.93.5.10 age confidence
@glint/template 1.7.41.7.8 age confidence
@types/qunit (source) 2.19.132.19.14 age confidence
ember-auto-import (source) 2.12.02.13.1 age confidence
ember-cli-babel 8.2.08.3.1 age confidence
ember-data (source) 5.8.15.8.2 age confidence
ember-modifier 4.2.24.3.0 age confidence
ember-resolver 13.1.113.2.0 age confidence
eslint-plugin-prettier 5.5.55.5.6 age confidence
eslint-plugin-qunit 8.2.58.2.6 age confidence
prettier (source) 3.8.13.9.5 age confidence
qunit (source) 2.25.02.26.0 age confidence
qunit-dom 3.5.03.6.0 age confidence
release-plan ^0.17.4^0.18.0 age confidence
rollup (source) 4.57.04.62.2 age confidence
webpack 5.104.15.108.4 age confidence

Release Notes

babel/babel (@​babel/core)

v7.29.7

Compare Source

v7.29.7 (2026-05-25)

Re-release all packages with npm provenance attestations

v7.29.6

Compare Source

v7.29.6 (2026-05-25)

🐛 Bug Fix
Committers: 3

v7.29.0

Compare Source

v7.29.0 (2026-01-31)

Thanks @​simbahax for your first PR!

🚀 New Feature
🐛 Bug Fix
  • babel-parser
  • babel-traverse
    • #​17708 fix(traverse): provide a hub when traversing a File or Program and no parentPath is given (@​simbahax)
  • babel-plugin-transform-block-scoping, babel-traverse
    • #​17737 [7.x backport] fix: Rename switch discriminant references when body creates shadowing variable (@​magic-akari)
🏃‍♀️ Performance
Committers: 6
emberjs/ember-test-helpers (@​ember/test-helpers)

v5.4.3

Compare Source

🐛 Bug Fix
Committers: 1

v5.4.2

🐛 Bug Fix
  • @ember/test-helpers
🏠 Internal
Committers: 2
typed-ember/glint (@​glint/template)

v1.7.8

🐛 Bug Fix
🏠 Internal
:present: Additional updates
  • @glint/template
    • Type inference error in (component) helper when pre-binding optional union arguments (@​BoussonKarel)
Committers: 5

v1.7.7

🐛 Bug Fix
  • @glint/template
  • @glint/ember-tsc
    • #​1087 Convert intrinsic type tests to .gts, fix modifier element constraint diagnostic (@​johanrd)
  • @glint/ember-tsc, @glint/template
🏠 Internal
Committers: 1

v1.7.6

🐛 Bug Fix
🏠 Internal
Committers: 1

v1.7.5

🐛 Bug Fix
📝 Documentation
🏠 Internal
Committers: 1
embroider-build/ember-auto-import (ember-auto-import)

v2.13.1

  • ember-auto-import 2.13.1 (patch)
🐛 Bug Fix
Committers: 1

v2.13.0

  • ember-auto-import 2.13.0 (minor)
🚀 Enhancement
  • ember-auto-import
🏠 Internal
Committers: 3

v2.12.1

  • ember-auto-import 2.12.1 (patch)
🐛 Bug Fix
  • ember-auto-import
    • #​687 Fix externals tracking for deps with escaped characters (@​ef4)
🏠 Internal
Committers: 2
emberjs/ember-cli-babel (ember-cli-babel)

v8.3.1

  • ember-cli-babel 8.3.1 (patch)
🐛 Bug Fix
Committers: 1
warp-drive-data/warp-drive (ember-data)

v5.8.2

Compare Source

🐛 Bug Fix
Committers: (1)

@​NullVoxPopuli's reduced-access machine account for AI usage (@​NullVoxPopuli-ai-agent)

ember-modifier/ember-modifier (ember-modifier)

v4.3.0

  • ember-modifier 4.3.0 (minor)
🚀 Enhancement
📝 Documentation
Committers: 2
ember-cli/ember-resolver (ember-resolver)

v13.2.0

  • ember-resolver 13.2.0 (minor)
🚀 Enhancement
  • ember-resolver
🏠 Internal
Committers: 1
prettier/eslint-plugin-prettier (eslint-plugin-prettier)

v5.5.6

Compare Source

Patch Changes
platinumazure/eslint-plugin-qunit (eslint-plugin-qunit)

v8.2.6

Compare Source

Bug Fixes
Documentation
Chores
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 */};

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 -->
@&#8203;switch (foo) {
  @&#8203;case (1) {}
  @&#8203;default never;
}

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

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

arrow function and instanceof expressions.

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

{{ fn ( a         instanceof b)}}

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

{{ fn ( a         instanceof b)}}

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

{{ fn(a instanceof b) }}
qunitjs/qunit (qunit)

v2.26.0

Compare Source

==================

Added
  • Assert: Return error value from assert.rejects() and assert.throws(). (Bartosz Dziewoński) #​1824
  • CLI: Add support for --reporter with local script. (Jordan Kasper, Timo Tijhof) #​1823
  • Core: Introduce QUnit.config.ignoreUnhandledRejections. (Timo Tijhof) #​1829
mainmatter/qunit-dom (qunit-dom)

v3.6.0

  • qunit-dom 3.6.0 (minor)
🚀 Enhancement
🏠 Internal
Committers: 2

v3.5.1

qunit-dom 3.5.1 (patch)

🐛 Bug Fix
Committers: 1
release-plan/release-plan (release-plan)

v0.18.0

  • release-plan 0.18.0 (minor)
🚀 Enhancement
🏠 Internal
Committers: 2
rollup/rollup (rollup)

v4.62.2

Compare Source

2026-06-19

Bug Fixes
  • Do not add spurious side-effect-free external imports to chunks when using minChunkSize (#​6411)
Pull Requests

v4.62.1

Compare Source

2026-06-19

Bug Fixes
  • Preserve multipart file extensions when deconflicting output chunks (#​6408)
  • Fix an issue where getLogFilter would match additional logs (#​6415)
Pull Requests

v4.62.0

Compare Source

2026-06-13

Features
  • Ensure that shared dependencies between manual chunks and entry points receive a serparate chunk (#​6374)
Pull Requests

v4.61.1

Compare Source

2026-06-04

Bug Fixes
  • Avoid extraneous newlines when adding headers via plugins (#​6403)
  • Fix a rare issue where starting Rollup would hang on Windows (#​6404)
Pull Requests

v4.61.0

Compare Source

2026-06-01

Features
  • Sort entry modules to make chunk hashes deterministic (#​6391)
Pull Requests

Note

PR body was truncated to here.


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • "after 9pm on sunday"
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Enabled.

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 force-pushed the renovate/devdependencies branch from ecbdd66 to 8af1537 Compare March 1, 2026 21:45
@renovate
renovate Bot force-pushed the renovate/devdependencies branch 4 times, most recently from 96ecd93 to 33be55f Compare March 15, 2026 21:02
@renovate
renovate Bot force-pushed the renovate/devdependencies branch 2 times, most recently from ec3bed3 to 40fb65e Compare March 22, 2026 21:36
@renovate
renovate Bot force-pushed the renovate/devdependencies branch 2 times, most recently from db5227b to 70a963c Compare March 29, 2026 21:38
@renovate
renovate Bot force-pushed the renovate/devdependencies branch from 70a963c to 3d41b9a Compare April 12, 2026 21:10
@renovate renovate Bot changed the title chore(deps): update devdependencies Update devDependencies Apr 12, 2026
@renovate
renovate Bot force-pushed the renovate/devdependencies branch from 3d41b9a to 580eab2 Compare April 12, 2026 21:11
@renovate
renovate Bot force-pushed the renovate/devdependencies branch from 580eab2 to 245e47e Compare April 19, 2026 21:28
@renovate
renovate Bot force-pushed the renovate/devdependencies branch from 245e47e to 90d297f Compare May 10, 2026 21:04
@renovate
renovate Bot force-pushed the renovate/devdependencies branch from 90d297f to cf5c600 Compare May 17, 2026 21:30
@renovate
renovate Bot force-pushed the renovate/devdependencies branch 2 times, most recently from 0b2955c to b4dcab2 Compare June 7, 2026 21:17
@renovate
renovate Bot force-pushed the renovate/devdependencies branch 2 times, most recently from 528a10f to 725d82a Compare June 21, 2026 21:09
@renovate
renovate Bot force-pushed the renovate/devdependencies branch from 725d82a to ad8552e Compare June 28, 2026 21:57
@renovate
renovate Bot force-pushed the renovate/devdependencies branch from ad8552e to 79ae6ee Compare July 19, 2026 22:16
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.

0 participants