Skip to content

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Mar 11, 2025

Coming soon: The Renovate bot (GitHub App) will be renamed to Mend. PRs from Renovate will soon appear from 'Mend'. Learn more here.

This PR contains the following updates:

Package Change Age Confidence
@playcanvas/pcui (source) 4.6.0 -> 5.2.2 age confidence
@rollup/plugin-node-resolve (source) 15.3.1 -> 16.0.1 age confidence
@types/react (source) 18.3.18 -> 19.1.13 age confidence
@types/react-dom (source) 18.3.5 -> 19.1.9 age confidence
chai (source) 5.2.0 -> 6.0.1 age confidence
cross-env 7.0.3 -> 10.0.0 age confidence
jsdom 26.1.0 -> 27.0.0 age confidence
puppeteer (source) 23.11.1 -> 24.20.0 age confidence
react (source) 18.3.1 -> 19.1.1 age confidence
react-dom (source) 18.3.1 -> 19.1.1 age confidence
react-router-dom (source) 5.3.4 -> 7.9.1 age confidence
rollup-plugin-visualizer 5.14.0 -> 6.0.3 age confidence
sinon (source) 19.0.5 -> 21.0.0 age confidence

Release Notes

playcanvas/pcui (@​playcanvas/pcui)

v5.2.2

Compare Source

What's Changed

Full Changelog: playcanvas/pcui@v5.2.1...v5.2.2

v5.2.1

Compare Source

What's Changed

Full Changelog: playcanvas/pcui@v5.2.0...v5.2.1

v5.2.0

Compare Source

What's Changed

New Contributors

Full Changelog: playcanvas/pcui@v5.1.0...v5.2.0

v5.1.0

Compare Source

What's Changed

Full Changelog: playcanvas/pcui@v5.0.0...v5.1.0

v5.0.0

Compare Source

Breaking Changes

What's Changed

New Contributors

Full Changelog: playcanvas/pcui@v4.6.0...v5.0.0

rollup/plugins (@​rollup/plugin-node-resolve)

v16.0.1

2025-03-11

Bugfixes
  • fix: add ignoreSideEffectsForRoot to exported interface (#​1841)

v16.0.0

2024-12-15

Breaking Changes
  • feat!: set development or production condition (#​1823)
chaijs/chai (chai)

v6.0.1

Compare Source

What's Changed

Full Changelog: chaijs/chai@v6.0.0...v6.0.1

v6.0.0

Compare Source

BREAKING CHANGES

Chai is now bundled into a single file. The lib/*.js files are no longer present, and so any code that imports those files directly will need to change. The only file that can be imported now is ./index.js.

What's Changed

Full Changelog: chaijs/chai@v5.3.2...v6.0.0

v5.3.3

Compare Source

What's Changed

Full Changelog: chaijs/chai@v5.3.2...v5.3.3

v5.3.2

Compare Source

Reverts the removal of the bundled version of chai in 5.3.1

What's Changed

Full Changelog: chaijs/chai@v5.3.1...v5.3.2

v5.3.1

Compare Source

What's Changed

Full Changelog: chaijs/chai@v5.3.0...v5.3.1

v5.3.0

Compare Source

What's Changed

Full Changelog: chaijs/chai@v5.2.2...v5.3.0

v5.2.2

Compare Source

What's Changed

Full Changelog: chaijs/chai@v5.2.1...v5.2.2

v5.2.1

Compare Source

What's Changed

Mostly internal changes but @​SuperchupuDev realised the package.json engines field was out of date, so it has been updated to reflect that v5.0.0 onwards only supports Node >=18.

New Contributors

Full Changelog: chaijs/chai@v5.2.0...v5.2.1

kentcdodds/cross-env (cross-env)

v10.0.0

Compare Source

TL;DR: You should probably not have to change anything if:

  • You're using a modern maintained version of Node.js (v20+ is tested)
  • You're only using the CLI (most of you are as that's the intended purpose)

In this release (which should have been v8 except I had some issues with automated releases 🙈), I've updated all the things and modernized the package. This happened in #​261

Was this needed? Not really, but I just thought it'd be fun to modernize this package.

Here's the highlights of what was done.

  • Replace Jest with Vitest for testing
  • Convert all source files from .js to .ts with proper TypeScript types
  • Use zshy for ESM-only builds (removes CJS support)
  • Adopt @​epic-web/config for TypeScript, ESLint, and Prettier
  • Update to Node.js >=20 requirement
  • Remove kcd-scripts dependency
  • Add comprehensive e2e tests with GitHub Actions matrix testing
  • Update GitHub workflow with caching and cross-platform testing
  • Modernize documentation and remove outdated sections
  • Update all dependencies to latest versions
  • Add proper TypeScript declarations and exports

The tool maintains its original functionality while being completely modernized with the latest tooling and best practices

BREAKING CHANGES
  • This is a major rewrite that changes the module format from CommonJS to ESM-only. The package now requires Node.js >=20 and only exports ESM modules (not relevant in most cases).
jsdom/jsdom (jsdom)

v27.0.0

Compare Source

Changes since 26.1.0
  • Node.js v20 is now the minimum supported version.
  • Added a variety of event constructors, even though we do not implement their associated specifications or ever fire them: BeforeUnloadEvent, BlobEvent, DeviceMotionEvent (omitting requestPermission()), DeviceOrientationEvent (omitting requestPermission()), PointerEvent, PromiseRejectionEvent, and TransitionEvent.
  • Added movementX and movementY to MouseEvent. (These are from the Pointer Lock specification, the rest of which is not implemented.)
  • Added customElements.getName(). (mash-graz)
  • Updated the virtual console:
    • "jsdomError" events are now documented, with specific type properties and other properties that depend on the type.
    • sendTo() was renamed to forwardTo().
    • The jsdomErrors option to forwardTo() can be used to control which errors are sent to the Node.js console. This replaces the previous omitJSDOMErrors boolean option.
    • "jsdomError"s for failed XMLHttpRequest fetches are no longer emitted.
    • The values that are printed when forwarding "jsdomError"s to the Node.js console are streamlined.
  • Switched our CSS selector engine from nwsapi to @asamuzakjp/dom-selector, closing over 20 selector-related bugs.
  • Upgraded tough-cookie, which now considers URLs like http://localhost/ to be secure contexts (per the spec), and thus will return Secure-flagged cookies for such URLs. (colincasey)
  • Upgraded cssstyle, which brings along many improvements and fixes to the CSSStyleDeclaration object and its properties.
  • Updated the user agent stylesheet to be derived from the HTML Standard, instead of from an old revision of Chromium.
  • Changed element.click() to fire a PointerEvent instead of a MouseEvent.
  • Changed certain events to be passive by default.
  • Changed the <input> element's pattern="" attribute to use the v regular expression flag, instead of u.
  • Fixed many specification conformance issues with the Window object, including named properties and changing various data properties to accessor properties.
  • Fixed document.createEvent() to accept a more correct set of event names.
  • Fixed the ElementInternals accessibility getters and setters. (They were introduced in v23.1.0, but due to inadequate test coverage never actually worked.)
  • Fixed using Object.defineProperty() on certain objects, such as HTMLSelectElement instances.
  • Fixed jsdom.reconfigure({ url }) not updating document.baseURI or properties derived from it. (This regressed in v26.1.0.)
  • Fixed CSS system colors, as well as the initial, inherit, and unset keywords, to resolve correctly. (asamuzaK)
  • Fixed CSS display style resolution. (asamuzaK)
Changes since 27.0.0-beta.3
  • Upgraded cssstyle, which brings along various CSS parsing fixes.
puppeteer/puppeteer (puppeteer)

v24.20.0

Compare Source

Miscellaneous Chores
  • puppeteer: Synchronize puppeteer versions
Dependencies
  • The following workspace dependencies were updated
Features
Bug Fixes
  • accessibility: reports snapshot with uninteresting root and focusable Document is not a leaf node (#​14169) (3bad7ad)
  • roll to Chrome 140.0.7339.82 (#​14182) (7e4440d)

v24.19.0

Compare Source

Features
Bug Fixes
  • accessibility SerializedAXNode.elementHandle returns the parent's handle for text nodes (#​14159) (0cb49fd)
  • throw on history entry not found (#​14160) (f660ef8)
  • webdriver: support interception after continueWithAuth (#​14167) (21f1eb5)
Dependencies
  • The following workspace dependencies were updated
    • dependencies
      • puppeteer-core bumped from 24.18.0 to 24.19.0

v24.18.0

Compare Source

Features
Bug Fixes
  • accessibility SerializedAXNode.elementHandle returns the parent's handle for text nodes (#​14159) (0cb49fd)
  • throw on history entry not found (#​14160) (f660ef8)
  • webdriver: support interception after continueWithAuth (#​14167) (21f1eb5)
Dependencies
  • The following workspace dependencies were updated
    • dependencies
      • puppeteer-core bumped from 24.18.0 to 24.19.0

v24.17.1

Compare Source

Miscellaneous Chores
  • puppeteer: Synchronize puppeteer versions
Dependencies
  • The following workspace dependencies were updated
    • dependencies
      • puppeteer-core bumped from 24.17.1 to 24.18.0
Features
Bug Fixes

v24.17.0

Compare Source

Miscellaneous Chores
  • puppeteer: Synchronize puppeteer versions
Dependencies
  • The following workspace dependencies were updated
Features
Bug Fixes

v24.16.2

Compare Source

Miscellaneous Chores
  • puppeteer: Synchronize puppeteer versions
Dependencies
  • The following workspace dependencies were updated
    • dependencies
      • puppeteer-core bumped from 24.16.1 to 24.16.2
Bug Fixes

v24.16.1

Compare Source

Miscellaneous Chores
  • puppeteer: Synchronize puppeteer versions
Dependencies
  • The following workspace dependencies were updated
    • dependencies
      • puppeteer-core bumped from 24.16.1 to 24.16.2
Bug Fixes

v24.16.0

Compare Source

Miscellaneous Chores
  • puppeteer: Synchronize puppeteer versions
Dependencies
  • The following workspace dependencies were updated
    • dependencies
      • puppeteer-core bumped from 24.16.0 to 24.16.1
Bug Fixes

v24.15.0

Compare Source

Features
Dependencies
  • The following workspace dependencies were updated
    • dependencies
      • puppeteer-core bumped from 24.15.0 to 24.16.0
Bug Fixes

v24.14.0

Compare Source

Miscellaneous Chores
  • puppeteer: Synchronize puppeteer versions
Dependencies
  • The following workspace dependencies were updated
    • dependencies
      • puppeteer-core bumped from 24.14.0 to 24.15.0
Features
Bug Fixes

v24.13.0

Compare Source

Miscellaneous Chores
  • puppeteer: Synchronize puppeteer versions
Dependencies
  • The following workspace dependencies were updated
    • dependencies
      • puppeteer-core bumped from 24.12.1 to 24.13.0
Features
Bug Fixes
  • ignore errors caused by worker targets that do not support network conditions (#​14015) (d012588)

v24.12.1

Compare Source

Miscellaneous Chores
  • puppeteer: Synchronize puppeteer versions
Dependencies
  • The following workspace dependencies were updated
    • dependencies
      • puppeteer-core bumped from 24.12.1 to 24.13.0
Features
Bug Fixes
  • ignore errors caused by worker targets that do not support network conditions (#​14015) (d012588)

v24.12.0

Compare Source

Miscellaneous Chores
  • puppeteer: Synchronize puppeteer versions
Dependencies
  • The following workspace dependencies were updated
    • dependencies
      • puppeteer-core bumped from 24.12.0 to 24.12.1
Bug Fixes

v24.11.2

Compare Source

Miscellaneous Chores
  • puppeteer: Synchronize puppeteer versions
Dependencies
  • The following workspace dependencies were updated
    • dependencies
      • puppeteer-core bumped from 24.11.2 to 24.12.0
Features
Bug Fixes

v24.11.1

Compare Source

Miscellaneous Chores
  • puppeteer: Synchronize puppeteer versions
Dependencies
  • The following workspace dependencies were updated
    • dependencies
      • puppeteer-core bumped from 24.11.1 to 24.11.2
Bug Fixes

v24.11.0

Compare Source

Miscellaneous Chores
  • puppeteer: Synchronize puppeteer versions
Dependencies
  • The following workspace dependencies were updated
    • dependencies
      • puppeteer-core bumped from 24.11.0 to 24.11.1
Bug Fixes

v24.10.2

Compare Source

Features
Dependencies
  • The following workspace dependencies were updated
    • dependencies
      • puppeteer-core bumped from 24.10.2 to 24.11.0

v24.10.1

Compare Source

Miscellaneous Chores
  • puppeteer: Synchronize puppeteer versions
Dependencies
  • The following workspace dependencies were updated
    • dependencies
      • puppeteer-core bumped from 24.10.1 to 24.10.2
Bug Fixes

v24.10.0

Compare Source

Miscellaneous Chores
  • puppeteer: Synchronize puppeteer versions
Dependencies
  • The following workspace dependencies were updated
    • dependencies
      • puppeteer-core bumped from 24.10.0 to 24.10.1
Bug Fixes

v24.9.0

Compare Source

Features
Dependencies
  • The following workspace dependencies were updated
    • dependencies
      • puppeteer-core bumped from 24.9.0 to 24.10.0
Bug Fixes

v24.8.2

Compare Source

Miscellaneous Chores
  • puppeteer: Synchronize puppeteer versions
Dependencies
  • The following workspace dependencies were updated
Bug Fixes

v24.8.1

Compare Source

Bug Fixes
Dependencies
  • The following workspace dependencies were updated
    • dependencies
      • puppeteer-core bumped from 24.8.0 to 24.8.1

v24.8.0

Compare Source

Bug Fixes
Dependencies
  • The following workspace dependencies were updated
    • dependencies
      • puppeteer-core bumped from 24.8.0 to 24.8.1

[v24.7.2](https://redirect.gi


Configuration

📅 Schedule: Branch creation - "on monday at 10:00am" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


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

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/major-all-npm-dependencies branch from 147a30c to 95eb31c Compare March 11, 2025 14:04
@renovate renovate bot force-pushed the renovate/major-all-npm-dependencies branch from 95eb31c to 26b10e7 Compare March 11, 2025 15:23
@renovate renovate bot force-pushed the renovate/major-all-npm-dependencies branch from 26b10e7 to 05d7732 Compare March 11, 2025 17:35
@renovate renovate bot force-pushed the renovate/major-all-npm-dependencies branch from 05d7732 to 20c7488 Compare March 11, 2025 19:35
@renovate renovate bot force-pushed the renovate/major-all-npm-dependencies branch from 20c7488 to b052610 Compare March 11, 2025 21:30
@renovate renovate bot force-pushed the renovate/major-all-npm-dependencies branch 2 times, most recently from 8cd2579 to 40ae97f Compare March 12, 2025 16:31
@renovate renovate bot force-pushed the renovate/major-all-npm-dependencies branch from 40ae97f to 7dc3cf5 Compare March 13, 2025 09:25
@renovate renovate bot force-pushed the renovate/major-all-npm-dependencies branch from 7dc3cf5 to 6930bbc Compare March 13, 2025 11:18
@renovate renovate bot force-pushed the renovate/major-all-npm-dependencies branch from 6930bbc to 66087c9 Compare March 13, 2025 13:54
@renovate renovate bot force-pushed the renovate/major-all-npm-dependencies branch from 66087c9 to 1f41d62 Compare March 14, 2025 10:27
@renovate renovate bot force-pushed the renovate/major-all-npm-dependencies branch from 1f41d62 to c4d670e Compare March 14, 2025 12:40
@renovate renovate bot force-pushed the renovate/major-all-npm-dependencies branch from c4d670e to f460a7b Compare March 14, 2025 12:42
@renovate renovate bot force-pushed the renovate/major-all-npm-dependencies branch from f460a7b to 0443a85 Compare March 14, 2025 15:04
@renovate renovate bot force-pushed the renovate/major-all-npm-dependencies branch from 0443a85 to e72e0cb Compare March 14, 2025 17:23
@renovate renovate bot force-pushed the renovate/major-all-npm-dependencies branch from df0fb84 to 1f45913 Compare September 5, 2025 16:12
@renovate renovate bot force-pushed the renovate/major-all-npm-dependencies branch 2 times, most recently from bf70cae to 244e778 Compare September 8, 2025 09:01
@renovate renovate bot force-pushed the renovate/major-all-npm-dependencies branch from 244e778 to 7941c61 Compare September 8, 2025 11:47
@renovate renovate bot force-pushed the renovate/major-all-npm-dependencies branch from 7941c61 to 7de9167 Compare September 8, 2025 13:14
@renovate renovate bot force-pushed the renovate/major-all-npm-dependencies branch from 7de9167 to cee1dee Compare September 8, 2025 15:16
@renovate renovate bot force-pushed the renovate/major-all-npm-dependencies branch from cee1dee to 889edb2 Compare September 9, 2025 14:51
@renovate renovate bot force-pushed the renovate/major-all-npm-dependencies branch from 889edb2 to 700261f Compare September 9, 2025 16:29
@renovate renovate bot force-pushed the renovate/major-all-npm-dependencies branch from 700261f to 6b6f221 Compare September 10, 2025 13:13
@renovate renovate bot force-pushed the renovate/major-all-npm-dependencies branch from 6b6f221 to 25fc8a9 Compare September 10, 2025 17:00
@renovate renovate bot force-pushed the renovate/major-all-npm-dependencies branch from 25fc8a9 to 644a15e Compare September 11, 2025 17:46
@renovate renovate bot force-pushed the renovate/major-all-npm-dependencies branch from 644a15e to b801e41 Compare September 12, 2025 19:14
@renovate renovate bot force-pushed the renovate/major-all-npm-dependencies branch from b801e41 to f413c1d Compare September 13, 2025 04:47
@renovate renovate bot force-pushed the renovate/major-all-npm-dependencies branch from f413c1d to 8a70296 Compare September 13, 2025 08:02
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.

0 participants