An open index of dependabot pull requests across open source projects.

Bump the npm group with 7 updates

Open
Number: #140
Type: Pull Request
State: Open
Author: dependabot[bot] dependabot[bot]
Association: Contributor
Comments: 0
Created: September 15, 2025 at 01:47 AM UTC
(9 months ago)
Updated: September 15, 2025 at 01:47 AM UTC
(9 months ago)
Labels:
dependencies javascript
Assignees:
poad
Description:

Bumps the npm group with 7 updates:

Package From To
jsdom 26.1.0 27.0.0
@asamuzakjp/css-color 3.2.0 4.0.4
cssstyle 4.6.0 5.3.0
data-urls 5.0.0 6.0.0
tldts-core 6.1.86 7.0.14
tldts 6.1.86 7.0.14
tough-cookie 5.1.2 6.0.0

Updates jsdom from 26.1.0 to 27.0.0

Release notes

Sourced from jsdom's releases.

Version 27.0.0

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.

Version 27.0.0-beta.3

  • Breaking change: 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)
  • Added customElements.getName(). (mash-graz)
  • Changed the <input> element's pattern="" attribute to use the v regular expression flag, instead of u.
  • 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. This is especially important since the change in v27.0.0-beta.1 to use system colors in the user agent stylesheet. (asamuzaK)
  • Fixed CSS background property parsing and serialization. (asamuzaK)
  • Fixed CSS color parsing and serialization inside of gradients. (asamuzaK)
  • Fixed CSS display style resolution. (asamuzaK)
  • Upgraded @asamuzakjp/dom-selector, which notably fixed repeated use of the :scope selector. (asamuzaK)

Version 27.0.0-beta.2

Significantly improved specification conformance for the Window object, including named properties and changing various data properties to accessor properties. This is not likely to be breaking, but since it's a complex change to such a core object, we're happy to do another beta testing release with this included before graduating the v27 line to stable.

Additionally, updated cssstyle to v4.4.0, which brings along various conformance fixes to the CSSStyleDeclaration object and its properties.

Version 27.0.0-beta.1

Breaking changes:

... (truncated)

Changelog

Sourced from jsdom's changelog.

27.0.0

Commits
  • f2a505d Version 27.0.0
  • ab384d4 Update dependencies and dev dependencies
  • ff31107 Add passing :nth-child() in shadow DOM regresssion test
  • 4e92a8e Add passing :scope() in :not() regression test
  • c3d6940 Version 27.0.0-beta.3
  • 8073bae Use "v" instead of "u" for the pattern="" attribute
  • d77ffd0 Implement customElements.getName()
  • ac385f9 Fix reconfigure() not updating base URL caches
  • 3ccd5de Update tough-cookie to v6
  • c2de8bd Address CSS regressions in v27 beta
  • Additional commits viewable in compare view

Updates @asamuzakjp/css-color from 3.2.0 to 4.0.4

Release notes

Sourced from @​asamuzakjp/css-color's releases.

v4.0.4

Full Changelog: https://github.com/asamuzaK/cssColor/compare/v4.0.3...v4.0.4

v4.0.3

What's Changed

Full Changelog: https://github.com/asamuzaK/cssColor/compare/v4.0.2...v4.0.3

v4.0.2

What's Changed

Full Changelog: https://github.com/asamuzaK/cssColor/compare/v4.0.0...v4.0.2

v4.0.0

What's Changed

Full Changelog: https://github.com/asamuzaK/cssColor/compare/v3.2.0...v4.0.0

Commits

Updates cssstyle from 4.6.0 to 5.3.0

Release notes

Sourced from cssstyle's releases.

5.3.0

Modify parsers to be AST-based

  • Improve internal processing by switching from regular expression matching to AST-based parsing.
  • Improve getter and setter of cssText.
  • Improve serialization of border, flex, margin, and padding shorthands.
  • Add propertyList export that lists the supported properties and their data. (This will eventually be used in jsdom, but it is still experimental.)

v5.2.1

  • Fix a regression in v5.2.0 where the generated files used \ in require() calls, which was very broken.

v5.2.0

  • Change the parser used for the cssText setter from rrweb-cssom to css-tree.

v5.1.0

  • Implement full display property parsing and serialization

v5.0.0

The minimum supported Node.js version is now v20.

  • Fix !important with custom properties. (This regressed in v4.4.0.)
  • Lots of improvements to background-related property parsing and serialization.
Commits

Updates data-urls from 5.0.0 to 6.0.0

Release notes

Sourced from data-urls's releases.

6.0.0

Node.js v20 is now the minimum supported version.

Commits

Updates tldts-core from 6.1.86 to 7.0.14

Release notes

Sourced from tldts-core's releases.

v7.0.14

:scroll: Update Public Suffix List

  • tldts-experimental, tldts

Authors: 1

v7.0.13

:scroll: Update Public Suffix List

  • tldts-experimental, tldts-icann, tldts

:nut_and_bolt: Dependencies

Authors: 2

v7.0.12

:scroll: Update Public Suffix List

  • tldts-experimental, tldts-icann, tldts

:memo: Documentation

Authors: 2

v7.0.11

:scroll: Update Public Suffix List

... (truncated)

Changelog

Sourced from tldts-core's changelog.

v7.0.14 (Thu Sep 11 2025)

:scroll: Update Public Suffix List

  • tldts-experimental, tldts

Authors: 1


v7.0.13 (Sat Sep 06 2025)

:scroll: Update Public Suffix List

  • tldts-experimental, tldts-icann, tldts

:nut_and_bolt: Dependencies

Authors: 2


v7.0.12 (Tue Aug 19 2025)

:scroll: Update Public Suffix List

  • tldts-experimental, tldts-icann, tldts

:memo: Documentation

... (truncated)

Commits

Updates tldts from 6.1.86 to 7.0.14

Release notes

Sourced from tldts's releases.

v7.0.14

:scroll: Update Public Suffix List

  • tldts-experimental, tldts

Authors: 1

v7.0.13

:scroll: Update Public Suffix List

  • tldts-experimental, tldts-icann, tldts

:nut_and_bolt: Dependencies

Authors: 2

v7.0.12

:scroll: Update Public Suffix List

  • tldts-experimental, tldts-icann, tldts

:memo: Documentation

Authors: 2

v7.0.11

:scroll: Update Public Suffix List

... (truncated)

Changelog

Sourced from tldts's changelog.

v7.0.14 (Thu Sep 11 2025)

:scroll: Update Public Suffix List

  • tldts-experimental, tldts

Authors: 1


v7.0.13 (Sat Sep 06 2025)

:scroll: Update Public Suffix List

  • tldts-experimental, tldts-icann, tldts

:nut_and_bolt: Dependencies

Authors: 2


v7.0.12 (Tue Aug 19 2025)

:scroll: Update Public Suffix List

  • tldts-experimental, tldts-icann, tldts

:memo: Documentation

... (truncated)

Commits

Updates tough-cookie from 5.1.2 to 6.0.0

Release notes

Sourced from tough-cookie's releases.

v6.0.0

Summary

Breaking Changes

  • Localhost connections over http will now be considered secure by default. For more information, see the README documentation and API Docs for how to configure this feature.

Other Notable Changes

  • Dual publishing of ESM+CJS

What's Changed

New Contributors

Full Changelog: https://github.com/salesforce/tough-cookie/compare/v5.1.2...v6.0.0

Commits
  • 62be1e4 Prepare v6 (#538)
  • 5e2cf1c Support publishing of both ESM and CJS (#536)
  • d0c0ee8 Bump the dev-dependencies group with 8 updates (#537)
  • 98c7726 6.0.0-rc.1 (#535)
  • c024d1d Reverts the check on the Secure attribute when setting a cookie (#534)
  • 6d729f9 Bump the dev-dependencies group with 12 updates (#531)
  • eb872bf chore(deps): bump tldts in the production-dependencies group (#532)
  • e0a859d Bump tldts from 7.0.8 to 7.0.9 in the production-dependencies group (#530)
  • 25e3e46 Create CONTRIBUTING.md (#526)
  • 27582e8 Bump tldts from 7.0.5 to 7.0.8 in the production-dependencies group (#524)
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions
Pull Request Statistics
Commits:
1
Files Changed:
2
Additions:
+115
Deletions:
-58
Package Dependencies
Ecosystem:
npm
Version Change:
5.1.2 → 6.0.0
Update Type:
Major
Package:
jsdom
Ecosystem:
npm
Version Change:
26.1.0 → 27.0.0
Update Type:
Major
Package:
tldts
Ecosystem:
npm
Version Change:
6.1.86 → 7.0.14
Update Type:
Major
Ecosystem:
npm
Version Change:
3.2.0 → 4.0.4
Update Type:
Major
Package:
cssstyle
Ecosystem:
npm
Version Change:
4.6.0 → 5.3.0
Update Type:
Major
Package:
tldts-core
Ecosystem:
npm
Version Change:
6.1.86 → 7.0.14
Update Type:
Major
Package:
data-urls
Ecosystem:
npm
Version Change:
5.0.0 → 6.0.0
Update Type:
Major
Technical Details
ID: 7700898
UUID: 2827500038
Node ID: PR_kwDONx1qVc6oiDoG
Host: GitHub
Repository: poad/solid-start-ssr-lambda
Merge State: Unknown