Skip to content
This repository has been archived by the owner on Dec 30, 2023. It is now read-only.

chore(Renovate): ⬆️ Update package(s) development dependencies (major) #113

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jun 1, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@edge-runtime/vm (source) 2.1.2 -> 3.1.7 age adoption passing confidence
happy-dom 9.19.2 -> 12.10.3 age adoption passing confidence
jsdom 22.0.0 -> 23.0.1 age adoption passing confidence

Release Notes

vercel/edge-runtime (@​edge-runtime/vm)

v3.1.7

Compare Source

Patch Changes

v3.1.6

Compare Source

Patch Changes

v3.1.5

Compare Source

Patch Changes

v3.1.4

Compare Source

Patch Changes

v3.1.3

Compare Source

Patch Changes

v3.1.2

Compare Source

Patch Changes

v3.1.1

Compare Source

Patch Changes

v3.1.0

Compare Source

Minor Changes
Patch Changes

v3.0.4

Compare Source

Patch Changes

v3.0.3

Compare Source

Patch Changes

v3.0.2

Compare Source

Patch Changes

v3.0.1

Compare Source

Patch Changes

v3.0.0

Compare Source

Major Changes
  • remove .require helpers. This is not necessary as people can add dependencies (#​355)
    to the context and instanceof should just work.

    we don't use the vm as a security boundary, so we don't need to worry about
    people adding malicious code to the context.

Minor Changes
  • Fix instanceof tests, upgrade undici and revamp how we import stuff into the VM (#​309)
Patch Changes
capricorn86/happy-dom (happy-dom)

v12.10.3

Compare Source

👷‍♂️ Patch fixes
  • Fix for week being wrong sometimes as it is not calculated as UTC in HTMLInputElement.valueAsDate(). (#​1144)

Thank you @​IGx89 for your contribution!

v12.10.2

Compare Source

👷‍♂️ Patch fixes
  • Element.cloneNode() should not clone scroll properties. (#​1148)

v12.10.1

Compare Source

👷‍♂️ Patch fixes
  • Fixes wrong callback parameter order of "key" and "value" in FormData.forEach(). (#​1136)

Thank you @​armandabric for your contribution!

v12.10.0

Compare Source

🎨 Features
  • Adds support for Navigator.sendBeacon(). (#​309)
  • Adds support for the property Window.CSSStyleDeclaration. (#​309)

v12.9.2

Compare Source

👷‍♂️ Patch fixes
  • Fixes Node 18.18.2+ support in @happy-dom/global-registrator by not binding classes to the global object. (#​1140)

Thank you @​IGx89 for your contribution!

v12.9.1

Compare Source

👷‍♂️ Patch fixes
  • Fixes typo in documentation. (#​1123)

Thank you @​goring for your contribution!

v12.9.0

Compare Source

🎨 Features
  • Improves performance of the async task manager. This will improve performance of timers in general as they have less logic executed related to the async task manager. (#​1114)

v12.8.1

Compare Source

👷‍♂️ Patch fixes
  • Adds missing second parameter in callbacks from MutationObserver. (#​1113)

Thank you @​wojtekmaj for your contribution!

v12.8.0

Compare Source

🎨 Features
  • Adds support for Clipboard, ClipboardItem, Permissions and PermissionStatus, which are used by the Window.navigator.clipboard and Window.navigator.permissions properties. (#​833)
  • Adds support for ClipboardEvent. (#​833)
  • Improves support for DataTransfer, DataTransferItemList and DataTransferItem. (#​833)
  • Adds MutationRecord class to Window as a property. (#​1112)
👷‍♂️ Patch fixes
  • Restores HTMLInputElement.checked state when Event.preventDefault() is called on a dispatched "click" event.

v12.7.0

Compare Source

🎨 Features
  • Adds support for Element.scrollWidth. (#​1109)

v12.6.0

Compare Source

🎨 Features
  • Adds support for dispatching a click event on the control element when clicking on a label. (#​1023)

v12.5.1

Compare Source

🎨 Features
  • Adds support for DocumentFragment as a constructor (e.g. new DocumentFragment()). (#​940)
👷‍♂️ Patch fixes
  • Fixes issue related to ownerDocument being null when executing ownerDocument.createElement() in React 18. The error occurred when rendering a Radix UI component. The root cause was that React 18 uses DocumentFragment as a constructor which was not supported. (#​940)

v12.5.0

Compare Source

🎨 Features
  • Add FocusEvent.relatedTarget to blur and focus events. (#​1094)

Thank you @​artursvonda for your contribution!

v12.4.0

Compare Source

🎨 Features
  • Add support for Document.currentScript. (#​1099)

Thank you @​ckhampus for your contribution!

v12.3.0

Compare Source

🎨 Features
  • Uses vm.Script for setting globals instead of a string to improve performance. (#​1102)
👷‍♂️ Patch fixes
  • Improves logic in Window.happyDOM.whenAsyncComplete(). (#​1102)

v12.2.2

Compare Source

👷‍♂️ Patch fixes
  • Makes PointerEvent implementation more specification compliant. (#​1092)

Thank you @​tkrotoff for your contribution!

v12.2.1

Compare Source

👷‍♂️ Patch fixes
  • Adds support for Symbol.toStringTag to EventTarget and AbortSignal. (#​1097)

Thank you @​Afsoon for your contribution!

v12.2.0

Compare Source

🎨 Features
  • Adds support for HTMLElement.clientLeft and HTMLElement.clientTop. (#​1089)

Thank you @​konomae for your contribution!

v12.1.7

Compare Source

👷‍♂️ Patch fixes
  • Makes NamedNodeMap.removeNamedItem() throw an exception on missing item. (#​652)
  • Allow deletion of nonexistent keys from HTMLElement.dataset. Deleting a nonexistent key in a dataset will not throw an exception, even though it indirectly is using NamedNodeMap.removeNamedItem(). (#​652)

Thank you @​RussianCow for your contribution!

v12.1.6

Compare Source

👷‍♂️ Patch fixes
  • Fixes bug in URL.createObjectURL() where it did not support the Happy DOM Blob object. (#​847)
  • Makes sure that HTMLUnknownElement is disconnected from its parent when replaced by a custom element. (#​1087)

v12.1.5

Compare Source

👷‍♂️ Patch fixes

v12.1.4

Compare Source

👷‍♂️ Patch fixes

v12.1.3

Compare Source

👷‍♂️ Patch fixes
  • Allows global properties to be overwritten when using GlobalRegistrator from @​happy-dom/global-registrator, as some global properties may behave different from the Happy DOM implementation. The properties will be restored when unregistering. (#​1049)

v12.1.2

Compare Source

👷‍♂️ Patch fixes
  • Adds support for Document.referrer. (#​653)

v12.1.1

Compare Source

👷‍♂️ Patch fixes
  • Fixes issue related to wrong computed style for "display" being return for HTMLDialogElement when it is open. It returned display: none, but should return display: block. This caused testing-library to not return the element when using getByRole('dialog'). (#​802)

v12.1.0

Compare Source

🎨 Features
  • Adds support for a new setting called disableErrorCapturing. Happy DOM will by default try to catch errors in functionality such as scripts, timers and event listeners. This setting makes it possible it to disable this behavior. (#​1073)

v12.0.1

Compare Source

👷‍♂️ Patch fixes
  • Fixes "__dirname not defined" error when using ESM. The error was introduced in v12.0.0. (#​1069)

Thank you @​ekwoka for collaborating on a fix!

v12.0.0

Compare Source

💣 Breaking Changes
  • Changes the default user agent. The default user agent will now be Mozilla/5.0 (X11; {process.platform} {process.arch}) AppleWebKit/537.36 (KHTML, like Gecko) HappyDOM/{packageVersion}. (#​1067)
🎨 Features
  • It is now possible to pass user agent as an option to the Window constructor or by setting Window.happyDOM.settings.navigator.userAgent. (#​1067)
  • React will no longer output the message Download the React DevTools for a better development experience to the console when using the default user agent. It was previously detected as a supported browser. (#​1067)

v11.2.0

Compare Source

🎨 Features
  • Adds support for Window.crypto. (#​1050)

Thank you @​Ayc0 for your contribution!

v11.1.2

Compare Source

👷‍♂️ Patch fixes
  • Only dispatch "close" event in HTMLDialogElement.close() when dialog was open. (#​1064)

Thank you @​Schleuse for your contribution!

v11.1.1

Compare Source

👷‍♂️ Patch fixes
  • Adds support for the mime type "image/svg+xml" to DOMParser.parseFromString(). It will no longer add HTML tags when parsing SVGs. (#​1040)

Thank you @​drtimwright for your contribution!

v11.1.0

Compare Source

🎨 Features
  • Add support for handling the <g> element as a an SVG element. (#​1034)

Thank you @​ottoszika for your contribution!

v11.0.6

Compare Source

👷‍♂️ Patch fixes

v11.0.5

Compare Source

👷‍♂️ Patch fixes
  • Increases timeout in Window.happyDOM.whenAsyncComplete(). (#​1059)

v11.0.4

Compare Source

👷‍♂️ Patch fixes
  • Jest was using setTimeout from Happy DOM internally for detecting when a test times out. This caused Window.happyDOM.whenAsyncComplete() and Window.happyDOM.cancelAsync() to not work as expected inside Jest. This is a bug in Jest, but this release adds a temporary fix to "@​happy-dom/jest-environment" until Jest has solved it. (#​1057)

v11.0.3

Compare Source

👷‍♂️ Patch fixes
  • Fixes an issue where the Promise returned by Window.happyDOM.whenAsyncComplete() was resolved to early in some scenarios. (#​1053)

v11.0.2

Compare Source

👷‍♂️ Patch fixes
  • Fixes documentation for packages in README.md. (#​1047)

v11.0.1

Compare Source

👷‍♂️ Patch fixes
  • Adds Virtual Console to Happy DOM index file. (#​1045)

v11.0.0

Compare Source

💣 Breaking Changes
  • Adds a new Virtual Console that by default will output all log entries to a Virtual Console Printer instead of using the global Node.js console. (#​1030)
  • Improves logic for catching errors in scripts, event listeners and timers. (#​1030)
🎨 Features
👷‍♂️ Patch fixes
  • Uses the default eval() for evaluating code instead of custom logic. This will make it possible to read context variables. #​1025

Thank you @​joeframbach for contributing with logic related to the eval() functionality!

v10.11.2

Compare Source

👷‍♂️ Patch fixes
  • Adds a check for if the selector text for a CSSStyleRule is valid when parsing a Stylesheet. Invalid selectors will be ignored (this is also how the spec is defined). (#​1036)

v10.11.1

Compare Source

v10.11.0

Compare Source

🎨 Features
  • Implements the properties childNodes and children as getters. (#​960)

Thank you @​edoardocavazza for your contribution!

v10.10.4

Compare Source

👷‍♂️ Patch fixes
  • Adds support for "calc()" in CSS values in CSSStyleDeclaration. (#​1014)

v10.10.3

Compare Source

👷‍♂️ Patch fixes
  • Adds support for URLs in attributes that doesn't use apostrophs in XMLParser. (#​999)

v10.10.2

Compare Source

👷‍♂️ Patch fixes

v10.10.1

Compare Source

👷‍♂️ Patch fixes
  • Fixes wrong return type in CSS.escape(). (#​1018)

Thank you @​zuisong for your contribution!

v10.10.0

Compare Source

🎨 Features
  • Add "Content-Type" header when constructing Request. (#​1016)

Thank you @​orionmiz for your contribution!

v10.9.0

Compare Source

🎨 Features
  • Adds support for Node.isSameNode(). (#​757)

v10.8.1

Compare Source

👷‍♂️ Patch fixes
  • Fixes an issue where an exception was thrown when loading an iframe using a relative URL. The URL is now relative to the main document URL instead. (#​1003)

v10.8.0

Compare Source

👷‍♂️ Patch fixes
  • Fixes bug related to item being null in HTMLButtonElement.attributes.removeNamedItem(). (#​1010)

Thank you @​maxmilton for your contribution!

v10.7.0

Compare Source

🎨 Features
  • Add support for Element.scrollHeight. The property will just return "0" for now. (#​991)

Thank you @​lukaselmer for your contribution!

v10.6.3

Compare Source

👷‍♂️ Patch fixes
  • Adds missing named CSS colors to CSSStyleDeclaration. (#​1004)

Thank you @​AlexisTessier for your contribution!

v10.6.2

Compare Source

v10.6.1

Compare Source

👷‍♂️ Patch fixes
  • Fixes issue where only labels associated using ID where found in HTMLButtonElement.labels, HTMLInputElement.labels, HTMLSelectElement.labels and HTMLTextAreaElement.labels. It will now also return labels associated by being a parent. (#​988)

Thank you @​joshkel for your contribution!

v10.6.0

Compare Source

🎨 Features
  • Improves support for support for HTMLLabelElement.control. It will now find child control elements that are deeper than one level. (#​530)

Thank you @​joshkel for your contribution!

v10.5.3

Compare Source

👷‍♂️ Patch fixes
  • Improves support for NamedNodeMap, which is used by the Element.attributes property. It will now reflect any changes done to it on the Element itself. (#​728)

v10.5.2

Compare Source

👷‍♂️ Patch fixes
  • Adds support for using an escape character in attribute query selectors (e.g. [ab="a\\:b"]). (#​632)

v10.5.1

Compare Source

👷‍♂️ Patch fixes
  • Fixes problem where HTMLIFrameElement fails to load page. The problem was most likely that some libraries overrides the Document.defaultView property somehow, making Document.defaultView.constructor not being the Window constructor. (#​992)

v10.5.0

Compare Source

🎨 Features
  • Fixes issue where CSS values with parentheses wasn't correctly parsed if the values also contained a comma. (#​976)
  • This fix should also fix a problem related to parsing a CSS string that ends with a variable setter. (#​670)

Thank you @​malko for your contribution!

v10.4.0

Compare Source

🎨 Features
  • Adds support for MouseEvent.movementX and MouseEvent.movementY. (#​953)

Thank you @​mertcan for your contribution!

v10.3.2

Compare Source

👷‍♂️ Patch fixes
  • Fixes problem with "?" in attribute names, not being parsed correctly in XMLParser. (#​984)
  • Fixes problem with single quoted attributes (') not being parsed correctly in XMLParser. (#​984)

v10.3.1

Compare Source

👷‍♂️ Patch fixes
  • Fixes problem where lit-html is using special characters in attributes, causing the XMLParser not to be able to parse the attribute correctly. (#​982)

v10.3.0

Compare Source

🎨 Features
  • Adds support for HTMLInputElement.valueAsDate. (#​977)

Thank you @​malko for your contribution!

v10.2.0

Compare Source

🎨 Features
  • Adds support for Window.queueMicrotask(). (#​959)

v10.1.1

Compare Source

👷‍♂️ Patch fixes
  • Fixes bug where Document.getRootNode() returned null, but should return the document. (#​950)

@​Schleuse thank you for your contribution!

v10.1.0

Compare Source

🎨 Features
  • Adds support for HTMLInputElement.valueAsNumber. (#​945)
  • Adds support for sanitizing values in input fields of type date, month, time and week in HTMLInputElement.value. (#​945)

Thank you @​malko for your contribution!

v10.0.7

Compare Source

v10.0.6

Compare Source

👷‍♂️ Patch fixes
  • Adds a timeout before dispatching the event in Window.postMessage() to better simulate the browser behavior. (#​948)

Thank you for your contribution @​DylanPiercey!

v10.0.5

Compare Source

👷‍♂️ Patch fixes
  • Fixes parsing of pseudo elements in CSS query selectors (e.g. "::-webkit-inner-spin-button"). (#​939)

Thank you @​btea for your contribution!

v10.0.4

Compare Source

v10.0.3

Compare Source

👷‍♂️ Patch fixes
  • Fixes issue with importing CJS modules directly. (#​968)

v10.0.2

Compare Source

v10.0.1

Compare Source

v10.0.0

Compare Source

🎨 Features
  • Adds support for ESM. Happy DOM will still have support for CommonJS. (#​873)
  • Migrates to Vitest for unit tests internally. (#​963)
👷‍♂️ Patch fixes
  • Adds support for capturing errors when executing Javascript in HTMLScriptElement. It will log the errors in the console and trigger an error event instead of failing the entire execution. (#​816)
💣 Breaking Changes
  • Adding support for ESM may be a breaking change as it can potentially exist build environments that doesn't support this configuration. (#​873)

v9.20.3

Compare Source

👷‍♂️ Patch fixes
  • Fixes issue where all properties didn't get copied from HTMLUnknownElement to a custom element that is replacing it when it is defined. (#​668)

v9.20.2

Compare Source

👷‍♂️ Patch fixes
  • Fixes issue where CSS variable values where not returned by Window.getComputedStyle() when calling CSSStyleDeclaration.getPropertyValue(). (#​932)

v9.20.1

Compare Source

👷‍♂️ Patch fixes
  • Fixes problem with querySelectorAll() where it didn't always return elements in document order. (#​928)

v9.20.0

Compare Source

🎨 Features
  • Adds support for disabling the simulation of rendering when calculating computed style. The rendering process converts units such as rem, em and cm to pixels, but it is very limited. (#​929)
  • Changes the behavior of converting percentage values to "0px" when calculating computed style (as it fails to convert) to just leave the values.
jsdom/jsdom (jsdom)

v23.0.1

Compare Source

  • Fix incorrect canvas peer dependency.

v23.0.0

Compare Source

v22.1.0

Compare Source

  • Added crypto.randomUUID(). (jamesbvaughan)
  • Added DOMRect and DOMRectReadOnly.
  • Added AbortSignal.timeout().
  • Added abortSignal.throwIfAborted().
  • Added support for the submitter argument to the FormData constructor. (jenseng)
  • Improved getComputedStyle()'s results for color-based properties, to resolve named colors and attempt to provide initial inheritance support. (hoekz-wwt)
  • Updated Window's event handler properties (e.g. oncopy, ontouchstart, etc.) to reflect the latest list from the standard.
  • Fixed DOMParser-created documents to inherit their URL from the creating document.

Configuration

📅 Schedule: Branch creation - "after 10pm every weekday,on sunday,before 5am every weekday" in timezone Asia/Taipei, 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 has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot requested review from a team and xeho91 June 1, 2023 16:03
@renovate renovate bot added 📦 packages 🧩 dependencies Related to the dependencies labels Jun 1, 2023
@changeset-bot
Copy link

changeset-bot bot commented Jun 1, 2023

⚠️ No Changeset found

Latest commit: 3a67fde

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@renovate
Copy link
Contributor Author

renovate bot commented Jun 1, 2023

⚠ 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: pnpm-lock.yaml
[10:54:52.255] INFO (10): Installing tool node v20.10.0...
v20.10.0
10.2.3
0.22.0
[10:54:55.064] INFO (10): Installed tool node in 2.8s.
[10:54:55.559] INFO (53): Installing tool pnpm v8.5.1...
8.5.1
[10:54:56.901] INFO (53): Installed tool pnpm in 1.3s.
Scope: all 17 workspace projects
.                                        |  WARN  There are cyclic workspace dependencies: /tmp/worker/dd324c/873493/repos/github/terminal-nerds/snippets/packages/array, /tmp/worker/dd324c/873493/repos/github/terminal-nerds/snippets/packages/number, /tmp/worker/dd324c/873493/repos/github/terminal-nerds/snippets/packages/environment
.                                        |  WARN  Your pnpm-lock.yaml was generated by a newer version of pnpm. It is a compatible version but it might get downgraded to version 6.0
 ERROR  /@ampproject/remapping@2.2.1 is an invalid relative dependency path

pnpm: /@ampproject/remapping@2.2.1 is an invalid relative dependency path
    at Object.parse2 [as parse] (/opt/containerbase/tools/pnpm/8.5.1/node_modules/pnpm/dist/pnpm.cjs:114178:15)
    at nameVerFromPkgSnapshot (/opt/containerbase/tools/pnpm/8.5.1/node_modules/pnpm/dist/pnpm.cjs:114287:28)
    at addPreferredVersionsFromLockfile (/opt/containerbase/tools/pnpm/8.5.1/node_modules/pnpm/dist/pnpm.cjs:196837:89)
    at getPreferredVersionsFromLockfileAndManifests (/opt/containerbase/tools/pnpm/8.5.1/node_modules/pnpm/dist/pnpm.cjs:196831:7)
    at _installInContext (/opt/containerbase/tools/pnpm/8.5.1/node_modules/pnpm/dist/pnpm.cjs:197757:142)
    at async installInContext (/opt/containerbase/tools/pnpm/8.5.1/node_modules/pnpm/dist/pnpm.cjs:198099:16)
    at async _install (/opt/containerbase/tools/pnpm/8.5.1/node_modules/pnpm/dist/pnpm.cjs:197622:25)
    at async mutateModules (/opt/containerbase/tools/pnpm/8.5.1/node_modules/pnpm/dist/pnpm.cjs:197344:23)
    at async recursive (/opt/containerbase/tools/pnpm/8.5.1/node_modules/pnpm/dist/pnpm.cjs:198939:50)
    at async installDeps (/opt/containerbase/tools/pnpm/8.5.1/node_modules/pnpm/dist/pnpm.cjs:199235:11)

@ghost
Copy link

ghost commented Jun 1, 2023

👇 Click on the image for a new way to code review

Review these changes using an interactive CodeSee Map

Legend

CodeSee Map legend

@renovate renovate bot force-pushed the renovate/major-package(s)-development-dependencies branch 2 times, most recently from d9278f2 to c617808 Compare June 4, 2023 10:44
@renovate renovate bot force-pushed the renovate/major-package(s)-development-dependencies branch 2 times, most recently from aa8fd52 to e303a4e Compare June 18, 2023 18:36
@renovate renovate bot force-pushed the renovate/major-package(s)-development-dependencies branch from e303a4e to 87da7c5 Compare July 8, 2023 22:27
@renovate renovate bot changed the title chore(Renovate): ⬆️ Update dependency @edge-runtime/vm to v3 chore(Renovate): ⬆️ Update package(s) development dependencies (major) Jul 8, 2023
@renovate renovate bot force-pushed the renovate/major-package(s)-development-dependencies branch 8 times, most recently from b09ea0a to c317f00 Compare July 16, 2023 20:02
@renovate renovate bot force-pushed the renovate/major-package(s)-development-dependencies branch 5 times, most recently from bff9a7b to db4c2e9 Compare July 22, 2023 14:59
@renovate renovate bot force-pushed the renovate/major-package(s)-development-dependencies branch 4 times, most recently from df6235e to d2330b4 Compare August 7, 2023 22:11
@renovate renovate bot force-pushed the renovate/major-package(s)-development-dependencies branch 7 times, most recently from 5a724bc to ef1b48f Compare September 21, 2023 22:20
@renovate renovate bot force-pushed the renovate/major-package(s)-development-dependencies branch 4 times, most recently from da1fe53 to 3319b4e Compare September 30, 2023 16:14
@renovate renovate bot force-pushed the renovate/major-package(s)-development-dependencies branch 9 times, most recently from e3b1a72 to 43e1d67 Compare October 8, 2023 13:18
@renovate renovate bot force-pushed the renovate/major-package(s)-development-dependencies branch from 43e1d67 to 13cf2d8 Compare October 12, 2023 19:40
@renovate renovate bot force-pushed the renovate/major-package(s)-development-dependencies branch from 13cf2d8 to 5c72e42 Compare October 20, 2023 12:42
@renovate renovate bot force-pushed the renovate/major-package(s)-development-dependencies branch 4 times, most recently from 4c4c4d1 to 929ec81 Compare October 30, 2023 22:49
@renovate renovate bot force-pushed the renovate/major-package(s)-development-dependencies branch from 929ec81 to 28e4a29 Compare November 5, 2023 16:22
@renovate renovate bot force-pushed the renovate/major-package(s)-development-dependencies branch from 28e4a29 to e0b6077 Compare November 29, 2023 15:18
@renovate renovate bot force-pushed the renovate/major-package(s)-development-dependencies branch from e0b6077 to 3a67fde Compare December 3, 2023 10:55
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
🧩 dependencies Related to the dependencies 📦 packages
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants