Skip to content

Conversation

@angular-robot
Copy link
Contributor

@angular-robot angular-robot commented Aug 28, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
jasmine-core (source) ~5.7.0~5.13.0 age adoption passing confidence
karma-jasmine-html-reporter ~2.1.0~2.2.0 age adoption passing confidence
prettier (source) 3.6.23.8.1 age adoption passing confidence
zone.js (source, changelog) ~0.15.0~0.16.0 age adoption passing confidence

Release Notes

jasmine/jasmine (jasmine-core)

v5.13.0

Compare Source

Please see the release notes.

v5.12.1

Compare Source

Please see the release notes.

v5.12.0

Compare Source

Please see the release notes.

v5.11.0

Compare Source

Please see the release notes.

v5.10.0

Compare Source

Please see the release notes.

v5.9.0

Compare Source

Please see the release notes.

v5.8.0

Compare Source

Please see the release notes.

dfederm/karma-jasmine-html-reporter (karma-jasmine-html-reporter)

v2.2.0

Compare Source

  • Add support for Jasmine 6

Full Changelog: dfederm/karma-jasmine-html-reporter@v2.1.0...v2.2.0

prettier/prettier (prettier)

v3.8.1

Compare Source

diff

Include available printers in plugin type declarations (#​18706 by @​porada)
// Input
import * as prettierPluginEstree from "prettier/plugins/estree";

// Prettier 3.8.0
// Property 'printers' does not exist on type 'typeof import("prettier/plugins/estree")'. ts(2339)
prettierPluginEstree.printers.estree; //=> any

// Prettier 3.8.1
prettierPluginEstree.printers.estree; //=> Printer
prettierPluginEstree.printers["estree-json"]; //=> Printer

v3.8.0

Compare Source

diff

🔗 Release Notes

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.0 can be very slow when formatting big files, the regression has been fixed.

v3.7.0

Compare Source

diff

🔗 Release Notes

angular/angular (zone.js)

v0.16.0

Compare Source

BREAKING CHANGE
  • IE/Non-Chromium Edge are not supported anymore.

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

@angular-robot angular-robot force-pushed the ng-renovate/all-non-major-dependencies branch from a4045b5 to d567804 Compare August 30, 2025 21:03
@angular-robot angular-robot changed the title build: update dependency jasmine-core to ~5.9.0 build: update dependency jasmine-core to ~5.10.0 Aug 30, 2025
@angular-robot angular-robot force-pushed the ng-renovate/all-non-major-dependencies branch from d567804 to c96848a Compare September 17, 2025 14:35
@angular-robot angular-robot force-pushed the ng-renovate/all-non-major-dependencies branch from c96848a to d4913d2 Compare September 28, 2025 00:13
@angular-robot angular-robot changed the title build: update dependency jasmine-core to ~5.10.0 build: update dependency jasmine-core to ~5.11.0 Sep 28, 2025
@angular-robot angular-robot force-pushed the ng-renovate/all-non-major-dependencies branch from d4913d2 to 0c06ea4 Compare October 6, 2025 19:32
@angular-robot angular-robot changed the title build: update dependency jasmine-core to ~5.11.0 build: update dependency jasmine-core to ~5.12.0 Oct 6, 2025
@angular-robot angular-robot force-pushed the ng-renovate/all-non-major-dependencies branch from 0c06ea4 to f9685f9 Compare November 20, 2025 21:03
@angular-robot angular-robot changed the title build: update dependency jasmine-core to ~5.12.0 build: update all non-major dependencies Nov 20, 2025
@angular-robot angular-robot force-pushed the ng-renovate/all-non-major-dependencies branch 6 times, most recently from fa2f8ed to 8191d42 Compare November 30, 2025 18:04
@angular-robot angular-robot force-pushed the ng-renovate/all-non-major-dependencies branch 2 times, most recently from 69b79d5 to f2cbb80 Compare December 4, 2025 04:41
@angular-robot angular-robot force-pushed the ng-renovate/all-non-major-dependencies branch from f2cbb80 to 98f6e53 Compare January 16, 2026 00:14
@angular-robot
Copy link
Contributor Author

angular-robot commented Jan 16, 2026

⚠️ Artifact update problem

Renovate failed to update artifacts related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: package.json
Command failed: /bin/sh -c bazel mod deps --lockfile_mode=update
2026/01/28 23:05:57 Downloading https://releases.bazel.build/9.0.0/release/bazel-9.0.0-linux-x86_64...
WARNING: Invoking Bazel in batch mode since it is not invoked from within a workspace (below a directory having a MODULE.bazel file).
Extracting Bazel installation...
OpenJDK 64-Bit Server VM warning: Options -Xverify:none and -noverify were deprecated in JDK 13 and will likely be removed in a future release.
ERROR: The 'mod' command is only supported from within a workspace (below a directory having a MODULE.bazel file).
See documentation at https://bazel.build/concepts/build-ref#workspace

File name: package.json
Command failed: /bin/sh -c bazel mod deps --lockfile_mode=update
WARNING: Invoking Bazel in batch mode since it is not invoked from within a workspace (below a directory having a MODULE.bazel file).
OpenJDK 64-Bit Server VM warning: Options -Xverify:none and -noverify were deprecated in JDK 13 and will likely be removed in a future release.
ERROR: The 'mod' command is only supported from within a workspace (below a directory having a MODULE.bazel file).
See documentation at https://bazel.build/concepts/build-ref#workspace

File name: package.json
Command failed: /bin/sh -c bazel mod deps --lockfile_mode=update
WARNING: Invoking Bazel in batch mode since it is not invoked from within a workspace (below a directory having a MODULE.bazel file).
OpenJDK 64-Bit Server VM warning: Options -Xverify:none and -noverify were deprecated in JDK 13 and will likely be removed in a future release.
ERROR: The 'mod' command is only supported from within a workspace (below a directory having a MODULE.bazel file).
See documentation at https://bazel.build/concepts/build-ref#workspace

File name: package.json
Command failed: /bin/sh -c bazel mod deps --lockfile_mode=update
WARNING: Invoking Bazel in batch mode since it is not invoked from within a workspace (below a directory having a MODULE.bazel file).
OpenJDK 64-Bit Server VM warning: Options -Xverify:none and -noverify were deprecated in JDK 13 and will likely be removed in a future release.
ERROR: The 'mod' command is only supported from within a workspace (below a directory having a MODULE.bazel file).
See documentation at https://bazel.build/concepts/build-ref#workspace

@angular-robot angular-robot force-pushed the ng-renovate/all-non-major-dependencies branch from 98f6e53 to 45a601f Compare January 22, 2026 18:05
See associated pull request for more information.
@angular-robot angular-robot force-pushed the ng-renovate/all-non-major-dependencies branch from 45a601f to b2746a6 Compare January 28, 2026 23:06
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant