Skip to content

chore(deps): update devdependencies-major (major)#97

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/major-devdependencies-major
Open

chore(deps): update devdependencies-major (major)#97
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/major-devdependencies-major

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented Jan 27, 2025

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
@types/node (source) 22.19.1724.12.2 age confidence
@vite-pwa/astro 0.5.11.2.0 age confidence
jsdom 26.1.029.1.1 age confidence
netlify-cli 18.1.026.0.1 age confidence
vitest (source) 2.1.94.1.5 age confidence

Release Notes

vite-pwa/astro (@​vite-pwa/astro)

v1.2.0

Compare Source

No significant changes

    View changes on GitHub

v1.1.1

Compare Source

No significant changes

    View changes on GitHub

v1.1.0

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v1.0.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v1.0.0

Compare Source

   🚨 Breaking Changes
    View changes on GitHub
jsdom/jsdom (jsdom)

v29.1.1

Compare Source

v29.1.0

Compare Source

v29.0.2

Compare Source

  • Significantly improved and sped up getComputedStyle(). Computed value rules are now applied across a broader set of properties, and include fixes related to inheritance, defaulting keywords, custom properties, and color-related values such as currentcolor and system colors. (@​asamuzaK)
  • Fixed CSS 'background' and 'border' shorthand parsing. (@​asamuzaK)

v29.0.1

Compare Source

v29.0.0

Compare Source

Breaking changes:

  • Node.js v22.13.0+ is now the minimum supported v22 version (was v22.12.0+).

Other changes:

  • Overhauled the CSSOM implementation, replacing the @acemir/cssom and cssstyle dependencies with fresh internal implementations built on webidl2js wrappers and the css-tree parser. Serialization, parsing, and API behavior is improved in various ways, especially around edge cases.
  • Added CSSCounterStyleRule and CSSNamespaceRule to jsdom Windows.
  • Added cssMediaRule.matches and cssSupportsRule.matches getters.
  • Added proper media query parsing in MediaList, using css-tree instead of naive comma-splitting. Invalid queries become "not all" per spec.
  • Added cssKeyframeRule.keyText getter/setter validation.
  • Added cssStyleRule.selectorText setter validation: invalid selectors are now rejected.
  • Added styleSheet.ownerNode, styleSheet.href, and styleSheet.title.
  • Added bad port blocking per the fetch specification, preventing fetches to commonly-abused ports.
  • Improved Document initialization performance by lazily initializing the CSS selector engine, avoiding ~0.5 ms of overhead per Document. (thypon)
  • Fixed a memory leak when stylesheets were removed from the document.
  • Fixed CSSStyleDeclaration modifications to properly trigger custom element reactions.
  • Fixed nested @media rule parsing.
  • Fixed CSSStyleSheet's "disallow modification" flag not being checked in all mutation methods.
  • Fixed XMLHttpRequest's response getter returning parsed JSON during the LOADING state instead of null.
  • Fixed getComputedStyle() crashing in XHTML documents when stylesheets contained at-rules such as @page or @font-face.
  • Fixed a potential hang in synchronous XMLHttpRequest caused by a race condition with the worker thread's idle timeout.

v28.1.0

Compare Source

  • Added blob.text(), blob.arrayBuffer(), and blob.bytes() methods.
  • Improved getComputedStyle() to account for CSS specificity when multiple rules apply. (asamuzaK)
  • Improved synchronous XMLHttpRequest performance by using a persistent worker thread, avoiding ~400ms of setup overhead on every synchronous request after the first one.
  • Improved performance of node.getRootNode(), node.isConnected, and event.dispatchEvent() by caching the root node of document-connected trees.
  • Fixed getComputedStyle() to correctly handle !important priority. (asamuzaK)
  • Fixed document.getElementById() to return the first element in tree order when multiple elements share the same ID.
  • Fixed <svg> elements to no longer incorrectly proxy event handlers to the Window.
  • Fixed FileReader event timing and fileReader.result state to more closely follow the spec.
  • Fixed a potential hang when synchronous XMLHttpRequest encountered dispatch errors.
  • Fixed compatibility with environments where Node.js's built-in fetch() has been used before importing jsdom, by working around undici v6/v7 incompatibilities.

v28.0.0

Compare Source

  • Overhauled resource loading customization. See the new README for details on the new API.
  • Added MIME type sniffing to <iframe> and <frame> loads.
  • Regression: WebSockets are no longer correctly throttled to one connection per origin. This is a result of the bug at nodejs/undici#4743.
  • Fixed decoding of the query components of <a> and <area> elements in non-UTF-8 documents.
  • Fixed XMLHttpRequest fetches and WebSocket upgrade requests to be interceptable by the new customizable resource loading. (Except synchronous XMLHttpRequests.)
  • Fixed the referrer of a document to be set correctly when redirects are involved; it is now the initiating page, not the last hop in the redirect chain.
  • Fixed correctness bugs when passing ArrayBuffers or typed arrays to various APIs, where they would not correctly snapshot the data.
  • Fixed require("url").parse() deprecation warning when using WebSockets.
  • Fixed <iframe>, <frame>, and <img> (when canvas is installed) to fire load events, not error events, on non-OK HTTP responses.
  • Fixed many small issues in XMLHttpRequest.

v27.4.0

Compare Source

  • Added TextEncoder and TextDecoder.
  • Improved decoding of HTML bytes by using the new @exodus/bytes package; it is now much more correct. (ChALkeR)
  • Improved decoding of XML bytes to use UTF-8 more often, instead of sniffing for <meta charset> or using the parent frame's encoding.
  • Fixed a memory leak when Ranges were used and then the elements referred to by those ranges were removed.

v27.3.0

Compare Source

  • Improved CSS parsing and CSSOM object APIs via updates to @acemir/cssom. (acemir)

v27.2.0

Compare Source

  • Added CSSGroupingRule, CSSNestedDeclarations, CSSConditionRule, CSSContainerRule, CSSScopeRule, CSSSupportsRule, CSSLayerBlockRule, and CSSLayerStatementRule to jsdom Windows. (acemir)
  • Improved CSS parsing and CSSOM object APIs via updates to @acemir/cssom. (acemir)
  • Fixed @import-ed stylesheets to be properly exposed to CSSOM, and not to overwrite the sheet created from the <link> or <style> element. (acemir)

v27.1.0

Compare Source

  • Improved CSS parsing by switching to @acemir/cssom, including support for nested selectors, nested declarations, layer statements, and improved at-rule validation. (acemir)
  • Fixed some selector cache invalidation issues where changes to attributes were not being picked up. (asamuzaK)
  • Fixed package.json "engines" field to reflect the new minimum Node.js versions needed to run jsdom, as noted in the changelog for v27.0.1.

v27.0.1

Compare Source

  • Fixed some regressions in CSS selectors. Most such regression fixes were done in a minor update of a dependency, and thus available for all fresh installs of v27.0.0. However, one related to class="" attribute changes is only possible with a new version of jsdom. (asamuzaK)

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.
netlify/cli (netlify-cli)

v26.0.1

Compare Source

Bug Fixes

v26.0.0

Compare Source

⚠ BREAKING CHANGES
  • add support for new Netlify Database primitive (#​8212)
Features
Bug Fixes

v25.6.2

Compare Source

Bug Fixes

v25.6.1

Compare Source

Bug Fixes

v25.6.0

Compare Source

Features
Bug Fixes

v25.5.0

Compare Source

Features
Bug Fixes

v25.4.0

Compare Source

Features
Bug Fixes

v25.3.0

Compare Source

Features
  • add deprecation messaging for legacy Netlify DB extension (#​8141) (cb924d4)
Bug Fixes

v25.2.0

Compare Source

Features
Bug Fixes
  • don't cause fatal issues when doing update checks inside of agent sandbox (#​8186) (acaf478)
  • filter out intentional user-input errors from error-reporting-lamda (#​8188) (b5b60e3)
  • improve reliability of anon deploys (#​8170) (95b5e52)

v25.1.1

Compare Source

Bug Fixes
  • filter out intentional user-input errors from report-error (#​8178) (7c50c25)

v25.1.0

Compare Source

Features

v25.0.1

Compare Source

Bug Fixes
  • have login attempt to use browser and fallback to ticket instead of forcing tickets (#​8167) (7da602c)

v25.0.0

Compare Source

⚠ BREAKING CHANGES
  • stop including npm-shrinkwrap.json (#​8163)
  • remove logs:function, logs:deploy, and logs:edge-functions commands in favor of a new unified logs command (#​8158)
  • remove Go and Rust function templates from functions:create command (#​7957)
Features
Bug Fixes

v24.11.3

Compare Source

Bug Fixes

v24.11.2

Compare Source

Bug Fixes
  • deps: upgrade vulnerable lodash, picomatch, and defu (#​8146) (4f5073d)

v24.11.1

Compare Source

Bug Fixes

v24.11.0

Compare Source

Features

v24.10.0

Compare Source

Features
Bug Fixes

v24.9.0

Compare Source

Features

v24.8.2

Compare Source

Bug Fixes

v24.8.1

Compare Source

Bug Fixes
  • improve ax error handling around missing commands or unknown flags (0715310)

v24.8.0

Compare Source

Features
Bug Fixes

v24.7.0

Compare Source

Features
Bug Fixes

v24.6.2

Compare Source

Bug Fixes

v24.6.1

Compare Source

Bug Fixes

v24.6.0

Compare Source

Features
Bug Fixes

v24.5.1

Compare Source

Bug Fixes

v24.5.0

Compare Source

Features
Bug Fixes

v24.4.1

Compare Source

Bug Fixes

v24.4.0

Compare Source

Features
Bug Fixes

v24.3.0

Compare Source

Features
Bug Fixes

v24.2.0

Compare Source

Features
Bug Fixes

v24.1.0

Compare Source

Features
Bug Fixes

v24.0.1

Compare Source

Bug Fixes

v24.0.0

Compare Source

⚠ BREAKING CHANGES
  • remove sites:create-template command (#​7946)
Features
Bug Fixes

v23.15.1

[Compare Source](https://redirect.g

Note

PR body was truncated to here.


Configuration

📅 Schedule: (in timezone Europe/Berlin)

  • Branch creation
    • "every 2 weeks on Monday before 7am"
  • Automerge
    • At any time (no schedule defined)

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

Rebasing: Whenever PR becomes conflicted, 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.

@cloudflare-workers-and-pages
Copy link
Copy Markdown

cloudflare-workers-and-pages Bot commented Jan 27, 2025

Deploying p5-code-sandbox with  Cloudflare Pages  Cloudflare Pages

Latest commit: 5b2de8d
Status:🚫  Build failed.

View logs

@netlify
Copy link
Copy Markdown

netlify Bot commented Jan 27, 2025

Deploy Preview for p5-codesandbox failed. Why did it fail? →

Name Link
🔨 Latest commit 5b2de8d
🔍 Latest deploy log https://app.netlify.com/projects/p5-codesandbox/deploys/6a0c900cd5739c0008fce759

@renovate renovate Bot force-pushed the renovate/major-devdependencies-major branch from 0bbc46a to 8b575a9 Compare January 27, 2025 06:37
@renovate renovate Bot force-pushed the renovate/major-devdependencies-major branch 2 times, most recently from 248f1a2 to 94a6a50 Compare February 10, 2025 06:34
@renovate renovate Bot force-pushed the renovate/major-devdependencies-major branch 2 times, most recently from 9b93b04 to 809986a Compare February 24, 2025 04:30
@renovate renovate Bot changed the title chore(deps): update dependency vitest to v3 chore(deps): update devdependencies-major (major) Feb 24, 2025
@renovate renovate Bot force-pushed the renovate/major-devdependencies-major branch 2 times, most recently from 52c665e to 02fd9a5 Compare February 24, 2025 18:10
@renovate renovate Bot changed the title chore(deps): update devdependencies-major (major) chore(deps): update dependency vitest to v3 Mar 4, 2025
@renovate renovate Bot force-pushed the renovate/major-devdependencies-major branch from 02fd9a5 to d91ef80 Compare March 5, 2025 00:25
@renovate renovate Bot changed the title chore(deps): update dependency vitest to v3 chore(deps): update devdependencies-major (major) Mar 5, 2025
@renovate renovate Bot force-pushed the renovate/major-devdependencies-major branch 2 times, most recently from 095aca1 to 0ae1f47 Compare March 6, 2025 16:43
@renovate renovate Bot force-pushed the renovate/major-devdependencies-major branch 2 times, most recently from f74e8de to 46004b9 Compare March 20, 2025 17:51
@renovate renovate Bot force-pushed the renovate/major-devdependencies-major branch 6 times, most recently from b125860 to ca1d5d0 Compare April 2, 2025 00:24
@renovate renovate Bot force-pushed the renovate/major-devdependencies-major branch 5 times, most recently from 457ad62 to fd20b32 Compare April 10, 2025 18:14
@renovate renovate Bot force-pushed the renovate/major-devdependencies-major branch 2 times, most recently from 60b92b1 to 6a6f5f2 Compare April 16, 2025 14:01
@renovate renovate Bot force-pushed the renovate/major-devdependencies-major branch 6 times, most recently from 4476da7 to eb08570 Compare May 19, 2025 19:43
@renovate renovate Bot force-pushed the renovate/major-devdependencies-major branch 6 times, most recently from e80c362 to 0e57398 Compare June 6, 2025 22:19
@renovate renovate Bot force-pushed the renovate/major-devdependencies-major branch 2 times, most recently from 7419c56 to d27d916 Compare June 16, 2025 03:37
@renovate renovate Bot force-pushed the renovate/major-devdependencies-major branch 4 times, most recently from 587cd99 to b9d51db Compare June 24, 2025 15:15
@renovate renovate Bot force-pushed the renovate/major-devdependencies-major branch 4 times, most recently from 6852a81 to ebb5fb1 Compare June 30, 2025 03:28
@renovate renovate Bot force-pushed the renovate/major-devdependencies-major branch 2 times, most recently from cb3da69 to fd59761 Compare July 14, 2025 04:11
@renovate renovate Bot force-pushed the renovate/major-devdependencies-major branch from fd59761 to 86a240b Compare July 17, 2025 01:09
@renovate renovate Bot force-pushed the renovate/major-devdependencies-major branch 2 times, most recently from d4c3e30 to b79451e Compare July 28, 2025 04:15
@renovate renovate Bot force-pushed the renovate/major-devdependencies-major branch from b79451e to 7a377ca Compare August 8, 2025 12:21
@renovate
Copy link
Copy Markdown
Contributor Author

renovate Bot commented May 1, 2026

⚠️ Artifact update problem

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

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

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

The artifact failure details are included below:

File name: package-lock.json
npm warn Unknown env config "store". This will stop working in the next major version of npm.
npm error code ERESOLVE
npm error ERESOLVE could not resolve
npm error
npm error While resolving: vitest@4.1.5
npm error Found: @opentelemetry/api@1.8.0
npm error node_modules/@opentelemetry/api
npm error   @opentelemetry/api@"1.8.0" from netlify-cli@26.0.1
npm error   node_modules/netlify-cli
npm error     dev netlify-cli@"26.0.1" from the root project
npm error   peer @opentelemetry/api@"~1.8.0" from @netlify/build@35.13.4
npm error   node_modules/@netlify/build
npm error     @netlify/build@"35.13.4" from netlify-cli@26.0.1
npm error     node_modules/netlify-cli
npm error       dev netlify-cli@"26.0.1" from the root project
npm error   10 more (@netlify/opentelemetry-utils, @opentelemetry/core, ...)
npm error
npm error Could not resolve dependency:
npm error peerOptional @opentelemetry/api@"^1.9.0" from vitest@4.1.5
npm error node_modules/vitest
npm error   dev vitest@"4.1.5" from the root project
npm error
npm error Conflicting peer dependency: @opentelemetry/api@1.9.1
npm error node_modules/@opentelemetry/api
npm error   peerOptional @opentelemetry/api@"^1.9.0" from vitest@4.1.5
npm error   node_modules/vitest
npm error     dev vitest@"4.1.5" from the root project
npm error
npm error Fix the upstream dependency conflict, or retry
npm error this command with --force or --legacy-peer-deps
npm error to accept an incorrect (and potentially broken) dependency resolution.
npm error
npm error
npm error For a full report see:
npm error /runner/cache/others/npm/_logs/2026-05-19T16_28_59_281Z-eresolve-report.txt
npm error A complete log of this run can be found in: /runner/cache/others/npm/_logs/2026-05-19T16_28_59_281Z-debug-0.log

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