Bump the npm group with 7 updates
Type: Pull Request
State: Open
Association: Contributor
Comments: 0
(9 months ago)
(9 months ago)
dependencies javascript
poad
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(omittingrequestPermission()),DeviceOrientationEvent(omittingrequestPermission()),PointerEvent,PromiseRejectionEvent, andTransitionEvent.- Added
movementXandmovementYtoMouseEvent. (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 specifictypeproperties and other properties that depend on the type.sendTo()was renamed toforwardTo().- The
jsdomErrorsoption toforwardTo()can be used to control which errors are sent to the Node.js console. This replaces the previousomitJSDOMErrorsboolean option."jsdomError"s for failedXMLHttpRequestfetches 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
nwsapito@asamuzakjp/dom-selector, closing over 20 selector-related bugs.- Upgraded
tough-cookie, which now considers URLs likehttp://localhost/to be secure contexts (per the spec), and thus will returnSecure-flagged cookies for such URLs. (colincasey)- Upgraded
cssstyle, which brings along many improvements and fixes to theCSSStyleDeclarationobject 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 aPointerEventinstead of aMouseEvent.- Changed certain events to be passive by default.
- Changed the
<input>element'spattern=""attribute to use thevregular expression flag, instead ofu.- Fixed many specification conformance issues with the
Windowobject, 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
ElementInternalsaccessibility 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 asHTMLSelectElementinstances.- Fixed
jsdom.reconfigure({ url })not updatingdocument.baseURIor properties derived from it. (This regressed in v26.1.0.)- Fixed CSS system colors, as well as the
initial,inherit, andunsetkeywords, to resolve correctly. (asamuzaK)- Fixed CSS
displaystyle 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 likehttp://localhost/to be secure contexts (per the spec), and thus will returnSecure-flagged cookies for such URLs. (colincasey)- Added
customElements.getName(). (mash-graz)- Changed the
<input>element'spattern=""attribute to use thevregular expression flag, instead ofu.- Fixed
jsdom.reconfigure({ url })not updatingdocument.baseURIor properties derived from it. This regressed in v26.1.0.- Fixed CSS system colors, as well as the
initial,inherit, andunsetkeywords, 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
backgroundproperty parsing and serialization. (asamuzaK)- Fixed CSS color parsing and serialization inside of gradients. (asamuzaK)
- Fixed CSS
displaystyle resolution. (asamuzaK)- Upgraded
@asamuzakjp/dom-selector, which notably fixed repeated use of the:scopeselector. (asamuzaK)Version 27.0.0-beta.2
Significantly improved specification conformance for the
Windowobject, 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
cssstyleto v4.4.0, which brings along various conformance fixes to theCSSStyleDeclarationobject and its properties.Version 27.0.0-beta.1
Breaking changes:
... (truncated)
Commits
f2a505dVersion 27.0.0ab384d4Update dependencies and dev dependenciesff31107Add passing :nth-child() in shadow DOM regresssion test4e92a8eAdd passing :scope() in :not() regression testc3d6940Version 27.0.0-beta.38073baeUse "v" instead of "u" for the pattern="" attributed77ffd0Implement customElements.getName()ac385f9Fix reconfigure() not updating base URL caches3ccd5deUpdate tough-cookie to v6c2de8bdAddress 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
- Normalize gradient line by
@asamuzaKin asamuzaK/cssColor#84Full Changelog: https://github.com/asamuzaK/cssColor/compare/v4.0.2...v4.0.3
v4.0.2
What's Changed
- Add resolve gradient function by
@asamuzaKin asamuzaK/cssColor#83Full Changelog: https://github.com/asamuzaK/cssColor/compare/v4.0.0...v4.0.2
v4.0.0
What's Changed
- Support light-dark() by
@asamuzaKin asamuzaK/cssColor#81- Resolve colors in gradients by
@asamuzaKin asamuzaK/cssColor#82Full 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, andpaddingshorthands.- Add
propertyListexport 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
\inrequire()calls, which was very broken.v5.2.0
- Change the parser used for the
cssTextsetter fromrrweb-cssomtocss-tree.v5.1.0
- Implement full
displayproperty parsing and serializationv5.0.0
The minimum supported Node.js version is now v20.
- Fix
!importantwith custom properties. (This regressed in v4.4.0.)- Lots of improvements to background-related property parsing and serialization.
Commits
79811e25.3.008d557fModify parsers to be AST-basedc4d5ed45.2.1a4e58f5Always generate require()s with /, not \49afb785.2.040fe70bUse css-tree instead of rrweb-cssom6d79c165.1.052cbc50Implement the display property20d66b1Resolve values in gradients439fb175.0.0- Additional commits viewable in compare view
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
5f500816.0.00e03e13Update dependencies, dev deps, and minimum Node- See full diff in compare view
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
Authors: 1
- Rémi (
@remusao)v7.0.13
:scroll: Update Public Suffix List
:nut_and_bolt: Dependencies
- Bump lerna from 8.2.2 to 8.2.3 #2376 (
@dependabot[bot])- Bump rollup from 4.40.0 to 4.50.0 #2413 (
@dependabot[bot])- Bump mocha from 11.1.0 to 11.7.2 #2414 (
@dependabot[bot])- Bump
@rollup/plugin-typescriptfrom 12.1.2 to 12.1.4 #2374 (@dependabot[bot])- Bump form-data from 4.0.0 to 4.0.4 #2388 (
@dependabot[bot])- Bump typescript from 5.8.3 to 5.9.2 #2393 (
@dependabot[bot])tldts-core,tldts-experimental,tldts-icann,tldts-utils,tldts
- Bump
@types/nodefrom 22.14.1 to 24.3.1 #2415 (@dependabot[bot])Authors: 2
@dependabot[bot]- Rémi (
@remusao)v7.0.12
:scroll: Update Public Suffix List
:memo: Documentation
tldts
- correct example for domain.unknown in README.md #2399 (
@jkennedyphlo)Authors: 2
@jkennedyphlo- Rémi (
@remusao)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
Authors: 1
- Rémi (
@remusao)
v7.0.13 (Sat Sep 06 2025)
:scroll: Update Public Suffix List
:nut_and_bolt: Dependencies
- Bump lerna from 8.2.2 to 8.2.3 #2376 (
@dependabot[bot])- Bump rollup from 4.40.0 to 4.50.0 #2413 (
@dependabot[bot])- Bump mocha from 11.1.0 to 11.7.2 #2414 (
@dependabot[bot])- Bump
@rollup/plugin-typescriptfrom 12.1.2 to 12.1.4 #2374 (@dependabot[bot])- Bump form-data from 4.0.0 to 4.0.4 #2388 (
@dependabot[bot])- Bump typescript from 5.8.3 to 5.9.2 #2393 (
@dependabot[bot])tldts-core,tldts-experimental,tldts-icann,tldts-utils,tldts
- Bump
@types/nodefrom 22.14.1 to 24.3.1 #2415 (@dependabot[bot])Authors: 2
@dependabot[bot]- Rémi (
@remusao)
v7.0.12 (Tue Aug 19 2025)
:scroll: Update Public Suffix List
:memo: Documentation
tldts
- correct example for domain.unknown in README.md #2399 (
@jkennedyphlo)
... (truncated)
Commits
45cc868Bump version to: v7.0.14 [skip ci]7d4af94Update CHANGELOG.md [skip ci]7b1b280Update upstream public suffix list (#2417)776ef1bBump version to: v7.0.13 [skip ci]deca904Update CHANGELOG.md [skip ci]c51e15fUpdate upstream public suffix list (#2406)05cd3faBump lerna from 8.2.2 to 8.2.3 (#2376)053efb8Bump rollup from 4.40.0 to 4.50.0 (#2413)02f2a78Bump mocha from 11.1.0 to 11.7.2 (#2414)a54e2e5Bump@types/nodefrom 22.14.1 to 24.3.1 (#2415)- Additional commits viewable in compare view
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
Authors: 1
- Rémi (
@remusao)v7.0.13
:scroll: Update Public Suffix List
:nut_and_bolt: Dependencies
- Bump lerna from 8.2.2 to 8.2.3 #2376 (
@dependabot[bot])- Bump rollup from 4.40.0 to 4.50.0 #2413 (
@dependabot[bot])- Bump mocha from 11.1.0 to 11.7.2 #2414 (
@dependabot[bot])- Bump
@rollup/plugin-typescriptfrom 12.1.2 to 12.1.4 #2374 (@dependabot[bot])- Bump form-data from 4.0.0 to 4.0.4 #2388 (
@dependabot[bot])- Bump typescript from 5.8.3 to 5.9.2 #2393 (
@dependabot[bot])tldts-core,tldts-experimental,tldts-icann,tldts-utils,tldts
- Bump
@types/nodefrom 22.14.1 to 24.3.1 #2415 (@dependabot[bot])Authors: 2
@dependabot[bot]- Rémi (
@remusao)v7.0.12
:scroll: Update Public Suffix List
:memo: Documentation
tldts
- correct example for domain.unknown in README.md #2399 (
@jkennedyphlo)Authors: 2
@jkennedyphlo- Rémi (
@remusao)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
Authors: 1
- Rémi (
@remusao)
v7.0.13 (Sat Sep 06 2025)
:scroll: Update Public Suffix List
:nut_and_bolt: Dependencies
- Bump lerna from 8.2.2 to 8.2.3 #2376 (
@dependabot[bot])- Bump rollup from 4.40.0 to 4.50.0 #2413 (
@dependabot[bot])- Bump mocha from 11.1.0 to 11.7.2 #2414 (
@dependabot[bot])- Bump
@rollup/plugin-typescriptfrom 12.1.2 to 12.1.4 #2374 (@dependabot[bot])- Bump form-data from 4.0.0 to 4.0.4 #2388 (
@dependabot[bot])- Bump typescript from 5.8.3 to 5.9.2 #2393 (
@dependabot[bot])tldts-core,tldts-experimental,tldts-icann,tldts-utils,tldts
- Bump
@types/nodefrom 22.14.1 to 24.3.1 #2415 (@dependabot[bot])Authors: 2
@dependabot[bot]- Rémi (
@remusao)
v7.0.12 (Tue Aug 19 2025)
:scroll: Update Public Suffix List
:memo: Documentation
tldts
- correct example for domain.unknown in README.md #2399 (
@jkennedyphlo)
... (truncated)
Commits
45cc868Bump version to: v7.0.14 [skip ci]7d4af94Update CHANGELOG.md [skip ci]7b1b280Update upstream public suffix list (#2417)776ef1bBump version to: v7.0.13 [skip ci]deca904Update CHANGELOG.md [skip ci]c51e15fUpdate upstream public suffix list (#2406)05cd3faBump lerna from 8.2.2 to 8.2.3 (#2376)053efb8Bump rollup from 4.40.0 to 4.50.0 (#2413)02f2a78Bump mocha from 11.1.0 to 11.7.2 (#2414)a54e2e5Bump@types/nodefrom 22.14.1 to 24.3.1 (#2415)- Additional commits viewable in compare view
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
httpwill 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
- Bump globals from 15.14.0 to 16.0.0 by
@dependabot[bot] in salesforce/tough-cookie#504- Bump the dev-dependencies group with 10 updates by
@dependabot[bot] in salesforce/tough-cookie#503- Bump tldts from 6.1.76 to 6.1.79 in the production-dependencies group by
@dependabot[bot] in salesforce/tough-cookie#502- Bump tldts from 6.1.83 to 6.1.85 in the production-dependencies group by
@dependabot[bot] in salesforce/tough-cookie#507- Bump the dev-dependencies group with 9 updates by
@dependabot[bot] in salesforce/tough-cookie#508- Bump eslint-import-resolver-typescript from 3.8.3 to 4.3.1 by
@dependabot[bot] in salesforce/tough-cookie#509- feat: Add RFC 6761–compliant localhost loopback checks so secure cookies work on localhost (fixes: #382) by
@Chriss4123in salesforce/tough-cookie#498- use ESM instead of CJS by
@wjhsfin salesforce/tough-cookie#506- Switch from jest to vitest by
@wjhsfin salesforce/tough-cookie#510- Bump vite from 6.2.6 to 6.3.4 by
@dependabot[bot] in salesforce/tough-cookie#521- Bump the dev-dependencies group with 9 updates by
@dependabot[bot] in salesforce/tough-cookie#522- Bump tldts from 6.1.85 to 7.0.5 by
@dependabot[bot] in salesforce/tough-cookie#523- Prepare release v6.0.0-rc.0 by
@colincaseyin salesforce/tough-cookie#519- Bump the dev-dependencies group with 12 updates by
@dependabot[bot] in salesforce/tough-cookie#525- Bump tldts from 7.0.5 to 7.0.8 in the production-dependencies group by
@dependabot[bot] in salesforce/tough-cookie#524- Create CONTRIBUTING.md by
@wjhsfin salesforce/tough-cookie#526- Bump tldts from 7.0.8 to 7.0.9 in the production-dependencies group by
@dependabot[bot] in salesforce/tough-cookie#530- chore(deps): bump tldts from 7.0.9 to 7.0.10 in the production-dependencies group by
@dependabot[bot] in salesforce/tough-cookie#532- Bump the dev-dependencies group with 12 updates by
@dependabot[bot] in salesforce/tough-cookie#531- Reverts the check on the Secure attribute when setting a cookie by
@colincaseyin salesforce/tough-cookie#534- Prepare release v6.0.0-rc.1 by
@colincaseyin salesforce/tough-cookie#535- Bump the dev-dependencies group with 8 updates by
@dependabot[bot] in salesforce/tough-cookie#537- Support publishing of both ESM and CJS by
@colincaseyin salesforce/tough-cookie#536- Prepare v6 by
@colincaseyin salesforce/tough-cookie#538New Contributors
@Chriss4123made their first contribution in salesforce/tough-cookie#498Full Changelog: https://github.com/salesforce/tough-cookie/compare/v5.1.2...v6.0.0
Commits
62be1e4Prepare v6 (#538)5e2cf1cSupport publishing of both ESM and CJS (#536)d0c0ee8Bump the dev-dependencies group with 8 updates (#537)98c77266.0.0-rc.1 (#535)c024d1dReverts the check on the Secure attribute when setting a cookie (#534)6d729f9Bump the dev-dependencies group with 12 updates (#531)eb872bfchore(deps): bump tldts in the production-dependencies group (#532)e0a859dBump tldts from 7.0.8 to 7.0.9 in the production-dependencies group (#530)25e3e46Create CONTRIBUTING.md (#526)27582e8Bump 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 rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major versionwill 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 versionwill 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
1
2
+115
-58
Package Dependencies
Technical Details
| ID: | 7700898 |
| UUID: | 2827500038 |
| Node ID: | PR_kwDONx1qVc6oiDoG |
| Host: | GitHub |
| Repository: | poad/solid-start-ssr-lambda |
| Merge State: | Unknown |