[PR #2] [CLOSED] Bump the dependencies group across 3 directories with 8 updates #79

Closed
opened 2026-06-08 08:28:26 +00:00 by ryangr0 · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/webgrip/backstage-application/pull/2
Author: @dependabot[bot]
Created: 11/20/2024
Status: Closed

Base: mainHead: dependabot/npm_and_yarn/backstage/dependencies-3b6480ea4a


📝 Commits (1)

  • bc8937b Bump the dependencies group across 3 directories with 8 updates

📊 Changes

4 files changed (+68 additions, -155 deletions)

View changed files

📝 backstage/package.json (+3 -3)
📝 backstage/packages/app/package.json (+2 -2)
📝 backstage/packages/backend/package.json (+1 -1)
📝 backstage/yarn.lock (+62 -149)

📄 Description

Bumps the dependencies group with 8 updates in the /backstage directory:

Package From To
@spotify/prettier-config 12.0.0 15.0.0
prettier 2.8.8 3.3.3
typescript 5.4.5 5.6.3
@backstage-community/plugin-sentry 1.0.2 1.0.3
@testing-library/dom 9.3.4 10.4.0
@testing-library/react 14.3.1 16.0.1
@backstage-community/plugin-github-actions 0.6.24 0.6.25
better-sqlite3 9.6.0 11.5.0

Bumps the dependencies group with 2 updates in the /backstage/packages/app directory: @testing-library/dom and @testing-library/react.
Bumps the dependencies group with 1 update in the /backstage/packages/backend directory: better-sqlite3.

Updates @spotify/prettier-config from 12.0.0 to 15.0.0

Release notes

Sourced from @​spotify/prettier-config's releases.

v15.0.0

15.0.0 (2023-05-18)

chore

  • deps: upgrade dependencies (ef060c7)
  • node: upgrade required Node version to 18 (9528841)

BREAKING CHANGES

  • node: Node bump from v14 to v18
  • deps: TypeScript bump from v4 to v5, Jest bump from v28 to v29

v14.1.6

14.1.6 (2023-02-14)

Bug Fixes

v14.1.5

14.1.5 (2023-01-30)

Bug Fixes

v14.1.4

14.1.4 (2023-01-19)

Bug Fixes

v14.1.3

14.1.3 (2022-12-07)

Bug Fixes

v14.1.2

14.1.2 (2022-12-02)

... (truncated)

Changelog

Sourced from @​spotify/prettier-config's changelog.

15.0.0 (2023-05-18)

chore

  • deps: upgrade dependencies (ef060c7)
  • node: upgrade required Node version to 18 (9528841)

BREAKING CHANGES

  • node: Node bump from v14 to v18
  • deps: TypeScript bump from v4 to v5, Jest bump from v28 to v29

14.1.6 (2023-02-14)

Bug Fixes

14.1.5 (2023-01-30)

Bug Fixes

14.1.4 (2023-01-19)

Bug Fixes

14.1.3 (2022-12-07)

Bug Fixes

14.1.2 (2022-12-02)

Bug Fixes

  • web-scripts: security vulnerability in glob (a278f21)

14.1.1 (2022-11-25)

Bug Fixes

  • precommit: add in --passWithNoTests flag to enable precommit hook to succeed with no tests (67cba2a), closes #1020

14.1.0 (2022-08-08)

... (truncated)

Commits
  • 6d8c063 v15.0.0
  • 6519dca Merge pull request #1128 from nlebrun-spotify/upgrade-dependencies
  • 9528841 chore(node): upgrade required Node version to 18
  • ef060c7 chore(deps): upgrade dependencies
  • cfb9c66 v14.1.6
  • 7b2160e Merge pull request #1105 from spotify/cut-new-release
  • 5c7d2ed fix: update dependencies
  • a31d65c Merge pull request #1100 from spotify/dependabot/npm_and_yarn/commitizen-4.3.0
  • 07db5cf Merge pull request #1103 from spotify/dependabot/npm_and_yarn/http-cache-sema...
  • 7925f32 Create catalog-info.yaml
  • Additional commits viewable in compare view

Updates prettier from 2.8.8 to 3.3.3

Release notes

Sourced from prettier's releases.

3.3.3

🔗 Changelog

3.3.2

🔗 Changelog

3.3.1

🔗 Changelog

3.3.0

diff

🔗 Release note

3.2.5

🔗 Changelog

3.2.4

  • Fix .eslintrc.json format #15947

🔗 Changelog

3.2.3

  • Format tsconfig.json file with jsonc parser #15927

🔗 Changelog

3.2.2

🔗 Changelog

3.2.1

🔗 Changelog

3.2.0

diff

🔗 Release note

3.1.1

🔗 Changelog

3.1.0

diff

🔗 Release note

3.0.3

🔗 Changelog

3.0.2

... (truncated)

Changelog

Sourced from prettier's changelog.

3.3.3

diff

Add parentheses for nullish coalescing in ternary (#16391 by @​cdignam-segment)

This change adds clarity to operator precedence.

// Input
foo ? bar ?? foo : baz;
foo ?? bar ? a : b;
a ? b : foo ?? bar;

// Prettier 3.3.2
foo ? bar ?? foo : baz;
foo ?? bar ? a : b;
a ? b : foo ?? bar;

// Prettier 3.3.3
foo ? (bar ?? foo) : baz;
(foo ?? bar) ? a : b;
a ? b : (foo ?? bar);

Add parentheses for decorator expressions (#16458 by @​y-schneider)

Prevent parentheses around member expressions or tagged template literals from being removed to follow the stricter parsing rules of TypeScript 5.5.

// Input
@(foo`tagged template`)
class X {}

// Prettier 3.3.2
@​footagged template
class X {}

// Prettier 3.3.3
@(footagged template)
class X {}

Support @let declaration syntax (#16474 by @​sosukesuzuki)

Adds support for Angular v18 @let declaration syntax.

Please see the following code example. The @let declaration allows you to define local variables within the template:

... (truncated)

Commits

Updates typescript from 5.4.5 to 5.6.3

Release notes

Sourced from typescript's releases.

TypeScript 5.6.3

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

TypeScript 5.6

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

TypeScript 5.6 RC

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

TypeScript 5.6 Beta

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

... (truncated)

Commits
  • d48a5cf Bump version to 5.6.3 and LKG
  • fefa70a 🤖 Pick PR #60083 (Don't issue implicit any when obtai...) into release-5.6 (#...
  • ff71692 [release-5.6] Remove tsbuildInfo specification error now that we need it for ...
  • 1f44dcf 🤖 Pick PR #60157 (fix automatic type acquisition) into release-5.6 (#60169)
  • a7e3374 Bump version to 5.6.2 and LKG
  • 2063357 🤖 Pick PR #59708 (LEGO: Pull request from lego/hb_537...) into release-5.6 (#...
  • 4fe7e41 🤖 Pick PR #59670 (fix(59649): ts Move to a new file d...) into release-5.6 (#...
  • 1a03e53 🤖 Pick PR #59761 (this can be nullish) into release-5.6 (#59762)
  • 6212132 Update LKG
  • bbb5faf 🤖 Pick PR #59542 (Fixing delay caused in vscode due t...) into release-5.6 (#...
  • Additional commits viewable in compare view

Updates @backstage-community/plugin-sentry from 1.0.2 to 1.0.3

Changelog

Sourced from @​backstage-community/plugin-sentry's changelog.

1.0.3

Patch Changes

  • e657f8d: Add default filtering based on required annotation to the new frontend system components
Commits

Updates @testing-library/dom from 9.3.4 to 10.4.0

Release notes

Sourced from @​testing-library/dom's releases.

v10.4.0

10.4.0 (2024-07-22)

Features

  • Reduce caught exceptions in prettyDom (reland) (#1323) (a86c54c)

v10.3.2

10.3.2 (2024-07-15)

Bug Fixes

v10.3.1

10.3.1 (2024-07-05)

Bug Fixes

v10.3.0

10.3.0 (2024-07-02)

Features

v10.2.0

10.2.0 (2024-06-24)

Features

  • Support anonymous custom elements when pretty printing DOM (#1319) (0a8ad65)

v10.1.0

10.1.0 (2024-04-29)

Features

  • Add window events "pagehide" / "pageshow" (#1308) (56543d5)

v10.0.0

10.0.0 (2024-04-08)

... (truncated)

Commits

Updates @testing-library/react from 14.3.1 to 16.0.1

Release notes

Sourced from @​testing-library/react's releases.

v16.0.1

16.0.1 (2024-08-29)

Bug Fixes

  • Add support for exactOptionalPropertyTypes in TypeScript (#1351) (3dcd8a9)

v16.0.0

16.0.0 (2024-06-03)

Features

  • Move @testing-library/dom and @types/react-dom to peer dependencies (#1305) (a4744fa)

BREAKING CHANGES

  • @testing-library/dom was moved to a peer dependency and needs to be explicitly installed. This reduces the chance of having conflicting versions of @testing-library/dom installed that frequently caused bugs when used with @testing-library/user-event. We will also be able to allow new versions of @testing-library/dom being used without a SemVer major release of @testing-library/react by just widening the peer dependency. @types/react-dom needs to be installed if you're typechecking files using @testing-library/react.

v15.0.7

15.0.7 (2024-05-07)

Bug Fixes

  • Ensure act is not any when React.act is not declared (#1323) (c1f2957)

v15.0.6

15.0.6 (2024-05-01)

Bug Fixes

v15.0.5

15.0.5 (2024-04-26)

Bug Fixes

  • Stop restricting container option based on hydrate (#1313) (d143f46)

v15.0.4

... (truncated)

Commits
  • 3dcd8a9 fix: Add support for exactOptionalPropertyTypes in TypeScript (#1351)
  • 7a28fa9 Fix React Canary and Experimental tests (#1353)
  • a4744fa feat: Move @testing-library/dom and @types/react-dom to peer dependencie...
  • c1f2957 fix: Ensure act is not any when React.act is not declared (#1323)
  • b6e59f7 fix: export new act when available (#1319)
  • f6a1677 chore: Adjust tests to workaround 18.3.0 bug (#1315)
  • d143f46 fix: Stop restricting container option based on hydrate (#1313)
  • 48282c2 fix: Ensure renderHook options extend options for render (#1308)
  • 067d0c6 fix: Don't raise TypeScript errors when hydating document (#1304)
  • c63b873 fix: Improve legacyRoot error message (#1301)
  • Additional commits viewable in compare view

Updates @backstage-community/plugin-github-actions from 0.6.24 to 0.6.25

Changelog

Sourced from @​backstage-community/plugin-github-actions's changelog.

0.6.25

Patch Changes

  • e657f8d: Add default filtering based on required annotation to the new frontend system components
Commits

Updates better-sqlite3 from 9.6.0 to 11.5.0

Release notes

Sourced from better-sqlite3's releases.

v11.5.0

What's Changed

Full Changelog: https://github.com/WiseLibs/better-sqlite3/compare/v11.4.0...v11.5.0

v11.4.0

What's Changed

New Contributors

Full Changelog: https://github.com/WiseLibs/better-sqlite3/compare/v11.3.0...v11.4.0

v11.3.0

What's Changed

Full Changelog: https://github.com/WiseLibs/better-sqlite3/compare/v11.2.1...v11.3.0

v11.2.1

What's Changed

Full Changelog: https://github.com/WiseLibs/better-sqlite3/compare/v11.2.0...v11.2.1

v11.2.0

What's Changed

New Contributors

Full Changelog: https://github.com/WiseLibs/better-sqlite3/compare/v11.1.2...v11.2.0

v11.1.2

What's Changed

New Contributors

Full Changelog: https://github.com/WiseLibs/better-sqlite3/compare/v11.1.1...v11.1.2

... (truncated)

Commits

Updates @testing-library/dom from 9.3.4 to 10.4.0

Release notes

Sourced from @​testing-library/dom's releases.

v10.4.0

10.4.0 (2024-07-22)

Features

  • Reduce caught exceptions in prettyDom (reland) (#1323) (a86c54c)

v10.3.2

10.3.2 (2024-07-15)

Bug Fixes

v10.3.1

10.3.1 (2024-07-05)

Bug Fixes

v10.3.0

10.3.0 (2024-07-02)

Features

v10.2.0

10.2.0 (2024-06-24)

Features

  • Support anonymous custom elements when pretty printing DOM (#1319) (0a8ad65)

v10.1.0

10.1.0 (2024-04-29)

Features

  • Add window events "pagehide" / "pageshow" (#1308) (56543d5)

v10.0.0

10.0.0 (2024-04-08)

... (truncated)

Commits

Updates @testing-library/react from 14.3.1 to 16.0.1

Release notes

Sourced from @​testing-library/react's releases.

v16.0.1

16.0.1 (2024-08-29)

Bug Fixes

  • Add support for exactOptionalPropertyTypes in TypeScript (#1351) (3dcd8a9)

v16.0.0

16.0.0 (2024-06-03)

Features

  • Move @testing-library/dom and @types/react-dom to peer dependencies (#1305) (a4744fa)

BREAKING CHANGES

  • @testing-library/dom was moved to a peer dependency and needs to be explicitly installed. This reduces the chance of having conflicting versions of @testing-library/dom installed that frequently caused bugs when used with @testing-library/user-event. We will also be able to allow new versions of @testing-library/dom being used without a SemVer major release of @testing-library/react by just widening the peer dependency. @types/react-dom needs to be installed if you're typechecking files using @testing-library/react.

v15.0.7

15.0.7 (2024-05-07)

Bug Fixes

  • Ensure act is not any when React.act is not declared (#1323) (c1f2957)

v15.0.6

15.0.6 (2024-05-01)

Bug Fixes

v15.0.5

15.0.5 (2024-04-26)

Bug Fixes

  • Stop restricting container option based on hydrate (#1313) (d143f46)

v15.0.4

... (truncated)

Commits
  • 3dcd8a9 fix: Add support for exactOptionalPropertyTypes in TypeScript (#1351)
  • 7a28fa9 Fix React Canary and Experimental tests (#1353)
  • a4744fa feat: Move @testing-library/dom and @types/react-dom to peer dependencie...
  • c1f2957 fix: Ensure act is not any when React.act is not declared (#1323)
  • b6e59f7 fix: export new act when available (#1319)
  • f6a1677 chore: Adjust tests to workaround 18.3.0 bug (#1315)
  • d143f46 fix: Stop restricting container option based on hydrate (#1313)
  • 48282c2 fix: Ensure renderHook options extend options for render (#1308)
  • 067d0c6 fix: Don't raise TypeScript errors when hydating document (#1304)
  • c63b873 fix: Improve legacyRoot error message (#1301)
  • Additional commits viewable in compare view

Updates better-sqlite3 from 9.6.0 to 11.5.0

Release notes

Sourced from better-sqlite3's releases.

v11.5.0

What's Changed

Full Changelog: https://github.com/WiseLibs/better-sqlite3/compare/v11.4.0...v11.5.0

v11.4.0

What's Changed

New Contributors

Full Changelog: https://github.com/WiseLibs/better-sqlite3/compare/v11.3.0...v11.4.0

v11.3.0

What's Changed

Full Changelog: https://github.com/WiseLibs/better-sqlite3/compare/v11.2.1...v11.3.0

v11.2.1

What's Changed

Full Changelog: https://github.com/WiseLibs/better-sqlite3/compare/v11.2.0...v11.2.1

v11.2.0

What's Changed

New Contributors

Full Changelog: https://github.com/WiseLibs/better-sqlite3/compare/v11.1.2...v11.2.0

v11.1.2

What's Changed

New Contributors

Full Changelog: https://github.com/WiseLibs/better-sqlite3/compare/v11.1.1...v11.1.2

... (truncated)

Commits

Dependabot will resolve any conflicts with this PR as long as you don't ...

Description has been truncated


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/webgrip/backstage-application/pull/2 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 11/20/2024 **Status:** ❌ Closed **Base:** `main` ← **Head:** `dependabot/npm_and_yarn/backstage/dependencies-3b6480ea4a` --- ### 📝 Commits (1) - [`bc8937b`](https://github.com/webgrip/backstage-application/commit/bc8937b59e5a612757d60c5b28f5227700f75ae7) Bump the dependencies group across 3 directories with 8 updates ### 📊 Changes **4 files changed** (+68 additions, -155 deletions) <details> <summary>View changed files</summary> 📝 `backstage/package.json` (+3 -3) 📝 `backstage/packages/app/package.json` (+2 -2) 📝 `backstage/packages/backend/package.json` (+1 -1) 📝 `backstage/yarn.lock` (+62 -149) </details> ### 📄 Description Bumps the dependencies group with 8 updates in the /backstage directory: | Package | From | To | | --- | --- | --- | | [@spotify/prettier-config](https://github.com/spotify/web-scripts) | `12.0.0` | `15.0.0` | | [prettier](https://github.com/prettier/prettier) | `2.8.8` | `3.3.3` | | [typescript](https://github.com/microsoft/TypeScript) | `5.4.5` | `5.6.3` | | [@backstage-community/plugin-sentry](https://github.com/backstage/community-plugins/tree/HEAD/workspaces/sentry/plugins/sentry) | `1.0.2` | `1.0.3` | | [@testing-library/dom](https://github.com/testing-library/dom-testing-library) | `9.3.4` | `10.4.0` | | [@testing-library/react](https://github.com/testing-library/react-testing-library) | `14.3.1` | `16.0.1` | | [@backstage-community/plugin-github-actions](https://github.com/backstage/community-plugins/tree/HEAD/workspaces/github-actions/plugins/github-actions) | `0.6.24` | `0.6.25` | | [better-sqlite3](https://github.com/WiseLibs/better-sqlite3) | `9.6.0` | `11.5.0` | Bumps the dependencies group with 2 updates in the /backstage/packages/app directory: [@testing-library/dom](https://github.com/testing-library/dom-testing-library) and [@testing-library/react](https://github.com/testing-library/react-testing-library). Bumps the dependencies group with 1 update in the /backstage/packages/backend directory: [better-sqlite3](https://github.com/WiseLibs/better-sqlite3). Updates `@spotify/prettier-config` from 12.0.0 to 15.0.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/spotify/web-scripts/releases"><code>@​spotify/prettier-config</code>'s releases</a>.</em></p> <blockquote> <h2>v15.0.0</h2> <h1><a href="https://github.com/spotify/web-scripts/compare/v14.1.6...v15.0.0">15.0.0</a> (2023-05-18)</h1> <h3>chore</h3> <ul> <li><strong>deps:</strong> upgrade dependencies (<a href="https://github.com/spotify/web-scripts/commit/ef060c7da531060cc1d0f0fb60d3df8f355e418e">ef060c7</a>)</li> <li><strong>node:</strong> upgrade required Node version to 18 (<a href="https://github.com/spotify/web-scripts/commit/952884179ba7378440599b8acb109a98500535ee">9528841</a>)</li> </ul> <h3>BREAKING CHANGES</h3> <ul> <li><strong>node:</strong> Node bump from v14 to v18</li> <li><strong>deps:</strong> TypeScript bump from v4 to v5, Jest bump from v28 to v29</li> </ul> <h2>v14.1.6</h2> <h2><a href="https://github.com/spotify/web-scripts/compare/v14.1.5...v14.1.6">14.1.6</a> (2023-02-14)</h2> <h3>Bug Fixes</h3> <ul> <li>update dependencies (<a href="https://github.com/spotify/web-scripts/commit/5c7d2ed00ade2a993bc161972c119bd640e49f34">5c7d2ed</a>)</li> </ul> <h2>v14.1.5</h2> <h2><a href="https://github.com/spotify/web-scripts/compare/v14.1.4...v14.1.5">14.1.5</a> (2023-01-30)</h2> <h3>Bug Fixes</h3> <ul> <li>update dependencies (<a href="https://github.com/spotify/web-scripts/commit/32226e3c918d221ddb101c74745b8cd7609d89f8">32226e3</a>)</li> </ul> <h2>v14.1.4</h2> <h2><a href="https://github.com/spotify/web-scripts/compare/v14.1.3...v14.1.4">14.1.4</a> (2023-01-19)</h2> <h3>Bug Fixes</h3> <ul> <li>update dependencies (<a href="https://github.com/spotify/web-scripts/commit/ecac663fb5f7b6baac90b4f7ec55b9a889b2fd08">ecac663</a>)</li> </ul> <h2>v14.1.3</h2> <h2><a href="https://github.com/spotify/web-scripts/compare/v14.1.2...v14.1.3">14.1.3</a> (2022-12-07)</h2> <h3>Bug Fixes</h3> <ul> <li>dependency updates (<a href="https://github.com/spotify/web-scripts/commit/98dcee7f4b5f98ed20781e688338bd5f5c81227b">98dcee7</a>)</li> </ul> <h2>v14.1.2</h2> <h2><a href="https://github.com/spotify/web-scripts/compare/v14.1.1...v14.1.2">14.1.2</a> (2022-12-02)</h2> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/spotify/web-scripts/blob/master/CHANGELOG.md"><code>@​spotify/prettier-config</code>'s changelog</a>.</em></p> <blockquote> <h1><a href="https://github.com/spotify/web-scripts/compare/v14.1.6...v15.0.0">15.0.0</a> (2023-05-18)</h1> <h3>chore</h3> <ul> <li><strong>deps:</strong> upgrade dependencies (<a href="https://github.com/spotify/web-scripts/commit/ef060c7da531060cc1d0f0fb60d3df8f355e418e">ef060c7</a>)</li> <li><strong>node:</strong> upgrade required Node version to 18 (<a href="https://github.com/spotify/web-scripts/commit/952884179ba7378440599b8acb109a98500535ee">9528841</a>)</li> </ul> <h3>BREAKING CHANGES</h3> <ul> <li><strong>node:</strong> Node bump from v14 to v18</li> <li><strong>deps:</strong> TypeScript bump from v4 to v5, Jest bump from v28 to v29</li> </ul> <h2><a href="https://github.com/spotify/web-scripts/compare/v14.1.5...v14.1.6">14.1.6</a> (2023-02-14)</h2> <h3>Bug Fixes</h3> <ul> <li>update dependencies (<a href="https://github.com/spotify/web-scripts/commit/5c7d2ed00ade2a993bc161972c119bd640e49f34">5c7d2ed</a>)</li> </ul> <h2><a href="https://github.com/spotify/web-scripts/compare/v14.1.4...v14.1.5">14.1.5</a> (2023-01-30)</h2> <h3>Bug Fixes</h3> <ul> <li>update dependencies (<a href="https://github.com/spotify/web-scripts/commit/32226e3c918d221ddb101c74745b8cd7609d89f8">32226e3</a>)</li> </ul> <h2><a href="https://github.com/spotify/web-scripts/compare/v14.1.3...v14.1.4">14.1.4</a> (2023-01-19)</h2> <h3>Bug Fixes</h3> <ul> <li>update dependencies (<a href="https://github.com/spotify/web-scripts/commit/ecac663fb5f7b6baac90b4f7ec55b9a889b2fd08">ecac663</a>)</li> </ul> <h2><a href="https://github.com/spotify/web-scripts/compare/v14.1.2...v14.1.3">14.1.3</a> (2022-12-07)</h2> <h3>Bug Fixes</h3> <ul> <li>dependency updates (<a href="https://github.com/spotify/web-scripts/commit/98dcee7f4b5f98ed20781e688338bd5f5c81227b">98dcee7</a>)</li> </ul> <h2><a href="https://github.com/spotify/web-scripts/compare/v14.1.1...v14.1.2">14.1.2</a> (2022-12-02)</h2> <h3>Bug Fixes</h3> <ul> <li><strong>web-scripts:</strong> security vulnerability in glob (<a href="https://github.com/spotify/web-scripts/commit/a278f219a0c350cfc7c7244edab714971ca62dd3">a278f21</a>)</li> </ul> <h2><a href="https://github.com/spotify/web-scripts/compare/v14.1.0...v14.1.1">14.1.1</a> (2022-11-25)</h2> <h3>Bug Fixes</h3> <ul> <li><strong>precommit:</strong> add in --passWithNoTests flag to enable precommit hook to succeed with no tests (<a href="https://github.com/spotify/web-scripts/commit/67cba2a757c887391468b3f7f494f8dce07b75cc">67cba2a</a>), closes <a href="https://redirect.github.com/spotify/web-scripts/issues/1020">#1020</a></li> </ul> <h1><a href="https://github.com/spotify/web-scripts/compare/v14.0.2...v14.1.0">14.1.0</a> (2022-08-08)</h1> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/spotify/web-scripts/commit/6d8c06336804882c5f32ad796859fcb02dceb093"><code>6d8c063</code></a> v15.0.0</li> <li><a href="https://github.com/spotify/web-scripts/commit/6519dca8cb98bd23b52ec811ab75cadb828c8b28"><code>6519dca</code></a> Merge pull request <a href="https://redirect.github.com/spotify/web-scripts/issues/1128">#1128</a> from nlebrun-spotify/upgrade-dependencies</li> <li><a href="https://github.com/spotify/web-scripts/commit/952884179ba7378440599b8acb109a98500535ee"><code>9528841</code></a> chore(node): upgrade required Node version to 18</li> <li><a href="https://github.com/spotify/web-scripts/commit/ef060c7da531060cc1d0f0fb60d3df8f355e418e"><code>ef060c7</code></a> chore(deps): upgrade dependencies</li> <li><a href="https://github.com/spotify/web-scripts/commit/cfb9c663f35effff4d2b7a5aa9f360f72d45ab26"><code>cfb9c66</code></a> v14.1.6</li> <li><a href="https://github.com/spotify/web-scripts/commit/7b2160e1e7dd1f92da5d1fe0847289abb3ba5e1d"><code>7b2160e</code></a> Merge pull request <a href="https://redirect.github.com/spotify/web-scripts/issues/1105">#1105</a> from spotify/cut-new-release</li> <li><a href="https://github.com/spotify/web-scripts/commit/5c7d2ed00ade2a993bc161972c119bd640e49f34"><code>5c7d2ed</code></a> fix: update dependencies</li> <li><a href="https://github.com/spotify/web-scripts/commit/a31d65cd382f914637a28b988b8d0fa54b642ddc"><code>a31d65c</code></a> Merge pull request <a href="https://redirect.github.com/spotify/web-scripts/issues/1100">#1100</a> from spotify/dependabot/npm_and_yarn/commitizen-4.3.0</li> <li><a href="https://github.com/spotify/web-scripts/commit/07db5cf351c1c866d966604acef3608e4c0fdb9e"><code>07db5cf</code></a> Merge pull request <a href="https://redirect.github.com/spotify/web-scripts/issues/1103">#1103</a> from spotify/dependabot/npm_and_yarn/http-cache-sema...</li> <li><a href="https://github.com/spotify/web-scripts/commit/7925f32beff98700566de7b6402227dbb26b8175"><code>7925f32</code></a> Create catalog-info.yaml</li> <li>Additional commits viewable in <a href="https://github.com/spotify/web-scripts/compare/v12.0.0...v15.0.0">compare view</a></li> </ul> </details> <br /> Updates `prettier` from 2.8.8 to 3.3.3 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/prettier/prettier/releases">prettier's releases</a>.</em></p> <blockquote> <h2>3.3.3</h2> <p>🔗 <a href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md#333">Changelog</a></p> <h2>3.3.2</h2> <p>🔗 <a href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md#332">Changelog</a></p> <h2>3.3.1</h2> <p>🔗 <a href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md#331">Changelog</a></p> <h2>3.3.0</h2> <p><a href="https://github.com/prettier/prettier/compare/3.2.5...3.3.0">diff</a></p> <p>🔗 <a href="https://prettier.io/blog/2024/06/01/3.3.0.html">Release note</a></p> <h2>3.2.5</h2> <p>🔗 <a href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md#325">Changelog</a></p> <h2>3.2.4</h2> <ul> <li>Fix <code>.eslintrc.json</code> format <a href="https://redirect.github.com/prettier/prettier/issues/15947">#15947</a></li> </ul> <p>🔗 <a href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md#324">Changelog</a></p> <h2>3.2.3</h2> <ul> <li>Format <code>tsconfig.json</code> file with <code>jsonc</code> parser <a href="https://redirect.github.com/prettier/prettier/issues/15927">#15927</a></li> </ul> <p>🔗 <a href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md#323">Changelog</a></p> <h2>3.2.2</h2> <p>🔗 <a href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md#322">Changelog</a></p> <h2>3.2.1</h2> <p>🔗 <a href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md#321">Changelog</a></p> <h2>3.2.0</h2> <p><a href="https://github.com/prettier/prettier/compare/3.1.1...3.2.0">diff</a></p> <p>🔗 <a href="https://prettier.io/blog/2024/01/12/3.2.0.html">Release note</a></p> <h2>3.1.1</h2> <p>🔗 <a href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md#311">Changelog</a></p> <h2>3.1.0</h2> <p><a href="https://github.com/prettier/prettier/compare/3.0.3...3.1.0">diff</a></p> <p>🔗 <a href="https://prettier.io/blog/2023/11/13/3.1.0.html">Release note</a></p> <h2>3.0.3</h2> <p>🔗 <a href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md#303">Changelog</a></p> <h2>3.0.2</h2> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md">prettier's changelog</a>.</em></p> <blockquote> <h1>3.3.3</h1> <p><a href="https://github.com/prettier/prettier/compare/3.3.2...3.3.3">diff</a></p> <h4>Add parentheses for nullish coalescing in ternary (<a href="https://redirect.github.com/prettier/prettier/pull/16391">#16391</a> by <a href="https://github.com/cdignam-segment"><code>@​cdignam-segment</code></a>)</h4> <p>This change adds clarity to operator precedence.</p> <!-- raw HTML omitted --> <pre lang="js"><code>// Input foo ? bar ?? foo : baz; foo ?? bar ? a : b; a ? b : foo ?? bar; <p>// Prettier 3.3.2<br /> foo ? bar ?? foo : baz;<br /> foo ?? bar ? a : b;<br /> a ? b : foo ?? bar;</p> <p>// Prettier 3.3.3<br /> foo ? (bar ?? foo) : baz;<br /> (foo ?? bar) ? a : b;<br /> a ? b : (foo ?? bar);<br /> </code></pre></p> <h4>Add parentheses for decorator expressions (<a href="https://redirect.github.com/prettier/prettier/pull/16458">#16458</a> by <a href="https://github.com/y-schneider"><code>@​y-schneider</code></a>)</h4> <p>Prevent parentheses around member expressions or tagged template literals from being removed to follow the stricter parsing rules of TypeScript 5.5.</p> <!-- raw HTML omitted --> <pre lang="ts"><code>// Input @(foo`tagged template`) class X {} <p>// Prettier 3.3.2<br /> <a href="https://github.com/foo"><code>@​foo</code></a><code>tagged template</code><br /> class X {}</p> <p>// Prettier 3.3.3<br /> @(foo<code>tagged template</code>)<br /> class X {}<br /> </code></pre></p> <h4>Support <code>@let</code> declaration syntax (<a href="https://redirect.github.com/prettier/prettier/pull/16474">#16474</a> by <a href="https://github.com/sosukesuzuki"><code>@​sosukesuzuki</code></a>)</h4> <p>Adds support for Angular v18 <code>@let</code> declaration syntax.</p> <p>Please see the following code example. The <code>@let</code> declaration allows you to define local variables within the template:</p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/prettier/prettier/commit/52829385bcc4d785e58ae2602c0b098a643523c9"><code>5282938</code></a> Release 3.3.3</li> <li><a href="https://github.com/prettier/prettier/commit/9102b73d8cd01795e7ba5af8a476d500c5dbcf2c"><code>9102b73</code></a> Add parentheses for decorator expressions (<a href="https://redirect.github.com/prettier/prettier/issues/16458">#16458</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/6bbd46194e4db25025afd6fe2f8506a8a2d1e47e"><code>6bbd461</code></a> chore(deps): update eslint related dependencies (<a href="https://redirect.github.com/prettier/prettier/issues/16478">#16478</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/04b560fc4386ee2ba1fc7c611c7a78655d6e60da"><code>04b560f</code></a> chore(deps): update dependency browserslist to v4.23.2 (<a href="https://redirect.github.com/prettier/prettier/issues/16475">#16475</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/614f070ac5f8d30628cc6cbbca1dda0e080e41d9"><code>614f070</code></a> chore(deps): update typescript-eslint to v8.0.0-alpha.41 (<a href="https://redirect.github.com/prettier/prettier/issues/16477">#16477</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/d59a15ded901c6dd66c07cf508e14646a6f12cd9"><code>d59a15d</code></a> chore(deps): update dependency npm-run-all2 to v6.2.2 (<a href="https://redirect.github.com/prettier/prettier/issues/16476">#16476</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/5ca2fc9be8369bf8c96899e2e5e8f3264086645a"><code>5ca2fc9</code></a> Support Angular <code>@let</code> declaration syntax (<a href="https://redirect.github.com/prettier/prettier/issues/16474">#16474</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/bfcfdccdf892141ce9cfbc179493557157c24e4c"><code>bfcfdcc</code></a> chore(deps): update babel to v7.24.8 (<a href="https://redirect.github.com/prettier/prettier/issues/16472">#16472</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/977c161924efa328660fe1802b604de2bc2527ea"><code>977c161</code></a> chore(deps): update dependency acorn to v8.12.1 (<a href="https://redirect.github.com/prettier/prettier/issues/16464">#16464</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/550606edf9f3c2e2d2c75f37f627c42030de34a3"><code>550606e</code></a> chore(deps): update babel to v7.24.8 (<a href="https://redirect.github.com/prettier/prettier/issues/16470">#16470</a>)</li> <li>Additional commits viewable in <a href="https://github.com/prettier/prettier/compare/2.8.8...3.3.3">compare view</a></li> </ul> </details> <br /> Updates `typescript` from 5.4.5 to 5.6.3 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/microsoft/TypeScript/releases">typescript's releases</a>.</em></p> <blockquote> <h2>TypeScript 5.6.3</h2> <p>For release notes, check out the <a href="https://devblogs.microsoft.com/typescript/announcing-typescript-5-6/">release announcement</a>.</p> <p>For the complete list of fixed issues, check out the</p> <ul> <li><a href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.6.0%22+is%3Aclosed+">fixed issues query for Typescript 5.6.0 (Beta)</a>.</li> <li><a href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.6.1%22+is%3Aclosed+">fixed issues query for Typescript 5.6.1 (RC)</a>.</li> <li><a href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.6.2%22+is%3Aclosed+">fixed issues query for Typescript 5.6.2 (Stable)</a>.</li> <li><a href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.6.3%22+is%3Aclosed+">fixed issues query for Typescript 5.6.3 (Stable)</a>.</li> </ul> <p>Downloads are available on:</p> <ul> <li><a href="https://www.npmjs.com/package/typescript">npm</a></li> <li><a href="https://www.nuget.org/packages/Microsoft.TypeScript.MSBuild">NuGet package</a></li> </ul> <h2>TypeScript 5.6</h2> <p>For release notes, check out the <a href="https://devblogs.microsoft.com/typescript/announcing-typescript-5-6/">release announcement</a>.</p> <p>For the complete list of fixed issues, check out the</p> <ul> <li><a href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.6.0%22+is%3Aclosed+">fixed issues query for Typescript 5.6.0 (Beta)</a>.</li> <li><a href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.6.1%22+is%3Aclosed+">fixed issues query for Typescript 5.6.1 (RC)</a>.</li> <li><a href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.6.2%22+is%3Aclosed+">fixed issues query for Typescript 5.6.2 (Stable)</a>.</li> </ul> <p>Downloads are available on:</p> <ul> <li><a href="https://www.npmjs.com/package/typescript">npm</a></li> <li><a href="https://www.nuget.org/packages/Microsoft.TypeScript.MSBuild">NuGet package</a></li> </ul> <h2>TypeScript 5.6 RC</h2> <p>For release notes, check out the <a href="https://devblogs.microsoft.com/typescript/announcing-typescript-5-6-rc/">release announcement</a>.</p> <p>For the complete list of fixed issues, check out the</p> <ul> <li><a href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;milestone%3A%22TypeScript+5.6.1%22+is%3Aclosed+">fixed issues query for TypeScript v5.6.1 (RC)</a>.</li> <li><a href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;milestone%3A%22TypeScript+5.6.0%22+is%3Aclosed+">fixed issues query for TypeScript v5.6.0 (Beta)</a>.</li> </ul> <p>Downloads are available on:</p> <ul> <li><a href="https://www.npmjs.com/package/typescript">npm</a></li> </ul> <h2>TypeScript 5.6 Beta</h2> <p>For release notes, check out the <a href="https://devblogs.microsoft.com/typescript/announcing-typescript-5-6-beta/">release announcement</a>.</p> <p>For the complete list of fixed issues, check out the</p> <ul> <li><a href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.6.0%22+is%3Aclosed+">fixed issues query for Typescript 5.6.0 (Beta)</a>.</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/microsoft/TypeScript/commit/d48a5cf89a62a62d6c6ed53ffa18f070d9458b85"><code>d48a5cf</code></a> Bump version to 5.6.3 and LKG</li> <li><a href="https://github.com/microsoft/TypeScript/commit/fefa70aa18df825b6b06e79ae3d5b54f17571128"><code>fefa70a</code></a> 🤖 Pick PR <a href="https://redirect.github.com/microsoft/TypeScript/issues/60083">#60083</a> (Don't issue implicit any when obtai...) into release-5.6 (#...</li> <li><a href="https://github.com/microsoft/TypeScript/commit/ff716921496ab538e74450d32443c899afbf4657"><code>ff71692</code></a> [release-5.6] Remove tsbuildInfo specification error now that we need it for ...</li> <li><a href="https://github.com/microsoft/TypeScript/commit/1f44dcf4e1d7db05fab64dea6949fe3c0e642d25"><code>1f44dcf</code></a> 🤖 Pick PR <a href="https://redirect.github.com/microsoft/TypeScript/issues/60157">#60157</a> (fix automatic type acquisition) into release-5.6 (<a href="https://redirect.github.com/microsoft/TypeScript/issues/60169">#60169</a>)</li> <li><a href="https://github.com/microsoft/TypeScript/commit/a7e3374f13327483fbe94e32806d65785b0b6cda"><code>a7e3374</code></a> Bump version to 5.6.2 and LKG</li> <li><a href="https://github.com/microsoft/TypeScript/commit/20633579fcf88f6b61774349740de4841d2b8b5c"><code>2063357</code></a> 🤖 Pick PR <a href="https://redirect.github.com/microsoft/TypeScript/issues/59708">#59708</a> (LEGO: Pull request from lego/hb_537...) into release-5.6 (#...</li> <li><a href="https://github.com/microsoft/TypeScript/commit/4fe7e41ea1a92ecbd59119666be2d60164785391"><code>4fe7e41</code></a> 🤖 Pick PR <a href="https://redirect.github.com/microsoft/TypeScript/issues/59670">#59670</a> (fix(59649): ts Move to a new file d...) into release-5.6 (#...</li> <li><a href="https://github.com/microsoft/TypeScript/commit/1a03e5340ae0b83ce1b1f743763625f89e92ca91"><code>1a03e53</code></a> 🤖 Pick PR <a href="https://redirect.github.com/microsoft/TypeScript/issues/59761">#59761</a> (<code>this</code> can be nullish) into release-5.6 (<a href="https://redirect.github.com/microsoft/TypeScript/issues/59762">#59762</a>)</li> <li><a href="https://github.com/microsoft/TypeScript/commit/6212132b835145b1a8fd49982680ac668caf3ddc"><code>6212132</code></a> Update LKG</li> <li><a href="https://github.com/microsoft/TypeScript/commit/bbb5faf7e749df52adafdcd37c09ac7fff30ddaf"><code>bbb5faf</code></a> 🤖 Pick PR <a href="https://redirect.github.com/microsoft/TypeScript/issues/59542">#59542</a> (Fixing delay caused in vscode due t...) into release-5.6 (#...</li> <li>Additional commits viewable in <a href="https://github.com/microsoft/TypeScript/compare/v5.4.5...v5.6.3">compare view</a></li> </ul> </details> <br /> Updates `@backstage-community/plugin-sentry` from 1.0.2 to 1.0.3 <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/backstage/community-plugins/blob/main/workspaces/sentry/plugins/sentry/CHANGELOG.md"><code>@​backstage-community/plugin-sentry</code>'s changelog</a>.</em></p> <blockquote> <h2>1.0.3</h2> <h3>Patch Changes</h3> <ul> <li>e657f8d: Add default filtering based on required annotation to the new frontend system components</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/backstage/community-plugins/commit/116bc3788ae41eb43e4a38196ab407fff06ba789"><code>116bc37</code></a> Version Packages (<a href="https://github.com/backstage/community-plugins/tree/HEAD/workspaces/sentry/plugins/sentry/issues/2034">#2034</a>)</li> <li><a href="https://github.com/backstage/community-plugins/commit/e657f8d344b5c5444af5092ea953310e21af96f5"><code>e657f8d</code></a> Add filtering based on annotation presence for new FE system components (<a href="https://github.com/backstage/community-plugins/tree/HEAD/workspaces/sentry/plugins/sentry/issues/2020">#2020</a>)</li> <li>See full diff in <a href="https://github.com/backstage/community-plugins/commits/@backstage-community/plugin-sentry@1.0.3/workspaces/sentry/plugins/sentry">compare view</a></li> </ul> </details> <br /> Updates `@testing-library/dom` from 9.3.4 to 10.4.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/testing-library/dom-testing-library/releases"><code>@​testing-library/dom</code>'s releases</a>.</em></p> <blockquote> <h2>v10.4.0</h2> <h1><a href="https://github.com/testing-library/dom-testing-library/compare/v10.3.2...v10.4.0">10.4.0</a> (2024-07-22)</h1> <h3>Features</h3> <ul> <li>Reduce caught exceptions in prettyDom (reland) (<a href="https://redirect.github.com/testing-library/dom-testing-library/issues/1323">#1323</a>) (<a href="https://github.com/testing-library/dom-testing-library/commit/a86c54ccda5242ad8dfc1c70d31980bdbf96af7f">a86c54c</a>)</li> </ul> <h2>v10.3.2</h2> <h2><a href="https://github.com/testing-library/dom-testing-library/compare/v10.3.1...v10.3.2">10.3.2</a> (2024-07-15)</h2> <h3>Bug Fixes</h3> <ul> <li>safer read of DEBUG_PRINT_LIMIT (<a href="https://redirect.github.com/testing-library/dom-testing-library/issues/1329">#1329</a>) (<a href="https://github.com/testing-library/dom-testing-library/commit/306526b5519abcaed84ef35f82501a1691edcd0e">306526b</a>)</li> </ul> <h2>v10.3.1</h2> <h2><a href="https://github.com/testing-library/dom-testing-library/compare/v10.3.0...v10.3.1">10.3.1</a> (2024-07-05)</h2> <h3>Bug Fixes</h3> <ul> <li>Revert &quot;feat: Reduce caught exceptions in <code>prettyDom</code> (<a href="https://redirect.github.com/testing-library/dom-testing-library/issues/1321">#1321</a>)&quot; (<a href="https://redirect.github.com/testing-library/dom-testing-library/issues/1325">#1325</a>) (<a href="https://github.com/testing-library/dom-testing-library/commit/fdc12ecf4343ab6b08a898d9b3ff0013981849c8">fdc12ec</a>)</li> </ul> <h2>v10.3.0</h2> <h1><a href="https://github.com/testing-library/dom-testing-library/compare/v10.2.0...v10.3.0">10.3.0</a> (2024-07-02)</h1> <h3>Features</h3> <ul> <li>Reduce caught exceptions in <code>prettyDom</code> (<a href="https://redirect.github.com/testing-library/dom-testing-library/issues/1321">#1321</a>) (<a href="https://github.com/testing-library/dom-testing-library/commit/76cb73dec444fca7ae3d160b4dad3b61f7bc8995">76cb73d</a>)</li> </ul> <h2>v10.2.0</h2> <h1><a href="https://github.com/testing-library/dom-testing-library/compare/v10.1.0...v10.2.0">10.2.0</a> (2024-06-24)</h1> <h3>Features</h3> <ul> <li>Support anonymous custom elements when pretty printing DOM (<a href="https://redirect.github.com/testing-library/dom-testing-library/issues/1319">#1319</a>) (<a href="https://github.com/testing-library/dom-testing-library/commit/0a8ad65723efe47493d387c38f31082c7846d824">0a8ad65</a>)</li> </ul> <h2>v10.1.0</h2> <h1><a href="https://github.com/testing-library/dom-testing-library/compare/v10.0.0...v10.1.0">10.1.0</a> (2024-04-29)</h1> <h3>Features</h3> <ul> <li>Add window events &quot;pagehide&quot; / &quot;pageshow&quot; (<a href="https://redirect.github.com/testing-library/dom-testing-library/issues/1308">#1308</a>) (<a href="https://github.com/testing-library/dom-testing-library/commit/56543d51a8776d3bc7fa9b947771ce5308bf5df4">56543d5</a>)</li> </ul> <h2>v10.0.0</h2> <h1><a href="https://github.com/testing-library/dom-testing-library/compare/v9.3.4...v10.0.0">10.0.0</a> (2024-04-08)</h1> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/testing-library/dom-testing-library/commit/a86c54ccda5242ad8dfc1c70d31980bdbf96af7f"><code>a86c54c</code></a> feat: Reduce caught exceptions in prettyDom (reland) (<a href="https://redirect.github.com/testing-library/dom-testing-library/issues/1323">#1323</a>)</li> <li><a href="https://github.com/testing-library/dom-testing-library/commit/33555a3b804e6499c0c95f0a3a6bb9bbb12e9666"><code>33555a3</code></a> Test highlighting of <code>prettyDOM</code> explicitly (<a href="https://redirect.github.com/testing-library/dom-testing-library/issues/1324">#1324</a>)</li> <li><a href="https://github.com/testing-library/dom-testing-library/commit/20d9894f0e5403e50c8d01b795a51532d72e8337"><code>20d9894</code></a> docs: add sieem as a contributor for code (<a href="https://redirect.github.com/testing-library/dom-testing-library/issues/1330">#1330</a>)</li> <li><a href="https://github.com/testing-library/dom-testing-library/commit/306526b5519abcaed84ef35f82501a1691edcd0e"><code>306526b</code></a> fix: safer read of DEBUG_PRINT_LIMIT (<a href="https://redirect.github.com/testing-library/dom-testing-library/issues/1329">#1329</a>)</li> <li><a href="https://github.com/testing-library/dom-testing-library/commit/fdc12ecf4343ab6b08a898d9b3ff0013981849c8"><code>fdc12ec</code></a> fix: Revert &quot;feat: Reduce caught exceptions in <code>prettyDom</code> (<a href="https://redirect.github.com/testing-library/dom-testing-library/issues/1321">#1321</a>)&quot; (<a href="https://redirect.github.com/testing-library/dom-testing-library/issues/1325">#1325</a>)</li> <li><a href="https://github.com/testing-library/dom-testing-library/commit/76cb73dec444fca7ae3d160b4dad3b61f7bc8995"><code>76cb73d</code></a> feat: Reduce caught exceptions in <code>prettyDom</code> (<a href="https://redirect.github.com/testing-library/dom-testing-library/issues/1321">#1321</a>)</li> <li><a href="https://github.com/testing-library/dom-testing-library/commit/0a8ad65723efe47493d387c38f31082c7846d824"><code>0a8ad65</code></a> feat: Support anonymous custom elements when pretty printing DOM (<a href="https://redirect.github.com/testing-library/dom-testing-library/issues/1319">#1319</a>)</li> <li><a href="https://github.com/testing-library/dom-testing-library/commit/77448ba415e34f9a122746fe678a07d344d8456f"><code>77448ba</code></a> docs: update Greg Bergé's bio link (<a href="https://redirect.github.com/testing-library/dom-testing-library/issues/1318">#1318</a>)</li> <li><a href="https://github.com/testing-library/dom-testing-library/commit/56543d51a8776d3bc7fa9b947771ce5308bf5df4"><code>56543d5</code></a> feat: Add window events &quot;pagehide&quot; / &quot;pageshow&quot; (<a href="https://redirect.github.com/testing-library/dom-testing-library/issues/1308">#1308</a>)</li> <li><a href="https://github.com/testing-library/dom-testing-library/commit/47fe879f572e2cfb2ca1e40d1ebcdffdd34a79eb"><code>47fe879</code></a> chore: correct some typos and spelling errors (<a href="https://redirect.github.com/testing-library/dom-testing-library/issues/1309">#1309</a>)</li> <li>Additional commits viewable in <a href="https://github.com/testing-library/dom-testing-library/compare/v9.3.4...v10.4.0">compare view</a></li> </ul> </details> <br /> Updates `@testing-library/react` from 14.3.1 to 16.0.1 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/testing-library/react-testing-library/releases"><code>@​testing-library/react</code>'s releases</a>.</em></p> <blockquote> <h2>v16.0.1</h2> <h2><a href="https://github.com/testing-library/react-testing-library/compare/v16.0.0...v16.0.1">16.0.1</a> (2024-08-29)</h2> <h3>Bug Fixes</h3> <ul> <li>Add support for exactOptionalPropertyTypes in TypeScript (<a href="https://redirect.github.com/testing-library/react-testing-library/issues/1351">#1351</a>) (<a href="https://github.com/testing-library/react-testing-library/commit/3dcd8a9649e25054c0e650d95fca2317b7008576">3dcd8a9</a>)</li> </ul> <h2>v16.0.0</h2> <h1><a href="https://github.com/testing-library/react-testing-library/compare/v15.0.7...v16.0.0">16.0.0</a> (2024-06-03)</h1> <h3>Features</h3> <ul> <li>Move <code>@testing-library/dom</code> and <code>@types/react-dom</code> to peer dependencies (<a href="https://redirect.github.com/testing-library/react-testing-library/issues/1305">#1305</a>) (<a href="https://github.com/testing-library/react-testing-library/commit/a4744fa904bf11812c92093226c3805450472636">a4744fa</a>)</li> </ul> <h3>BREAKING CHANGES</h3> <ul> <li><code>@testing-library/dom</code> was moved to a peer dependency and needs to be explicitly installed. This reduces the chance of having conflicting versions of <code>@testing-library/dom</code> installed that frequently caused bugs when used with <code>@testing-library/user-event</code>. We will also be able to allow new versions of <code>@testing-library/dom</code> being used without a SemVer major release of <code>@testing-library/react</code> by just widening the peer dependency. <code>@types/react-dom</code> needs to be installed if you're typechecking files using <code>@testing-library/react</code>.</li> </ul> <h2>v15.0.7</h2> <h2><a href="https://github.com/testing-library/react-testing-library/compare/v15.0.6...v15.0.7">15.0.7</a> (2024-05-07)</h2> <h3>Bug Fixes</h3> <ul> <li>Ensure <code>act</code> is not <code>any</code> when <code>React.act</code> is not declared (<a href="https://redirect.github.com/testing-library/react-testing-library/issues/1323">#1323</a>) (<a href="https://github.com/testing-library/react-testing-library/commit/c1f2957a219ec7e6a6159a57c5d0717655c515cd">c1f2957</a>)</li> </ul> <h2>v15.0.6</h2> <h2><a href="https://github.com/testing-library/react-testing-library/compare/v15.0.5...v15.0.6">15.0.6</a> (2024-05-01)</h2> <h3>Bug Fixes</h3> <ul> <li>export new act when available (<a href="https://redirect.github.com/testing-library/react-testing-library/issues/1319">#1319</a>) (<a href="https://github.com/testing-library/react-testing-library/commit/b6e59f7d58c69f617cc9854d8c3e6f86c2dfb0e9">b6e59f7</a>)</li> </ul> <h2>v15.0.5</h2> <h2><a href="https://github.com/testing-library/react-testing-library/compare/v15.0.4...v15.0.5">15.0.5</a> (2024-04-26)</h2> <h3>Bug Fixes</h3> <ul> <li>Stop restricting <code>container</code> option based on <code>hydrate</code> (<a href="https://redirect.github.com/testing-library/react-testing-library/issues/1313">#1313</a>) (<a href="https://github.com/testing-library/react-testing-library/commit/d143f46b39cbc750630a5cf2863182b4036d35ac">d143f46</a>)</li> </ul> <h2>v15.0.4</h2> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/testing-library/react-testing-library/commit/3dcd8a9649e25054c0e650d95fca2317b7008576"><code>3dcd8a9</code></a> fix: Add support for exactOptionalPropertyTypes in TypeScript (<a href="https://redirect.github.com/testing-library/react-testing-library/issues/1351">#1351</a>)</li> <li><a href="https://github.com/testing-library/react-testing-library/commit/7a28fa916891c544746879d5013b3e07c035a4b7"><code>7a28fa9</code></a> Fix React Canary and Experimental tests (<a href="https://redirect.github.com/testing-library/react-testing-library/issues/1353">#1353</a>)</li> <li><a href="https://github.com/testing-library/react-testing-library/commit/a4744fa904bf11812c92093226c3805450472636"><code>a4744fa</code></a> feat: Move <code>@testing-library/dom</code> and <code>@types/react-dom</code> to peer dependencie...</li> <li><a href="https://github.com/testing-library/react-testing-library/commit/c1f2957a219ec7e6a6159a57c5d0717655c515cd"><code>c1f2957</code></a> fix: Ensure <code>act</code> is not <code>any</code> when <code>React.act</code> is not declared (<a href="https://redirect.github.com/testing-library/react-testing-library/issues/1323">#1323</a>)</li> <li><a href="https://github.com/testing-library/react-testing-library/commit/b6e59f7d58c69f617cc9854d8c3e6f86c2dfb0e9"><code>b6e59f7</code></a> fix: export new act when available (<a href="https://redirect.github.com/testing-library/react-testing-library/issues/1319">#1319</a>)</li> <li><a href="https://github.com/testing-library/react-testing-library/commit/f6a1677501b53471f6a989078726aeb0dea114be"><code>f6a1677</code></a> chore: Adjust tests to workaround 18.3.0 bug (<a href="https://redirect.github.com/testing-library/react-testing-library/issues/1315">#1315</a>)</li> <li><a href="https://github.com/testing-library/react-testing-library/commit/d143f46b39cbc750630a5cf2863182b4036d35ac"><code>d143f46</code></a> fix: Stop restricting <code>container</code> option based on <code>hydrate</code> (<a href="https://redirect.github.com/testing-library/react-testing-library/issues/1313">#1313</a>)</li> <li><a href="https://github.com/testing-library/react-testing-library/commit/48282c2f35fb7338834b40983c12b889af35f5d1"><code>48282c2</code></a> fix: Ensure <code>renderHook</code> options extend options for <code>render</code> (<a href="https://redirect.github.com/testing-library/react-testing-library/issues/1308">#1308</a>)</li> <li><a href="https://github.com/testing-library/react-testing-library/commit/067d0c6d2e87092f6ecaa8c9fcf505e4576055cf"><code>067d0c6</code></a> fix: Don't raise TypeScript errors when hydating <code>document</code> (<a href="https://redirect.github.com/testing-library/react-testing-library/issues/1304">#1304</a>)</li> <li><a href="https://github.com/testing-library/react-testing-library/commit/c63b873072d62c858959c2a19e68f8e2cc0b11be"><code>c63b873</code></a> fix: Improve <code>legacyRoot</code> error message (<a href="https://redirect.github.com/testing-library/react-testing-library/issues/1301">#1301</a>)</li> <li>Additional commits viewable in <a href="https://github.com/testing-library/react-testing-library/compare/v14.3.1...v16.0.1">compare view</a></li> </ul> </details> <br /> Updates `@backstage-community/plugin-github-actions` from 0.6.24 to 0.6.25 <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/backstage/community-plugins/blob/main/workspaces/github-actions/plugins/github-actions/CHANGELOG.md"><code>@​backstage-community/plugin-github-actions</code>'s changelog</a>.</em></p> <blockquote> <h2>0.6.25</h2> <h3>Patch Changes</h3> <ul> <li>e657f8d: Add default filtering based on required annotation to the new frontend system components</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/backstage/community-plugins/commit/7eafb3bf5cffffd6756159a0539bf031c1a30e14"><code>7eafb3b</code></a> Version Packages (<a href="https://github.com/backstage/community-plugins/tree/HEAD/workspaces/github-actions/plugins/github-actions/issues/2032">#2032</a>)</li> <li><a href="https://github.com/backstage/community-plugins/commit/e657f8d344b5c5444af5092ea953310e21af96f5"><code>e657f8d</code></a> Add filtering based on annotation presence for new FE system components (<a href="https://github.com/backstage/community-plugins/tree/HEAD/workspaces/github-actions/plugins/github-actions/issues/2020">#2020</a>)</li> <li>See full diff in <a href="https://github.com/backstage/community-plugins/commits/@backstage-community/plugin-github-actions@0.6.25/workspaces/github-actions/plugins/github-actions">compare view</a></li> </ul> </details> <br /> Updates `better-sqlite3` from 9.6.0 to 11.5.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/WiseLibs/better-sqlite3/releases">better-sqlite3's releases</a>.</em></p> <blockquote> <h2>v11.5.0</h2> <h2>What's Changed</h2> <ul> <li>Added NodeJS 23 Support by <a href="https://github.com/neoxpert"><code>@​neoxpert</code></a> in <a href="https://redirect.github.com/WiseLibs/better-sqlite3/pull/1283">WiseLibs/better-sqlite3#1283</a></li> <li>Update <a href="https://sqlite.org/releaselog/3_47_0.html">SQLite to version 3.47.0</a> by <a href="https://github.com/mceachen"><code>@​mceachen</code></a> in <a href="https://redirect.github.com/WiseLibs/better-sqlite3/pull/1284">WiseLibs/better-sqlite3#1284</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/WiseLibs/better-sqlite3/compare/v11.4.0...v11.5.0">https://github.com/WiseLibs/better-sqlite3/compare/v11.4.0...v11.5.0</a></p> <h2>v11.4.0</h2> <h2>What's Changed</h2> <ul> <li>Prebuild for Electron 33 by <a href="https://github.com/oliverschwendener"><code>@​oliverschwendener</code></a> in <a href="https://redirect.github.com/WiseLibs/better-sqlite3/pull/1279">WiseLibs/better-sqlite3#1279</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/oliverschwendener"><code>@​oliverschwendener</code></a> made their first contribution in <a href="https://redirect.github.com/WiseLibs/better-sqlite3/pull/1279">WiseLibs/better-sqlite3#1279</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/WiseLibs/better-sqlite3/compare/v11.3.0...v11.4.0">https://github.com/WiseLibs/better-sqlite3/compare/v11.3.0...v11.4.0</a></p> <h2>v11.3.0</h2> <h2>What's Changed</h2> <ul> <li>Add new patch infra. by <a href="https://github.com/mceachen"><code>@​mceachen</code></a> in <a href="https://redirect.github.com/WiseLibs/better-sqlite3/pull/1239">WiseLibs/better-sqlite3#1239</a></li> <li>Update SQLite to version 3.46.1 by <a href="https://github.com/mceachen"><code>@​mceachen</code></a> in <a href="https://redirect.github.com/WiseLibs/better-sqlite3/pull/1252">WiseLibs/better-sqlite3#1252</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/WiseLibs/better-sqlite3/compare/v11.2.1...v11.3.0">https://github.com/WiseLibs/better-sqlite3/compare/v11.2.1...v11.3.0</a></p> <h2>v11.2.1</h2> <h2>What's Changed</h2> <ul> <li>Prebuild for Electron 32 by <a href="https://github.com/neoxpert"><code>@​neoxpert</code></a> in <a href="https://redirect.github.com/WiseLibs/better-sqlite3/pull/1242">WiseLibs/better-sqlite3#1242</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/WiseLibs/better-sqlite3/compare/v11.2.0...v11.2.1">https://github.com/WiseLibs/better-sqlite3/compare/v11.2.0...v11.2.1</a></p> <h2>v11.2.0</h2> <h2>What's Changed</h2> <ul> <li>Support builds for Electron v32 by <a href="https://github.com/neoxpert"><code>@​neoxpert</code></a> in <a href="https://redirect.github.com/WiseLibs/better-sqlite3/pull/1226">WiseLibs/better-sqlite3#1226</a></li> <li>Adding SQLITE_ENABLE_DBSTAT_VTAB by <a href="https://github.com/mikeburgh"><code>@​mikeburgh</code></a> in <a href="https://redirect.github.com/WiseLibs/better-sqlite3/pull/1228">WiseLibs/better-sqlite3#1228</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/mikeburgh"><code>@​mikeburgh</code></a> made their first contribution in <a href="https://redirect.github.com/WiseLibs/better-sqlite3/pull/1228">WiseLibs/better-sqlite3#1228</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/WiseLibs/better-sqlite3/compare/v11.1.2...v11.2.0">https://github.com/WiseLibs/better-sqlite3/compare/v11.1.2...v11.2.0</a></p> <h2>v11.1.2</h2> <h2>What's Changed</h2> <ul> <li>Use node bullseye to build arm images by <a href="https://github.com/viceice"><code>@​viceice</code></a> in <a href="https://redirect.github.com/WiseLibs/better-sqlite3/pull/1216">WiseLibs/better-sqlite3#1216</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/viceice"><code>@​viceice</code></a> made their first contribution in <a href="https://redirect.github.com/WiseLibs/better-sqlite3/pull/1216">WiseLibs/better-sqlite3#1216</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/WiseLibs/better-sqlite3/compare/v11.1.1...v11.1.2">https://github.com/WiseLibs/better-sqlite3/compare/v11.1.1...v11.1.2</a></p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/WiseLibs/better-sqlite3/commit/5d410bb7ac6eb32e071527bf5709cba8d2bfadb5"><code>5d410bb</code></a> 11.5.0</li> <li><a href="https://github.com/WiseLibs/better-sqlite3/commit/487007aabc883b79d80c767a5b06ea793bb38473"><code>487007a</code></a> Update SQLite to version 3.47.0 (<a href="https://redirect.github.com/WiseLibs/better-sqlite3/issues/1284">#1284</a>)</li> <li><a href="https://github.com/WiseLibs/better-sqlite3/commit/698cc8512ac0a54f06f268772b41abe32677c438"><code>698cc85</code></a> Added NodeJS 23 Support (<a href="https://redirect.github.com/WiseLibs/better-sqlite3/issues/1283">#1283</a>)</li> <li><a href="https://github.com/WiseLibs/better-sqlite3/commit/667d2f31843a2d76b3ebdc92097d323616e16a9b"><code>667d2f3</code></a> 11.4.0</li> <li><a href="https://github.com/WiseLibs/better-sqlite3/commit/abd354681f3f86e27e7c3deac7d3beb702c3d8fd"><code>abd3546</code></a> Prebuild for Electron 33 (<a href="https://redirect.github.com/WiseLibs/better-sqlite3/issues/1279">#1279</a>)</li> <li><a href="https://github.com/WiseLibs/better-sqlite3/commit/f01e0e42da4b8ba509961e772132e69ef5aa11c0"><code>f01e0e4</code></a> 11.3.0</li> <li><a href="https://github.com/WiseLibs/better-sqlite3/commit/8b584ef6a15caecf2b121a0891aa70d6e56f4f8f"><code>8b584ef</code></a> Update SQLite to version 3.46.1 (<a href="https://redirect.github.com/WiseLibs/better-sqlite3/issues/1252">#1252</a>)</li> <li><a href="https://github.com/WiseLibs/better-sqlite3/commit/f396b5b60e7ee00ef5631bd3c79479fdf66e895e"><code>f396b5b</code></a> Add new patch infra. (<a href="https://redirect.github.com/WiseLibs/better-sqlite3/issues/1239">#1239</a>)</li> <li><a href="https://github.com/WiseLibs/better-sqlite3/commit/7896456a42a4c3dfd878fe4abc68cd67603f6d98"><code>7896456</code></a> 11.2.1</li> <li><a href="https://github.com/WiseLibs/better-sqlite3/commit/2bf975e69b5e09b6a4d1cb08f589acf0c8594ed1"><code>2bf975e</code></a> Prebuild for Electron 32 (<a href="https://redirect.github.com/WiseLibs/better-sqlite3/issues/1242">#1242</a>)</li> <li>Additional commits viewable in <a href="https://github.com/WiseLibs/better-sqlite3/compare/v9.6.0...v11.5.0">compare view</a></li> </ul> </details> <br /> Updates `@testing-library/dom` from 9.3.4 to 10.4.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/testing-library/dom-testing-library/releases"><code>@​testing-library/dom</code>'s releases</a>.</em></p> <blockquote> <h2>v10.4.0</h2> <h1><a href="https://github.com/testing-library/dom-testing-library/compare/v10.3.2...v10.4.0">10.4.0</a> (2024-07-22)</h1> <h3>Features</h3> <ul> <li>Reduce caught exceptions in prettyDom (reland) (<a href="https://redirect.github.com/testing-library/dom-testing-library/issues/1323">#1323</a>) (<a href="https://github.com/testing-library/dom-testing-library/commit/a86c54ccda5242ad8dfc1c70d31980bdbf96af7f">a86c54c</a>)</li> </ul> <h2>v10.3.2</h2> <h2><a href="https://github.com/testing-library/dom-testing-library/compare/v10.3.1...v10.3.2">10.3.2</a> (2024-07-15)</h2> <h3>Bug Fixes</h3> <ul> <li>safer read of DEBUG_PRINT_LIMIT (<a href="https://redirect.github.com/testing-library/dom-testing-library/issues/1329">#1329</a>) (<a href="https://github.com/testing-library/dom-testing-library/commit/306526b5519abcaed84ef35f82501a1691edcd0e">306526b</a>)</li> </ul> <h2>v10.3.1</h2> <h2><a href="https://github.com/testing-library/dom-testing-library/compare/v10.3.0...v10.3.1">10.3.1</a> (2024-07-05)</h2> <h3>Bug Fixes</h3> <ul> <li>Revert &quot;feat: Reduce caught exceptions in <code>prettyDom</code> (<a href="https://redirect.github.com/testing-library/dom-testing-library/issues/1321">#1321</a>)&quot; (<a href="https://redirect.github.com/testing-library/dom-testing-library/issues/1325">#1325</a>) (<a href="https://github.com/testing-library/dom-testing-library/commit/fdc12ecf4343ab6b08a898d9b3ff0013981849c8">fdc12ec</a>)</li> </ul> <h2>v10.3.0</h2> <h1><a href="https://github.com/testing-library/dom-testing-library/compare/v10.2.0...v10.3.0">10.3.0</a> (2024-07-02)</h1> <h3>Features</h3> <ul> <li>Reduce caught exceptions in <code>prettyDom</code> (<a href="https://redirect.github.com/testing-library/dom-testing-library/issues/1321">#1321</a>) (<a href="https://github.com/testing-library/dom-testing-library/commit/76cb73dec444fca7ae3d160b4dad3b61f7bc8995">76cb73d</a>)</li> </ul> <h2>v10.2.0</h2> <h1><a href="https://github.com/testing-library/dom-testing-library/compare/v10.1.0...v10.2.0">10.2.0</a> (2024-06-24)</h1> <h3>Features</h3> <ul> <li>Support anonymous custom elements when pretty printing DOM (<a href="https://redirect.github.com/testing-library/dom-testing-library/issues/1319">#1319</a>) (<a href="https://github.com/testing-library/dom-testing-library/commit/0a8ad65723efe47493d387c38f31082c7846d824">0a8ad65</a>)</li> </ul> <h2>v10.1.0</h2> <h1><a href="https://github.com/testing-library/dom-testing-library/compare/v10.0.0...v10.1.0">10.1.0</a> (2024-04-29)</h1> <h3>Features</h3> <ul> <li>Add window events &quot;pagehide&quot; / &quot;pageshow&quot; (<a href="https://redirect.github.com/testing-library/dom-testing-library/issues/1308">#1308</a>) (<a href="https://github.com/testing-library/dom-testing-library/commit/56543d51a8776d3bc7fa9b947771ce5308bf5df4">56543d5</a>)</li> </ul> <h2>v10.0.0</h2> <h1><a href="https://github.com/testing-library/dom-testing-library/compare/v9.3.4...v10.0.0">10.0.0</a> (2024-04-08)</h1> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/testing-library/dom-testing-library/commit/a86c54ccda5242ad8dfc1c70d31980bdbf96af7f"><code>a86c54c</code></a> feat: Reduce caught exceptions in prettyDom (reland) (<a href="https://redirect.github.com/testing-library/dom-testing-library/issues/1323">#1323</a>)</li> <li><a href="https://github.com/testing-library/dom-testing-library/commit/33555a3b804e6499c0c95f0a3a6bb9bbb12e9666"><code>33555a3</code></a> Test highlighting of <code>prettyDOM</code> explicitly (<a href="https://redirect.github.com/testing-library/dom-testing-library/issues/1324">#1324</a>)</li> <li><a href="https://github.com/testing-library/dom-testing-library/commit/20d9894f0e5403e50c8d01b795a51532d72e8337"><code>20d9894</code></a> docs: add sieem as a contributor for code (<a href="https://redirect.github.com/testing-library/dom-testing-library/issues/1330">#1330</a>)</li> <li><a href="https://github.com/testing-library/dom-testing-library/commit/306526b5519abcaed84ef35f82501a1691edcd0e"><code>306526b</code></a> fix: safer read of DEBUG_PRINT_LIMIT (<a href="https://redirect.github.com/testing-library/dom-testing-library/issues/1329">#1329</a>)</li> <li><a href="https://github.com/testing-library/dom-testing-library/commit/fdc12ecf4343ab6b08a898d9b3ff0013981849c8"><code>fdc12ec</code></a> fix: Revert &quot;feat: Reduce caught exceptions in <code>prettyDom</code> (<a href="https://redirect.github.com/testing-library/dom-testing-library/issues/1321">#1321</a>)&quot; (<a href="https://redirect.github.com/testing-library/dom-testing-library/issues/1325">#1325</a>)</li> <li><a href="https://github.com/testing-library/dom-testing-library/commit/76cb73dec444fca7ae3d160b4dad3b61f7bc8995"><code>76cb73d</code></a> feat: Reduce caught exceptions in <code>prettyDom</code> (<a href="https://redirect.github.com/testing-library/dom-testing-library/issues/1321">#1321</a>)</li> <li><a href="https://github.com/testing-library/dom-testing-library/commit/0a8ad65723efe47493d387c38f31082c7846d824"><code>0a8ad65</code></a> feat: Support anonymous custom elements when pretty printing DOM (<a href="https://redirect.github.com/testing-library/dom-testing-library/issues/1319">#1319</a>)</li> <li><a href="https://github.com/testing-library/dom-testing-library/commit/77448ba415e34f9a122746fe678a07d344d8456f"><code>77448ba</code></a> docs: update Greg Bergé's bio link (<a href="https://redirect.github.com/testing-library/dom-testing-library/issues/1318">#1318</a>)</li> <li><a href="https://github.com/testing-library/dom-testing-library/commit/56543d51a8776d3bc7fa9b947771ce5308bf5df4"><code>56543d5</code></a> feat: Add window events &quot;pagehide&quot; / &quot;pageshow&quot; (<a href="https://redirect.github.com/testing-library/dom-testing-library/issues/1308">#1308</a>)</li> <li><a href="https://github.com/testing-library/dom-testing-library/commit/47fe879f572e2cfb2ca1e40d1ebcdffdd34a79eb"><code>47fe879</code></a> chore: correct some typos and spelling errors (<a href="https://redirect.github.com/testing-library/dom-testing-library/issues/1309">#1309</a>)</li> <li>Additional commits viewable in <a href="https://github.com/testing-library/dom-testing-library/compare/v9.3.4...v10.4.0">compare view</a></li> </ul> </details> <br /> Updates `@testing-library/react` from 14.3.1 to 16.0.1 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/testing-library/react-testing-library/releases"><code>@​testing-library/react</code>'s releases</a>.</em></p> <blockquote> <h2>v16.0.1</h2> <h2><a href="https://github.com/testing-library/react-testing-library/compare/v16.0.0...v16.0.1">16.0.1</a> (2024-08-29)</h2> <h3>Bug Fixes</h3> <ul> <li>Add support for exactOptionalPropertyTypes in TypeScript (<a href="https://redirect.github.com/testing-library/react-testing-library/issues/1351">#1351</a>) (<a href="https://github.com/testing-library/react-testing-library/commit/3dcd8a9649e25054c0e650d95fca2317b7008576">3dcd8a9</a>)</li> </ul> <h2>v16.0.0</h2> <h1><a href="https://github.com/testing-library/react-testing-library/compare/v15.0.7...v16.0.0">16.0.0</a> (2024-06-03)</h1> <h3>Features</h3> <ul> <li>Move <code>@testing-library/dom</code> and <code>@types/react-dom</code> to peer dependencies (<a href="https://redirect.github.com/testing-library/react-testing-library/issues/1305">#1305</a>) (<a href="https://github.com/testing-library/react-testing-library/commit/a4744fa904bf11812c92093226c3805450472636">a4744fa</a>)</li> </ul> <h3>BREAKING CHANGES</h3> <ul> <li><code>@testing-library/dom</code> was moved to a peer dependency and needs to be explicitly installed. This reduces the chance of having conflicting versions of <code>@testing-library/dom</code> installed that frequently caused bugs when used with <code>@testing-library/user-event</code>. We will also be able to allow new versions of <code>@testing-library/dom</code> being used without a SemVer major release of <code>@testing-library/react</code> by just widening the peer dependency. <code>@types/react-dom</code> needs to be installed if you're typechecking files using <code>@testing-library/react</code>.</li> </ul> <h2>v15.0.7</h2> <h2><a href="https://github.com/testing-library/react-testing-library/compare/v15.0.6...v15.0.7">15.0.7</a> (2024-05-07)</h2> <h3>Bug Fixes</h3> <ul> <li>Ensure <code>act</code> is not <code>any</code> when <code>React.act</code> is not declared (<a href="https://redirect.github.com/testing-library/react-testing-library/issues/1323">#1323</a>) (<a href="https://github.com/testing-library/react-testing-library/commit/c1f2957a219ec7e6a6159a57c5d0717655c515cd">c1f2957</a>)</li> </ul> <h2>v15.0.6</h2> <h2><a href="https://github.com/testing-library/react-testing-library/compare/v15.0.5...v15.0.6">15.0.6</a> (2024-05-01)</h2> <h3>Bug Fixes</h3> <ul> <li>export new act when available (<a href="https://redirect.github.com/testing-library/react-testing-library/issues/1319">#1319</a>) (<a href="https://github.com/testing-library/react-testing-library/commit/b6e59f7d58c69f617cc9854d8c3e6f86c2dfb0e9">b6e59f7</a>)</li> </ul> <h2>v15.0.5</h2> <h2><a href="https://github.com/testing-library/react-testing-library/compare/v15.0.4...v15.0.5">15.0.5</a> (2024-04-26)</h2> <h3>Bug Fixes</h3> <ul> <li>Stop restricting <code>container</code> option based on <code>hydrate</code> (<a href="https://redirect.github.com/testing-library/react-testing-library/issues/1313">#1313</a>) (<a href="https://github.com/testing-library/react-testing-library/commit/d143f46b39cbc750630a5cf2863182b4036d35ac">d143f46</a>)</li> </ul> <h2>v15.0.4</h2> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/testing-library/react-testing-library/commit/3dcd8a9649e25054c0e650d95fca2317b7008576"><code>3dcd8a9</code></a> fix: Add support for exactOptionalPropertyTypes in TypeScript (<a href="https://redirect.github.com/testing-library/react-testing-library/issues/1351">#1351</a>)</li> <li><a href="https://github.com/testing-library/react-testing-library/commit/7a28fa916891c544746879d5013b3e07c035a4b7"><code>7a28fa9</code></a> Fix React Canary and Experimental tests (<a href="https://redirect.github.com/testing-library/react-testing-library/issues/1353">#1353</a>)</li> <li><a href="https://github.com/testing-library/react-testing-library/commit/a4744fa904bf11812c92093226c3805450472636"><code>a4744fa</code></a> feat: Move <code>@testing-library/dom</code> and <code>@types/react-dom</code> to peer dependencie...</li> <li><a href="https://github.com/testing-library/react-testing-library/commit/c1f2957a219ec7e6a6159a57c5d0717655c515cd"><code>c1f2957</code></a> fix: Ensure <code>act</code> is not <code>any</code> when <code>React.act</code> is not declared (<a href="https://redirect.github.com/testing-library/react-testing-library/issues/1323">#1323</a>)</li> <li><a href="https://github.com/testing-library/react-testing-library/commit/b6e59f7d58c69f617cc9854d8c3e6f86c2dfb0e9"><code>b6e59f7</code></a> fix: export new act when available (<a href="https://redirect.github.com/testing-library/react-testing-library/issues/1319">#1319</a>)</li> <li><a href="https://github.com/testing-library/react-testing-library/commit/f6a1677501b53471f6a989078726aeb0dea114be"><code>f6a1677</code></a> chore: Adjust tests to workaround 18.3.0 bug (<a href="https://redirect.github.com/testing-library/react-testing-library/issues/1315">#1315</a>)</li> <li><a href="https://github.com/testing-library/react-testing-library/commit/d143f46b39cbc750630a5cf2863182b4036d35ac"><code>d143f46</code></a> fix: Stop restricting <code>container</code> option based on <code>hydrate</code> (<a href="https://redirect.github.com/testing-library/react-testing-library/issues/1313">#1313</a>)</li> <li><a href="https://github.com/testing-library/react-testing-library/commit/48282c2f35fb7338834b40983c12b889af35f5d1"><code>48282c2</code></a> fix: Ensure <code>renderHook</code> options extend options for <code>render</code> (<a href="https://redirect.github.com/testing-library/react-testing-library/issues/1308">#1308</a>)</li> <li><a href="https://github.com/testing-library/react-testing-library/commit/067d0c6d2e87092f6ecaa8c9fcf505e4576055cf"><code>067d0c6</code></a> fix: Don't raise TypeScript errors when hydating <code>document</code> (<a href="https://redirect.github.com/testing-library/react-testing-library/issues/1304">#1304</a>)</li> <li><a href="https://github.com/testing-library/react-testing-library/commit/c63b873072d62c858959c2a19e68f8e2cc0b11be"><code>c63b873</code></a> fix: Improve <code>legacyRoot</code> error message (<a href="https://redirect.github.com/testing-library/react-testing-library/issues/1301">#1301</a>)</li> <li>Additional commits viewable in <a href="https://github.com/testing-library/react-testing-library/compare/v14.3.1...v16.0.1">compare view</a></li> </ul> </details> <br /> Updates `better-sqlite3` from 9.6.0 to 11.5.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/WiseLibs/better-sqlite3/releases">better-sqlite3's releases</a>.</em></p> <blockquote> <h2>v11.5.0</h2> <h2>What's Changed</h2> <ul> <li>Added NodeJS 23 Support by <a href="https://github.com/neoxpert"><code>@​neoxpert</code></a> in <a href="https://redirect.github.com/WiseLibs/better-sqlite3/pull/1283">WiseLibs/better-sqlite3#1283</a></li> <li>Update <a href="https://sqlite.org/releaselog/3_47_0.html">SQLite to version 3.47.0</a> by <a href="https://github.com/mceachen"><code>@​mceachen</code></a> in <a href="https://redirect.github.com/WiseLibs/better-sqlite3/pull/1284">WiseLibs/better-sqlite3#1284</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/WiseLibs/better-sqlite3/compare/v11.4.0...v11.5.0">https://github.com/WiseLibs/better-sqlite3/compare/v11.4.0...v11.5.0</a></p> <h2>v11.4.0</h2> <h2>What's Changed</h2> <ul> <li>Prebuild for Electron 33 by <a href="https://github.com/oliverschwendener"><code>@​oliverschwendener</code></a> in <a href="https://redirect.github.com/WiseLibs/better-sqlite3/pull/1279">WiseLibs/better-sqlite3#1279</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/oliverschwendener"><code>@​oliverschwendener</code></a> made their first contribution in <a href="https://redirect.github.com/WiseLibs/better-sqlite3/pull/1279">WiseLibs/better-sqlite3#1279</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/WiseLibs/better-sqlite3/compare/v11.3.0...v11.4.0">https://github.com/WiseLibs/better-sqlite3/compare/v11.3.0...v11.4.0</a></p> <h2>v11.3.0</h2> <h2>What's Changed</h2> <ul> <li>Add new patch infra. by <a href="https://github.com/mceachen"><code>@​mceachen</code></a> in <a href="https://redirect.github.com/WiseLibs/better-sqlite3/pull/1239">WiseLibs/better-sqlite3#1239</a></li> <li>Update SQLite to version 3.46.1 by <a href="https://github.com/mceachen"><code>@​mceachen</code></a> in <a href="https://redirect.github.com/WiseLibs/better-sqlite3/pull/1252">WiseLibs/better-sqlite3#1252</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/WiseLibs/better-sqlite3/compare/v11.2.1...v11.3.0">https://github.com/WiseLibs/better-sqlite3/compare/v11.2.1...v11.3.0</a></p> <h2>v11.2.1</h2> <h2>What's Changed</h2> <ul> <li>Prebuild for Electron 32 by <a href="https://github.com/neoxpert"><code>@​neoxpert</code></a> in <a href="https://redirect.github.com/WiseLibs/better-sqlite3/pull/1242">WiseLibs/better-sqlite3#1242</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/WiseLibs/better-sqlite3/compare/v11.2.0...v11.2.1">https://github.com/WiseLibs/better-sqlite3/compare/v11.2.0...v11.2.1</a></p> <h2>v11.2.0</h2> <h2>What's Changed</h2> <ul> <li>Support builds for Electron v32 by <a href="https://github.com/neoxpert"><code>@​neoxpert</code></a> in <a href="https://redirect.github.com/WiseLibs/better-sqlite3/pull/1226">WiseLibs/better-sqlite3#1226</a></li> <li>Adding SQLITE_ENABLE_DBSTAT_VTAB by <a href="https://github.com/mikeburgh"><code>@​mikeburgh</code></a> in <a href="https://redirect.github.com/WiseLibs/better-sqlite3/pull/1228">WiseLibs/better-sqlite3#1228</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/mikeburgh"><code>@​mikeburgh</code></a> made their first contribution in <a href="https://redirect.github.com/WiseLibs/better-sqlite3/pull/1228">WiseLibs/better-sqlite3#1228</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/WiseLibs/better-sqlite3/compare/v11.1.2...v11.2.0">https://github.com/WiseLibs/better-sqlite3/compare/v11.1.2...v11.2.0</a></p> <h2>v11.1.2</h2> <h2>What's Changed</h2> <ul> <li>Use node bullseye to build arm images by <a href="https://github.com/viceice"><code>@​viceice</code></a> in <a href="https://redirect.github.com/WiseLibs/better-sqlite3/pull/1216">WiseLibs/better-sqlite3#1216</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/viceice"><code>@​viceice</code></a> made their first contribution in <a href="https://redirect.github.com/WiseLibs/better-sqlite3/pull/1216">WiseLibs/better-sqlite3#1216</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/WiseLibs/better-sqlite3/compare/v11.1.1...v11.1.2">https://github.com/WiseLibs/better-sqlite3/compare/v11.1.1...v11.1.2</a></p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/WiseLibs/better-sqlite3/commit/5d410bb7ac6eb32e071527bf5709cba8d2bfadb5"><code>5d410bb</code></a> 11.5.0</li> <li><a href="https://github.com/WiseLibs/better-sqlite3/commit/487007aabc883b79d80c767a5b06ea793bb38473"><code>487007a</code></a> Update SQLite to version 3.47.0 (<a href="https://redirect.github.com/WiseLibs/better-sqlite3/issues/1284">#1284</a>)</li> <li><a href="https://github.com/WiseLibs/better-sqlite3/commit/698cc8512ac0a54f06f268772b41abe32677c438"><code>698cc85</code></a> Added NodeJS 23 Support (<a href="https://redirect.github.com/WiseLibs/better-sqlite3/issues/1283">#1283</a>)</li> <li><a href="https://github.com/WiseLibs/better-sqlite3/commit/667d2f31843a2d76b3ebdc92097d323616e16a9b"><code>667d2f3</code></a> 11.4.0</li> <li><a href="https://github.com/WiseLibs/better-sqlite3/commit/abd354681f3f86e27e7c3deac7d3beb702c3d8fd"><code>abd3546</code></a> Prebuild for Electron 33 (<a href="https://redirect.github.com/WiseLibs/better-sqlite3/issues/1279">#1279</a>)</li> <li><a href="https://github.com/WiseLibs/better-sqlite3/commit/f01e0e42da4b8ba509961e772132e69ef5aa11c0"><code>f01e0e4</code></a> 11.3.0</li> <li><a href="https://github.com/WiseLibs/better-sqlite3/commit/8b584ef6a15caecf2b121a0891aa70d6e56f4f8f"><code>8b584ef</code></a> Update SQLite to version 3.46.1 (<a href="https://redirect.github.com/WiseLibs/better-sqlite3/issues/1252">#1252</a>)</li> <li><a href="https://github.com/WiseLibs/better-sqlite3/commit/f396b5b60e7ee00ef5631bd3c79479fdf66e895e"><code>f396b5b</code></a> Add new patch infra. (<a href="https://redirect.github.com/WiseLibs/better-sqlite3/issues/1239">#1239</a>)</li> <li><a href="https://github.com/WiseLibs/better-sqlite3/commit/7896456a42a4c3dfd878fe4abc68cd67603f6d98"><code>7896456</code></a> 11.2.1</li> <li><a href="https://github.com/WiseLibs/better-sqlite3/commit/2bf975e69b5e09b6a4d1cb08f589acf0c8594ed1"><code>2bf975e</code></a> Prebuild for Electron 32 (<a href="https://redirect.github.com/WiseLibs/better-sqlite3/issues/1242">#1242</a>)</li> <li>Additional commits viewable in <a href="https://github.com/WiseLibs/better-sqlite3/compare/v9.6.0...v11.5.0">compare view</a></li> </ul> </details> <br /> Dependabot will resolve any conflicts with this PR as long as you don't ... _Description has been truncated_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
ryangr0 2026-06-08 08:28:26 +00:00
Sign in to join this conversation.
No labels
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
webgrip/backstage-application#79
No description provided.