chore(deps): update dev-dependencies (major) #3890

Merged
konrad merged 3 commits from renovate/major-dev-dependencies into main 2024-01-17 09:17:37 +00:00
Member

This PR contains the following updates:

Package Type Update Change
@vitejs/plugin-vue (source) devDependencies major 4.6.2 -> 5.0.3
happy-dom devDependencies major 12.10.3 -> 13.1.4

Release Notes

vitejs/vite-plugin-vue (@​vitejs/plugin-vue)

v5.0.3

v5.0.2

  • fix: ensure consistent user template options when reusing AST (bc0ad64), closes #​322
  • fix: only enable ast reuse for vue 3.4.3+ (4a53b6f)
  • chore: bump vue to 3.4.2 (97002e1)

v5.0.1

v5.0.0

  • Breaking: drop reactivityTransform support
  • Breaking: drop Node 14/16 support
  • Breaking: drop Vite 4.x support
  • Vue 3.4 template AST reuse support
  • Vue 3.4 compile-time flag __VUE_PROD_HYDRATION_MISMATCH_DETAILS__ support
  • Added customElement option
  • Deprecated defineModel option
capricorn86/happy-dom (happy-dom)

v13.1.4

Compare Source

👷‍♂️ Patch fixes
  • Adds submitter to SubmitEvent instances dispatched by HTMLInputElement and HTMLButtonElement . (#​1173)

Thank you @​aaltepet for your contribution!

v13.1.3

Compare Source

👷‍♂️ Patch fixes
  • Throws an error when providing an invalid selector to querySelector() and querySelectorAll(). (#​1170)

Thank you @​btea for your contribution!

v13.1.2

Compare Source

👷‍♂️ Patch fixes
  • Selection.anchorOffset, Selection.baseOffset, Selection.focusOffset and Selection.extendOffset should return 0 when no range has been added. (#​1163)

Thank you @​seanogdev for your contribution!

v13.1.1

Compare Source

👷‍♂️ Patch fixes
  • Support whitespace with multiple spaces, line breaks or tabs in DOMTokenList (e.g. <div class=" class1 class2 ">). (#​1168)

Thank you @​takenspc for your contribution!

v13.1.0

Compare Source

🎨 Features
  • Makes properties into getters and setters according to spec in all nodes. (#​1188)
  • Adds support for adopted stylesheets to Window.getComputedStyle(). (#​1188)

v13.0.7

Compare Source

👷‍♂️ Patch fixes
  • Fixes issue related to using fake timers in Vitest making the test get stuck. (#​1210)

v13.0.6

Compare Source

👷‍♂️ Patch fixes
  • Fixes problem related to exception thrown when creating a Node in the constructor of a custom element. (#​1207)

v13.0.5

Compare Source

👷‍♂️ Patch fixes

v13.0.4

Compare Source

👷‍♂️ Patch fixes
  • Adds support for fallback values when declaring a CSS variable (e.g. "var(--my-var, #FFF)"). (#​1192)

v13.0.3

Compare Source

👷‍♂️ Patch fixes
  • Fixes problem with clearTimeout(), clearInterval() and cancelAnimationFrame() not supporting number values. (#​1201)

v13.0.2

Compare Source

👷‍♂️ Patch fixes
  • Removes unused browser setting. (#​1199)

v13.0.1

Compare Source

🎨 Features
  • Adds support for BrowserFrame.viewport. (#​466)
  • Adds support for Window.resizeTo(). (#​466)
  • Adds support for Window.resizeBy(). (#​466)
👷‍♂️ Patch fixes
  • Fixes issues related to viewport not being kept when navigating to new a URL. (#​466)

v13.0.0

Compare Source

💣 Breaking Changes
  • This is a big release where much of the code has been refactored to improve security and to support the new Browser API. A big release is always a potential risk of bugs, so it makes sense to make this a major release to avoid consumers automatically updating to it. (#​466)
🎨 Features
  • Adds support for a Browser API similar to Puppeteer and Playwright. With the Browser API, it is for example possible to create new pages and navigate in them. You can read more about it in the Happy DOM Wiki. (#​466)
  • Improves security by not exposing sensitive internal logic to scripts running within the Happy DOM Browser. (#​466)
  • Improves support for CORS management. It now supports "OPTIONS" requests to detect if the client is allowed to proceed with a cross origin request. (#​466)
  • Adds support for HTTP response cache. The cache is in memory, but the plan is to add support for storing it on disk in the future. (#​466)
  • Improves support for XMLHttpRequest. It now supports the GZip, Deflate and Brotli encodings. (#​466)
  • Adds support for adding a process level error event listener for capturing errors. This is useful when using the Browser API, but will not work in environments such as Jest and Vitest, as it collides with their error listener. (#​466)
  • Adds support for Ẁindow.open(). (#​466)
  • Adds support for Ẁindow.close(). This function should now be used when tearing down the environment. (#​466)
  • Improves support for cookies. (#​466)
  • Improves support for HTMLIFrameElement. (#​466)
  • Changes export of types to use "import type" and "export type" in "index.js". This will allow transpilers/compilers to optimize better. (#​466)
  • Adds support for navigating when clicking on an anchor link. (#​466)
  • Adds support for navigating when setting Location.href. (#​466)
  • Improves support for MutationObserver. It will now queue multiple records by using a microtask. It now also supports MutationObserver.takeRecords() for records that has not yet been published. (#​466)
  • Deprecates "@​happy-dom/uncaught-exception-observer" as the functionality is supported by "happy-dom" out of the box now. (#​466)
  • Changes internal properties to use Symbol instead of using "_" as a prefix, so they won't be enumerable. This will also make sure that these properties won't clash with properties defined by the consumer. It will use private properties with # where it is possible. (#​466)
👷‍♂️ Patch fixes
  • Improves the check for if the property is a class to avoid that it gets bound in "@​happy-dom/global-registrator". We only want functions to get bound to the global context. (#​466)
  • Fixes bug where new Document() didn't work according to spec. (#​466)
  • Fixes bug where several Element classes wheren't available as properties on Window. (#​466)
  • Fixes bug in Document.importNode() where it didn't change ownerDocument on child nodes. (#​466)
  • Resets static ownerDocument state used when creating Node instances, so that it can be garbage collected if not used anymore. (#​466)

Merry Christmas and a Happy New Year! 🎅

This release took some time as I didn't want to release the Browser API without applying security fixes. I've also stumbled across a few other issues along the way that I felt I needed to address.

Thank you everybody for the support! It is nice to see that so many people contribute to the project by reporting issues and doing code fixes.

I think that 2024 will be a fantastic year for Happy DOM with a lot of features and fixes bringing Happy DOM closer and closer to a "real" browser.


Configuration

📅 Schedule: Branch creation - "before 4am" (UTC), 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 Renovate Bot.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [@vitejs/plugin-vue](https://github.com/vitejs/vite-plugin-vue/tree/main/packages/plugin-vue#readme) ([source](https://github.com/vitejs/vite-plugin-vue/tree/HEAD/packages/plugin-vue)) | devDependencies | major | [`4.6.2` -> `5.0.3`](https://renovatebot.com/diffs/npm/@vitejs%2fplugin-vue/4.6.2/5.0.3) | | [happy-dom](https://github.com/capricorn86/happy-dom) | devDependencies | major | [`12.10.3` -> `13.1.4`](https://renovatebot.com/diffs/npm/happy-dom/12.10.3/13.1.4) | --- ### Release Notes <details> <summary>vitejs/vite-plugin-vue (@&#8203;vitejs/plugin-vue)</summary> ### [`v5.0.3`](https://github.com/vitejs/vite-plugin-vue/blob/HEAD/packages/plugin-vue/CHANGELOG.md#small503-2024-01-10-small) - fix(deps): update all non-major dependencies ([#&#8203;309](https://github.com/vitejs/vite-plugin-vue/issues/309)) ([8c694f6](https://github.com/vitejs/vite-plugin-vue/commit/8c694f6)), closes [#&#8203;309](https://github.com/vitejs/vite-plugin-vue/issues/309) - fix(plugin-vue): handle circular references in HMR check ([#&#8203;334](https://github.com/vitejs/vite-plugin-vue/issues/334)) ([eddcfa8](https://github.com/vitejs/vite-plugin-vue/commit/eddcfa8)), closes [#&#8203;334](https://github.com/vitejs/vite-plugin-vue/issues/334) [#&#8203;325](https://github.com/vitejs/vite-plugin-vue/issues/325) - fix(plugin-vue): handle custom element when hot update ([6ffee6d](https://github.com/vitejs/vite-plugin-vue/commit/6ffee6d)) - chore: fix typo ([0a3b9a5](https://github.com/vitejs/vite-plugin-vue/commit/0a3b9a5)) - chore(deps): update upstream ([#&#8203;310](https://github.com/vitejs/vite-plugin-vue/issues/310)) ([90eb484](https://github.com/vitejs/vite-plugin-vue/commit/90eb484)), closes [#&#8203;310](https://github.com/vitejs/vite-plugin-vue/issues/310) ### [`v5.0.2`](https://github.com/vitejs/vite-plugin-vue/blob/HEAD/packages/plugin-vue/CHANGELOG.md#small502-2023-12-30-small) - fix: ensure consistent user template options when reusing AST ([bc0ad64](https://github.com/vitejs/vite-plugin-vue/commit/bc0ad64)), closes [#&#8203;322](https://github.com/vitejs/vite-plugin-vue/issues/322) - fix: only enable ast reuse for vue 3.4.3+ ([4a53b6f](https://github.com/vitejs/vite-plugin-vue/commit/4a53b6f)) - chore: bump vue to 3.4.2 ([97002e1](https://github.com/vitejs/vite-plugin-vue/commit/97002e1)) ### [`v5.0.1`](https://github.com/vitejs/vite-plugin-vue/blob/HEAD/packages/plugin-vue/CHANGELOG.md#small501-2023-12-29-small) - fix: Revert "feat: support template AST reuse from Vue 3.4 parser" ([5d68fbd](https://github.com/vitejs/vite-plugin-vue/commit/5d68fbd)), closes [#&#8203;322](https://github.com/vitejs/vite-plugin-vue/issues/322) [/github.com/vuejs/core/blob/a41c5f1f4367a9f41bcdb8c4e02f54b2378e577d/packages/compiler-sfc/src/parse.ts#L133-L139](https://github.com//github.com/vuejs/core/blob/a41c5f1f4367a9f41bcdb8c4e02f54b2378e577d/packages/compiler-sfc/src/parse.ts/issues/L133-L139) [/github.com/vitejs/vite-plugin-vue/blob/f75de2e5284af6036efa45d5c9ec37757485e3a0/packages/plugin-vue/src/template.ts#L186-L190](https://github.com//github.com/vitejs/vite-plugin-vue/blob/f75de2e5284af6036efa45d5c9ec37757485e3a0/packages/plugin-vue/src/template.ts/issues/L186-L190) - chore: aggregated changelog for 5.0 ([2b33c32](https://github.com/vitejs/vite-plugin-vue/commit/2b33c32)) ### [`v5.0.0`](https://github.com/vitejs/vite-plugin-vue/blob/HEAD/packages/plugin-vue/CHANGELOG.md#500-2023-12-25) - **Breaking:** drop `reactivityTransform` support - **Breaking:** drop Node 14/16 support - **Breaking:** drop Vite 4.x support - Vue 3.4 template AST reuse support - Vue 3.4 compile-time flag `__VUE_PROD_HYDRATION_MISMATCH_DETAILS__` support - Added `customElement` option - Deprecated `defineModel` option </details> <details> <summary>capricorn86/happy-dom (happy-dom)</summary> ### [`v13.1.4`](https://github.com/capricorn86/happy-dom/releases/tag/v13.1.4) [Compare Source](https://github.com/capricorn86/happy-dom/compare/v13.1.3...v13.1.4) ##### :construction_worker_man: Patch fixes - Adds submitter to `SubmitEvent` instances dispatched by `HTMLInputElement` and `HTMLButtonElement` . ([#&#8203;1173](https://github.com/capricorn86/happy-dom/issues/1173)) *** Thank you [@&#8203;aaltepet](https://github.com/aaltepet) for your contribution! ### [`v13.1.3`](https://github.com/capricorn86/happy-dom/releases/tag/v13.1.3) [Compare Source](https://github.com/capricorn86/happy-dom/compare/v13.1.2...v13.1.3) ##### :construction_worker_man: Patch fixes - Throws an error when providing an invalid selector to `querySelector()` and `querySelectorAll()`. ([#&#8203;1170](https://github.com/capricorn86/happy-dom/issues/1170)) *** Thank you [@&#8203;btea](https://github.com/btea) for your contribution! ### [`v13.1.2`](https://github.com/capricorn86/happy-dom/releases/tag/v13.1.2) [Compare Source](https://github.com/capricorn86/happy-dom/compare/v13.1.1...v13.1.2) ##### :construction_worker_man: Patch fixes - `Selection.anchorOffset`, `Selection.baseOffset`, `Selection.focusOffset` and `Selection.extendOffset` should return 0 when no range has been added. ([#&#8203;1163](https://github.com/capricorn86/happy-dom/issues/1163)) *** Thank you [@&#8203;seanogdev](https://github.com/seanogdev) for your contribution! ### [`v13.1.1`](https://github.com/capricorn86/happy-dom/releases/tag/v13.1.1) [Compare Source](https://github.com/capricorn86/happy-dom/compare/v13.1.0...v13.1.1) ##### :construction_worker_man: Patch fixes - Support whitespace with multiple spaces, line breaks or tabs in `DOMTokenList` (e.g. `<div class=" class1 class2 ">`). ([#&#8203;1168](https://github.com/capricorn86/happy-dom/issues/1168)) *** Thank you [@&#8203;takenspc](https://github.com/takenspc) for your contribution! ### [`v13.1.0`](https://github.com/capricorn86/happy-dom/releases/tag/v13.1.0) [Compare Source](https://github.com/capricorn86/happy-dom/compare/v13.0.7...v13.1.0) ##### :art: Features - Makes properties into getters and setters according to spec in all nodes. ([#&#8203;1188](https://github.com/capricorn86/happy-dom/issues/1188)) - Adds support for adopted stylesheets to `Window.getComputedStyle()`. ([#&#8203;1188](https://github.com/capricorn86/happy-dom/issues/1188)) ### [`v13.0.7`](https://github.com/capricorn86/happy-dom/releases/tag/v13.0.7) [Compare Source](https://github.com/capricorn86/happy-dom/compare/v13.0.6...v13.0.7) ##### :construction_worker_man: Patch fixes - Fixes issue related to using fake timers in Vitest making the test get stuck. ([#&#8203;1210](https://github.com/capricorn86/happy-dom/issues/1210)) ### [`v13.0.6`](https://github.com/capricorn86/happy-dom/releases/tag/v13.0.6) [Compare Source](https://github.com/capricorn86/happy-dom/compare/v13.0.5...v13.0.6) ##### :construction_worker_man: Patch fixes - Fixes problem related to exception thrown when creating a `Node` in the constructor of a custom element. ([#&#8203;1207](https://github.com/capricorn86/happy-dom/issues/1207)) ### [`v13.0.5`](https://github.com/capricorn86/happy-dom/releases/tag/v13.0.5) [Compare Source](https://github.com/capricorn86/happy-dom/compare/v13.0.4...v13.0.5) ##### :construction_worker_man: Patch fixes - Fixes issue related to "[@&#8203;happy-dom/jest-environment](https://github.com/happy-dom/jest-environment)" not waiting for all operations to abort before closing. ([#&#8203;1205](https://github.com/capricorn86/happy-dom/issues/1205)) ### [`v13.0.4`](https://github.com/capricorn86/happy-dom/releases/tag/v13.0.4) [Compare Source](https://github.com/capricorn86/happy-dom/compare/v13.0.3...v13.0.4) ##### :construction_worker_man: Patch fixes - Adds support for fallback values when declaring a CSS variable (e.g. "var(--my-var, #FFF)"). ([#&#8203;1192](https://github.com/capricorn86/happy-dom/issues/1192)) ### [`v13.0.3`](https://github.com/capricorn86/happy-dom/releases/tag/v13.0.3) [Compare Source](https://github.com/capricorn86/happy-dom/compare/v13.0.2...v13.0.3) ##### :construction_worker_man: Patch fixes - Fixes problem with `clearTimeout()`, ` clearInterval() `and `cancelAnimationFrame()` not supporting number values. ([#&#8203;1201](https://github.com/capricorn86/happy-dom/issues/1201)) ### [`v13.0.2`](https://github.com/capricorn86/happy-dom/releases/tag/v13.0.2) [Compare Source](https://github.com/capricorn86/happy-dom/compare/v13.0.1...v13.0.2) ##### :construction_worker_man: Patch fixes - Removes unused browser setting. ([#&#8203;1199](https://github.com/capricorn86/happy-dom/issues/1199)) ### [`v13.0.1`](https://github.com/capricorn86/happy-dom/releases/tag/v13.0.1) [Compare Source](https://github.com/capricorn86/happy-dom/compare/v13.0.0...v13.0.1) ##### :art: Features - Adds support for `BrowserFrame.viewport`. ([#&#8203;466](https://github.com/capricorn86/happy-dom/issues/466)) - Adds support for `Window.resizeTo()`. ([#&#8203;466](https://github.com/capricorn86/happy-dom/issues/466)) - Adds support for `Window.resizeBy()`. ([#&#8203;466](https://github.com/capricorn86/happy-dom/issues/466)) ##### :construction_worker_man: Patch fixes - Fixes issues related to viewport not being kept when navigating to new a URL. ([#&#8203;466](https://github.com/capricorn86/happy-dom/issues/466)) ### [`v13.0.0`](https://github.com/capricorn86/happy-dom/releases/tag/v13.0.0) [Compare Source](https://github.com/capricorn86/happy-dom/compare/v12.10.3...v13.0.0) ##### :bomb: Breaking Changes - This is a big release where much of the code has been refactored to improve security and to support the new Browser API. A big release is always a potential risk of bugs, so it makes sense to make this a major release to avoid consumers automatically updating to it. ([#&#8203;466](https://github.com/capricorn86/happy-dom/issues/466)) ##### :art: Features - Adds support for a Browser API similar to [Puppeteer](https://pptr.dev/) and [Playwright](https://playwright.dev/). With the Browser API, it is for example possible to create new pages and navigate in them. You can read more about it in the [Happy DOM Wiki](https://github.com/capricorn86/happy-dom/wiki/Browser). ([#&#8203;466](https://github.com/capricorn86/happy-dom/issues/466)) - Improves security by not exposing sensitive internal logic to scripts running within the Happy DOM Browser. ([#&#8203;466](https://github.com/capricorn86/happy-dom/issues/466)) - Improves support for CORS management. It now supports "OPTIONS" requests to detect if the client is allowed to proceed with a cross origin request. ([#&#8203;466](https://github.com/capricorn86/happy-dom/issues/466)) - Adds support for HTTP response cache. The cache is in memory, but the plan is to add support for storing it on disk in the future. ([#&#8203;466](https://github.com/capricorn86/happy-dom/issues/466)) - Improves support for `XMLHttpRequest`. It now supports the GZip, Deflate and Brotli encodings. ([#&#8203;466](https://github.com/capricorn86/happy-dom/issues/466)) - Adds support for adding a process level error event listener for capturing errors. This is useful when using the Browser API, but will not work in environments such as [Jest](https://jestjs.io/) and [Vitest](https://vitest.dev/), as it collides with their error listener. ([#&#8203;466](https://github.com/capricorn86/happy-dom/issues/466)) - Adds support for `Ẁindow.open()`. ([#&#8203;466](https://github.com/capricorn86/happy-dom/issues/466)) - Adds support for `Ẁindow.close()`. This function should now be used when tearing down the environment. ([#&#8203;466](https://github.com/capricorn86/happy-dom/issues/466)) - Improves support for cookies. ([#&#8203;466](https://github.com/capricorn86/happy-dom/issues/466)) - Improves support for `HTMLIFrameElement`. ([#&#8203;466](https://github.com/capricorn86/happy-dom/issues/466)) - Changes export of types to use "import type" and "export type" in "index.js". This will allow transpilers/compilers to optimize better. ([#&#8203;466](https://github.com/capricorn86/happy-dom/issues/466)) - Adds support for navigating when clicking on an anchor link. ([#&#8203;466](https://github.com/capricorn86/happy-dom/issues/466)) - Adds support for navigating when setting `Location.href`. ([#&#8203;466](https://github.com/capricorn86/happy-dom/issues/466)) - Improves support for `MutationObserver`. It will now queue multiple records by using a microtask. It now also supports `MutationObserver.takeRecords()` for records that has not yet been published. ([#&#8203;466](https://github.com/capricorn86/happy-dom/issues/466)) - Deprecates "[@&#8203;happy-dom/uncaught-exception-observer](https://github.com/happy-dom/uncaught-exception-observer)" as the functionality is supported by "happy-dom" out of the box now. ([#&#8203;466](https://github.com/capricorn86/happy-dom/issues/466)) - Changes internal properties to use `Symbol` instead of using "\_" as a prefix, so they won't be enumerable. This will also make sure that these properties won't clash with properties defined by the consumer. It will use private properties with `#` where it is possible. ([#&#8203;466](https://github.com/capricorn86/happy-dom/issues/466)) ##### :construction_worker_man: Patch fixes - Improves the check for if the property is a class to avoid that it gets bound in "[@&#8203;happy-dom/global-registrator](https://github.com/happy-dom/global-registrator)". We only want functions to get bound to the global context. ([#&#8203;466](https://github.com/capricorn86/happy-dom/issues/466)) - Fixes bug where `new Document()` didn't work according to spec. ([#&#8203;466](https://github.com/capricorn86/happy-dom/issues/466)) - Fixes bug where several Element classes wheren't available as properties on `Window`. ([#&#8203;466](https://github.com/capricorn86/happy-dom/issues/466)) - Fixes bug in `Document.importNode()` where it didn't change `ownerDocument` on child nodes. ([#&#8203;466](https://github.com/capricorn86/happy-dom/issues/466)) - Resets static `ownerDocument` state used when creating Node instances, so that it can be garbage collected if not used anymore. ([#&#8203;466](https://github.com/capricorn86/happy-dom/issues/466)) *** Merry Christmas and a Happy New Year! :santa: :sparkles: This release took some time as I didn't want to release the Browser API without applying security fixes. I've also stumbled across a few other issues along the way that I felt I needed to address. Thank you everybody for the support! It is nice to see that so many people contribute to the project by reporting issues and doing code fixes. I think that 2024 will be a fantastic year for Happy DOM with a lot of features and fixes bringing Happy DOM closer and closer to a "real" browser. </details> --- ### Configuration 📅 **Schedule**: Branch creation - "before 4am" (UTC), 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](https://github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy41MC4xIiwidXBkYXRlZEluVmVyIjoiMzcuMTM1LjAiLCJ0YXJnZXRCcmFuY2giOiJtYWluIn0=-->
renovate added the
dependencies
label 2024-01-11 00:26:14 +00:00
renovate added 1 commit 2024-01-11 00:26:15 +00:00
konrad added 1 commit 2024-01-11 10:59:01 +00:00
renovate force-pushed renovate/major-dev-dependencies from b82ba8f4fe to d40468832a 2024-01-11 12:28:58 +00:00 Compare
renovate force-pushed renovate/major-dev-dependencies from d40468832a to 4a6f0c5d69 2024-01-12 00:25:51 +00:00 Compare
renovate force-pushed renovate/major-dev-dependencies from 4a6f0c5d69 to a5b77ead4a 2024-01-12 01:30:15 +00:00 Compare
renovate force-pushed renovate/major-dev-dependencies from a5b77ead4a to bf73442dc1 2024-01-13 17:31:39 +00:00 Compare
renovate force-pushed renovate/major-dev-dependencies from bf73442dc1 to 25a4a181e8 2024-01-14 14:32:39 +00:00 Compare
renovate force-pushed renovate/major-dev-dependencies from 25a4a181e8 to 9fe0ae546f 2024-01-14 16:25:21 +00:00 Compare
renovate force-pushed renovate/major-dev-dependencies from 9fe0ae546f to 4db483f0ab 2024-01-15 00:28:51 +00:00 Compare
renovate force-pushed renovate/major-dev-dependencies from 4db483f0ab to 949176fd28 2024-01-15 01:28:22 +00:00 Compare
renovate force-pushed renovate/major-dev-dependencies from 949176fd28 to 6fc64468e0 2024-01-16 11:37:55 +00:00 Compare
renovate force-pushed renovate/major-dev-dependencies from 6fc64468e0 to dc218a9cf4 2024-01-16 12:10:47 +00:00 Compare
renovate force-pushed renovate/major-dev-dependencies from dc218a9cf4 to 53c96adf9e 2024-01-16 13:21:32 +00:00 Compare
renovate force-pushed renovate/major-dev-dependencies from 53c96adf9e to cdd73f6d99 2024-01-16 14:21:51 +00:00 Compare
renovate force-pushed renovate/major-dev-dependencies from cdd73f6d99 to 54aea3209d 2024-01-16 17:19:22 +00:00 Compare
renovate force-pushed renovate/major-dev-dependencies from 54aea3209d to 6c925ba30c 2024-01-17 08:18:36 +00:00 Compare
konrad added 1 commit 2024-01-17 08:51:56 +00:00
konrad added 1 commit 2024-01-17 08:53:45 +00:00
continuous-integration/drone/pr Build is passing Details
f94ff959d4
chore: trigger ci
konrad scheduled this pull request to auto merge when all checks succeed 2024-01-17 08:54:47 +00:00
Member

Hi renovate!

Thank you for creating a PR!

I've deployed the changes of this PR on a preview environment under this URL: https://3890-renovate-major-dev-dependencies--vikunja-frontend-preview.netlify.app

You can use this url to view the changes live and test them out.
You will need to manually connect this to an api running somehwere. The easiest to use is https://try.vikunja.io/.

Have a nice day!

Beep boop, I'm a bot.

Hi renovate! Thank you for creating a PR! I've deployed the changes of this PR on a preview environment under this URL: https://3890-renovate-major-dev-dependencies--vikunja-frontend-preview.netlify.app You can use this url to view the changes live and test them out. You will need to manually connect this to an api running somehwere. The easiest to use is https://try.vikunja.io/. Have a nice day! > Beep boop, I'm a bot.
konrad merged commit af65efcd27 into main 2024-01-17 09:17:37 +00:00
konrad deleted branch renovate/major-dev-dependencies 2024-01-17 09:17:38 +00:00
This repo is archived. You cannot comment on pull requests.
No description provided.