-
Notifications
You must be signed in to change notification settings - Fork 277
chore(deps): update all non-major dependencies #2233
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
✅ Deploy Preview for vue-test-utils-docs ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
64efffe to
eb57a2b
Compare
haoqunjiang
added a commit
to haoqunjiang/vue-test-utils-next
that referenced
this pull request
Nov 9, 2023
This fixes the test failure in vuejs#2233 Vue 3.3.8 added a new type in the `VNodeChildAtom` union type: vuejs/core@405f345#diff-9b2ba253038f7b71dbbbcb545e028d2d51d27d88b041b918c9eb102a83fef189R117 causing incompatiblity with the type defined in this repository. By using types exported from the `vue` package instead of defining our own, we can avoid similar breakges in the future. `VNodeChild` type has been available since 3.0.0-beta.1.
cexbrayat
pushed a commit
that referenced
this pull request
Nov 9, 2023
This fixes the test failure in #2233 Vue 3.3.8 added a new type in the `VNodeChildAtom` union type: vuejs/core@405f345#diff-9b2ba253038f7b71dbbbcb545e028d2d51d27d88b041b918c9eb102a83fef189R117 causing incompatiblity with the type defined in this repository. By using types exported from the `vue` package instead of defining our own, we can avoid similar breakges in the future. `VNodeChild` type has been available since 3.0.0-beta.1.
eb57a2b to
0fde7a6
Compare
0fde7a6 to
64e09ab
Compare
renovate bot
referenced
this pull request
in slipmatio/toolbelt
Nov 20, 2023
[](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@playwright/test](https://playwright.dev) ([source](https://togithub.com/microsoft/playwright)) | [`1.39.0` -> `1.40.0`](https://renovatebot.com/diffs/npm/@playwright%2ftest/1.39.0/1.40.0) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | | [@types/node](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node) ([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped)) | [`20.8.10` -> `20.9.1`](https://renovatebot.com/diffs/npm/@types%2fnode/20.8.10/20.9.1) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | | [@vitejs/plugin-vue](https://togithub.com/vitejs/vite-plugin-vue/tree/main/packages/plugin-vue#readme) ([source](https://togithub.com/vitejs/vite-plugin-vue)) | [`4.4.0` -> `4.5.0`](https://renovatebot.com/diffs/npm/@vitejs%2fplugin-vue/4.4.0/4.5.0) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | | [@vue/test-utils](https://togithub.com/vuejs/test-utils) | [`2.4.1` -> `2.4.2`](https://renovatebot.com/diffs/npm/@vue%2ftest-utils/2.4.1/2.4.2) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | | [vite](https://togithub.com/vitejs/vite/tree/main/#readme) ([source](https://togithub.com/vitejs/vite)) | [`4.5.0` -> `5.0.0`](https://renovatebot.com/diffs/npm/vite/4.5.0/5.0.0) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | | [vue](https://togithub.com/vuejs/core/tree/main/packages/vue#readme) ([source](https://togithub.com/vuejs/core)) | [`3.3.7` -> `3.3.8`](https://renovatebot.com/diffs/npm/vue/3.3.7/3.3.8) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>microsoft/playwright (@​playwright/test)</summary> ### [`v1.40.0`](https://togithub.com/microsoft/playwright/releases/tag/v1.40.0) [Compare Source](https://togithub.com/microsoft/playwright/compare/v1.39.0...v1.40.0) #### Test Generator Update  New tools to generate assertions: - "Assert visibility" tool generates [expect(locator).toBeVisible()](https://playwright.dev/docs/api/class-locatorassertions#locator-assertions-to-be-visible). - "Assert value" tool generates [expect(locator).toHaveValue(value)](https://playwright.dev/docs/api/class-locatorassertions#locator-assertions-to-have-value). - "Assert text" tool generates [expect(locator).toContainText(text)](https://playwright.dev/docs/api/class-locatorassertions#locator-assertions-to-contain-text). Here is an example of a generated test with assertions: ```js import { test, expect } from '@​playwright/test'; test('test', async ({ page }) => { await page.goto('https://playwright.dev/'); await page.getByRole('link', { name: 'Get started' }).click(); await expect(page.getByLabel('Breadcrumbs').getByRole('list')).toContainText('Installation'); await expect(page.getByLabel('Search')).toBeVisible(); await page.getByLabel('Search').click(); await page.getByPlaceholder('Search docs').fill('locator'); await expect(page.getByPlaceholder('Search docs')).toHaveValue('locator'); }); ``` #### New APIs - Option `reason` in [page.close()](https://playwright.dev/docs/api/class-page#page-close), [browserContext.close()](https://playwright.dev/docs/api/class-browsercontext#browser-context-close) and [browser.close()](https://playwright.dev/docs/api/class-browser#browser-close). Close reason is reported for all operations interrupted by the closure. - Option `firefoxUserPrefs` in [browserType.launchPersistentContext(userDataDir)](https://playwright.dev/docs/api/class-browsertype#browser-type-launch-persistent-context). #### Other Changes - Methods [download.path()](https://playwright.dev/docs/api/class-download#download-path) and [download.createReadStream()](https://playwright.dev/docs/api/class-download#download-create-read-stream) throw an error for failed and cancelled downloads. - Playwright [docker image](https://playwright.dev/docs/docker) now comes with Node.js v20. #### Browser Versions - Chromium 120.0.6099.28 - Mozilla Firefox 119.0 - WebKit 17.4 This version was also tested against the following stable channels: - Google Chrome 119 - Microsoft Edge 119 </details> <details> <summary>vitejs/vite-plugin-vue (@​vitejs/plugin-vue)</summary> ### [`v4.5.0`](https://togithub.com/vitejs/vite-plugin-vue/blob/HEAD/packages/plugin-vue/CHANGELOG.md#450-2023-11-16) - chore: update peerDependencies to support Vite 5 ([#​290](https://togithub.com/vitejs/vite-plugin-vue/issues/290)) ([f92861a](https://togithub.com/vitejs/vite-plugin-vue/commit/f92861a)), closes [#​290](https://togithub.com/vitejs/vite-plugin-vue/issues/290) - chore: upgrade deps ([c046eba](https://togithub.com/vitejs/vite-plugin-vue/commit/c046eba)) - fix(deps): update all non-major dependencies ([#​262](https://togithub.com/vitejs/vite-plugin-vue/issues/262)) ([c316d43](https://togithub.com/vitejs/vite-plugin-vue/commit/c316d43)), closes [#​262](https://togithub.com/vitejs/vite-plugin-vue/issues/262) ### [`v4.4.1`](https://togithub.com/vitejs/vite-plugin-vue/blob/HEAD/packages/plugin-vue/CHANGELOG.md#small441-2023-11-08-small) - fix: fix style block hmr for vitepress md files ([a26a854](https://togithub.com/vitejs/vite-plugin-vue/commit/a26a854)), closes [vuejs/vitepress#3129](https://togithub.com/vuejs/vitepress/issues/3129) - chore: make tests pass with rollup4 ([#​271](https://togithub.com/vitejs/vite-plugin-vue/issues/271)) ([298d419](https://togithub.com/vitejs/vite-plugin-vue/commit/298d419)), closes [#​271](https://togithub.com/vitejs/vite-plugin-vue/issues/271) </details> <details> <summary>vuejs/test-utils (@​vue/test-utils)</summary> ### [`v2.4.2`](https://togithub.com/vuejs/test-utils/releases/tag/v2.4.2) [Compare Source](https://togithub.com/vuejs/test-utils/compare/v2.4.1...v2.4.2) #### What's Changed ##### Fix - fix: (could be considered a feature?) allow custom `<transition>` stubs by [@​alecgibson](https://togithub.com/alecgibson) in [https://github.com/vuejs/test-utils/pull/2185](https://togithub.com/vuejs/test-utils/pull/2185) - fix: Fixing prototype methods being discarded when using `setData` by [@​rory-instil](https://togithub.com/rory-instil) in [https://github.com/vuejs/test-utils/pull/2166](https://togithub.com/vuejs/test-utils/pull/2166) - fix(deps): update all non-major dependencies to v1.8.8 by [@​renovate](https://togithub.com/renovate) in [https://github.com/vuejs/test-utils/pull/2143](https://togithub.com/vuejs/test-utils/pull/2143) - fix(deps): update all non-major dependencies to v1.8.13 by [@​renovate](https://togithub.com/renovate) in [https://github.com/vuejs/test-utils/pull/2193](https://togithub.com/vuejs/test-utils/pull/2193) - fix(deps): update all non-major dependencies to v1.8.19 by [@​renovate](https://togithub.com/renovate) in [https://github.com/vuejs/test-utils/pull/2211](https://togithub.com/vuejs/test-utils/pull/2211) - fix: stricter props types by [@​alecgibson](https://togithub.com/alecgibson) in [https://github.com/vuejs/test-utils/pull/2137](https://togithub.com/vuejs/test-utils/pull/2137) - fix(deps): update all non-major dependencies to v1.8.21 by [@​renovate](https://togithub.com/renovate) in [https://github.com/vuejs/test-utils/pull/2224](https://togithub.com/vuejs/test-utils/pull/2224) - fix: wrapper.text method by [@​harunari0928](https://togithub.com/harunari0928) in [https://github.com/vuejs/test-utils/pull/2231](https://togithub.com/vuejs/test-utils/pull/2231) - fix(types): use `VNodeChild` type from `vue` to avoid breakage by [@​sodatea](https://togithub.com/sodatea) in [https://github.com/vuejs/test-utils/pull/2237](https://togithub.com/vuejs/test-utils/pull/2237) - Fixed typo in accessibility word by [@​ramsesmoreno](https://togithub.com/ramsesmoreno) in [https://github.com/vuejs/test-utils/pull/2160](https://togithub.com/vuejs/test-utils/pull/2160) ##### Docs - docs: Fix omission of async keywords. by [@​yasuaki640](https://togithub.com/yasuaki640) in [https://github.com/vuejs/test-utils/pull/2163](https://togithub.com/vuejs/test-utils/pull/2163) - docs: fix spell Exemple to Example by [@​yasuaki640](https://togithub.com/yasuaki640) in [https://github.com/vuejs/test-utils/pull/2161](https://togithub.com/vuejs/test-utils/pull/2161) - docs: Add removal of createWrapper by [@​AntonioDell](https://togithub.com/AntonioDell) in [https://github.com/vuejs/test-utils/pull/2235](https://togithub.com/vuejs/test-utils/pull/2235) - docs: comparison of functions with v1 by [@​freakzlike](https://togithub.com/freakzlike) in [https://github.com/vuejs/test-utils/pull/2175](https://togithub.com/vuejs/test-utils/pull/2175) - docs: fix typo in code example by [@​dennybiasiolli](https://togithub.com/dennybiasiolli) in [https://github.com/vuejs/test-utils/pull/2212](https://togithub.com/vuejs/test-utils/pull/2212) - feat: update the website application by [@​nazarepiedady](https://togithub.com/nazarepiedady) in [https://github.com/vuejs/test-utils/pull/2171](https://togithub.com/vuejs/test-utils/pull/2171) ##### Chore - Add WebdriverIO to list of supporting frameworks by [@​christian-bromann](https://togithub.com/christian-bromann) in [https://github.com/vuejs/test-utils/pull/2189](https://togithub.com/vuejs/test-utils/pull/2189) - ci: add node v20 and drop node v16 by [@​cexbrayat](https://togithub.com/cexbrayat) in [https://github.com/vuejs/test-utils/pull/2190](https://togithub.com/vuejs/test-utils/pull/2190) - chore(deps): update all non-major dependencies by [@​renovate](https://togithub.com/renovate) in [https://github.com/vuejs/test-utils/pull/2233](https://togithub.com/vuejs/test-utils/pull/2233) - preparing for Vue 3.3.9 by [@​pikax](https://togithub.com/pikax) in [https://github.com/vuejs/test-utils/pull/2240](https://togithub.com/vuejs/test-utils/pull/2240) #### New Contributors - [@​yasuaki640](https://togithub.com/yasuaki640) made their first contribution in [https://github.com/vuejs/test-utils/pull/2161](https://togithub.com/vuejs/test-utils/pull/2161) - [@​ramsesmoreno](https://togithub.com/ramsesmoreno) made their first contribution in [https://github.com/vuejs/test-utils/pull/2160](https://togithub.com/vuejs/test-utils/pull/2160) - [@​rory-instil](https://togithub.com/rory-instil) made their first contribution in [https://github.com/vuejs/test-utils/pull/2166](https://togithub.com/vuejs/test-utils/pull/2166) - [@​nazarepiedady](https://togithub.com/nazarepiedady) made their first contribution in [https://github.com/vuejs/test-utils/pull/2171](https://togithub.com/vuejs/test-utils/pull/2171) - [@​richex-cn](https://togithub.com/richex-cn) made their first contribution in [https://github.com/vuejs/test-utils/pull/2178](https://togithub.com/vuejs/test-utils/pull/2178) - [@​christian-bromann](https://togithub.com/christian-bromann) made their first contribution in [https://github.com/vuejs/test-utils/pull/2189](https://togithub.com/vuejs/test-utils/pull/2189) - [@​dennybiasiolli](https://togithub.com/dennybiasiolli) made their first contribution in [https://github.com/vuejs/test-utils/pull/2212](https://togithub.com/vuejs/test-utils/pull/2212) - [@​harunari0928](https://togithub.com/harunari0928) made their first contribution in [https://github.com/vuejs/test-utils/pull/2231](https://togithub.com/vuejs/test-utils/pull/2231) - [@​AntonioDell](https://togithub.com/AntonioDell) made their first contribution in [https://github.com/vuejs/test-utils/pull/2235](https://togithub.com/vuejs/test-utils/pull/2235) **Full Changelog**: vuejs/test-utils@v2.4.1...v2.4.2 </details> <details> <summary>vitejs/vite (vite)</summary> ### [`v5.0.0`](https://togithub.com/vitejs/vite/blob/HEAD/packages/vite/CHANGELOG.md#500-2023-11-16) </details> <details> <summary>vuejs/core (vue)</summary> ### [`v3.3.8`](https://togithub.com/vuejs/core/blob/HEAD/CHANGELOG.md#338-2023-11-06) [Compare Source](https://togithub.com/vuejs/core/compare/v3.3.7...v3.3.8) ##### Bug Fixes - **compile-sfc:** support `Error` type in `defineProps` ([#​5955](https://togithub.com/vuejs/core/issues/5955)) ([a989345](https://togithub.com/vuejs/core/commit/a9893458ec519aae442e1b99e64e6d74685cd22c)) - **compiler-core:** known global should be shadowed by local variables in expression rewrite ([#​9492](https://togithub.com/vuejs/core/issues/9492)) ([a75d1c5](https://togithub.com/vuejs/core/commit/a75d1c5c6242e91a73cc5ba01e6da620dea0b3d9)), closes [#​9482](https://togithub.com/vuejs/core/issues/9482) - **compiler-sfc:** fix dynamic directive arguments usage check for slots ([#​9495](https://togithub.com/vuejs/core/issues/9495)) ([b39fa1f](https://togithub.com/vuejs/core/commit/b39fa1f8157647859331ce439c42ae016a49b415)), closes [#​9493](https://togithub.com/vuejs/core/issues/9493) - **deps:** update dependency [@​vue/repl](https://togithub.com/vue/repl) to ^2.6.2 ([#​9536](https://togithub.com/vuejs/core/issues/9536)) ([5cef325](https://togithub.com/vuejs/core/commit/5cef325f41e3b38657c72fa1a38dedeee1c7a60a)) - **deps:** update dependency [@​vue/repl](https://togithub.com/vue/repl) to ^2.6.3 ([#​9540](https://togithub.com/vuejs/core/issues/9540)) ([176d590](https://togithub.com/vuejs/core/commit/176d59058c9aecffe9da4d4311e98496684f06d4)) - **hydration:** fix tagName access eeror on comment/text node hydration mismatch ([dd8a0cf](https://togithub.com/vuejs/core/commit/dd8a0cf5dcde13d2cbd899262a0e07f16e14e489)), closes [#​9531](https://togithub.com/vuejs/core/issues/9531) - **types:** avoid exposing lru-cache types in generated dts ([462aeb3](https://togithub.com/vuejs/core/commit/462aeb3b600765e219ded2ee9a0ed1e74df61de0)), closes [#​9521](https://togithub.com/vuejs/core/issues/9521) - **warn:** avoid warning on empty children with Suspense ([#​3962](https://togithub.com/vuejs/core/issues/3962)) ([405f345](https://togithub.com/vuejs/core/commit/405f34587a63a5f1e3d147b9848219ea98acc22d)) </details> --- ### Configuration 📅 **Schedule**: Branch creation - "before 4am on Monday" in timezone Europe/Helsinki, Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **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://togithub.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 [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/slipmatio/toolbelt). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy41OS44IiwidXBkYXRlZEluVmVyIjoiMzcuNTkuOCIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
renovate bot
referenced
this pull request
in slipmatio/logger
Nov 20, 2023
[](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@playwright/test](https://playwright.dev) ([source](https://togithub.com/microsoft/playwright)) | [`1.39.0` -> `1.40.0`](https://renovatebot.com/diffs/npm/@playwright%2ftest/1.39.0/1.40.0) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | | [@types/node](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node) ([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped)) | [`20.9.0` -> `20.9.1`](https://renovatebot.com/diffs/npm/@types%2fnode/20.9.0/20.9.1) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | | [@vitejs/plugin-vue](https://togithub.com/vitejs/vite-plugin-vue/tree/main/packages/plugin-vue#readme) ([source](https://togithub.com/vitejs/vite-plugin-vue)) | [`4.4.1` -> `4.5.0`](https://renovatebot.com/diffs/npm/@vitejs%2fplugin-vue/4.4.1/4.5.0) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | | [@vue/test-utils](https://togithub.com/vuejs/test-utils) | [`2.4.1` -> `2.4.2`](https://renovatebot.com/diffs/npm/@vue%2ftest-utils/2.4.1/2.4.2) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | | [vite](https://togithub.com/vitejs/vite/tree/main/#readme) ([source](https://togithub.com/vitejs/vite)) | [`4.5.0` -> `5.0.0`](https://renovatebot.com/diffs/npm/vite/4.5.0/5.0.0) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>microsoft/playwright (@​playwright/test)</summary> ### [`v1.40.0`](https://togithub.com/microsoft/playwright/releases/tag/v1.40.0) [Compare Source](https://togithub.com/microsoft/playwright/compare/v1.39.0...v1.40.0) #### Test Generator Update  New tools to generate assertions: - "Assert visibility" tool generates [expect(locator).toBeVisible()](https://playwright.dev/docs/api/class-locatorassertions#locator-assertions-to-be-visible). - "Assert value" tool generates [expect(locator).toHaveValue(value)](https://playwright.dev/docs/api/class-locatorassertions#locator-assertions-to-have-value). - "Assert text" tool generates [expect(locator).toContainText(text)](https://playwright.dev/docs/api/class-locatorassertions#locator-assertions-to-contain-text). Here is an example of a generated test with assertions: ```js import { test, expect } from '@​playwright/test'; test('test', async ({ page }) => { await page.goto('https://playwright.dev/'); await page.getByRole('link', { name: 'Get started' }).click(); await expect(page.getByLabel('Breadcrumbs').getByRole('list')).toContainText('Installation'); await expect(page.getByLabel('Search')).toBeVisible(); await page.getByLabel('Search').click(); await page.getByPlaceholder('Search docs').fill('locator'); await expect(page.getByPlaceholder('Search docs')).toHaveValue('locator'); }); ``` #### New APIs - Option `reason` in [page.close()](https://playwright.dev/docs/api/class-page#page-close), [browserContext.close()](https://playwright.dev/docs/api/class-browsercontext#browser-context-close) and [browser.close()](https://playwright.dev/docs/api/class-browser#browser-close). Close reason is reported for all operations interrupted by the closure. - Option `firefoxUserPrefs` in [browserType.launchPersistentContext(userDataDir)](https://playwright.dev/docs/api/class-browsertype#browser-type-launch-persistent-context). #### Other Changes - Methods [download.path()](https://playwright.dev/docs/api/class-download#download-path) and [download.createReadStream()](https://playwright.dev/docs/api/class-download#download-create-read-stream) throw an error for failed and cancelled downloads. - Playwright [docker image](https://playwright.dev/docs/docker) now comes with Node.js v20. #### Browser Versions - Chromium 120.0.6099.28 - Mozilla Firefox 119.0 - WebKit 17.4 This version was also tested against the following stable channels: - Google Chrome 119 - Microsoft Edge 119 </details> <details> <summary>vitejs/vite-plugin-vue (@​vitejs/plugin-vue)</summary> ### [`v4.5.0`](https://togithub.com/vitejs/vite-plugin-vue/blob/HEAD/packages/plugin-vue/CHANGELOG.md#450-2023-11-16) - chore: update peerDependencies to support Vite 5 ([#​290](https://togithub.com/vitejs/vite-plugin-vue/issues/290)) ([f92861a](https://togithub.com/vitejs/vite-plugin-vue/commit/f92861a)), closes [#​290](https://togithub.com/vitejs/vite-plugin-vue/issues/290) - chore: upgrade deps ([c046eba](https://togithub.com/vitejs/vite-plugin-vue/commit/c046eba)) - fix(deps): update all non-major dependencies ([#​262](https://togithub.com/vitejs/vite-plugin-vue/issues/262)) ([c316d43](https://togithub.com/vitejs/vite-plugin-vue/commit/c316d43)), closes [#​262](https://togithub.com/vitejs/vite-plugin-vue/issues/262) </details> <details> <summary>vuejs/test-utils (@​vue/test-utils)</summary> ### [`v2.4.2`](https://togithub.com/vuejs/test-utils/releases/tag/v2.4.2) [Compare Source](https://togithub.com/vuejs/test-utils/compare/v2.4.1...v2.4.2) #### What's Changed ##### Fix - fix: (could be considered a feature?) allow custom `<transition>` stubs by [@​alecgibson](https://togithub.com/alecgibson) in [https://github.com/vuejs/test-utils/pull/2185](https://togithub.com/vuejs/test-utils/pull/2185) - fix: Fixing prototype methods being discarded when using `setData` by [@​rory-instil](https://togithub.com/rory-instil) in [https://github.com/vuejs/test-utils/pull/2166](https://togithub.com/vuejs/test-utils/pull/2166) - fix(deps): update all non-major dependencies to v1.8.8 by [@​renovate](https://togithub.com/renovate) in [https://github.com/vuejs/test-utils/pull/2143](https://togithub.com/vuejs/test-utils/pull/2143) - fix(deps): update all non-major dependencies to v1.8.13 by [@​renovate](https://togithub.com/renovate) in [https://github.com/vuejs/test-utils/pull/2193](https://togithub.com/vuejs/test-utils/pull/2193) - fix(deps): update all non-major dependencies to v1.8.19 by [@​renovate](https://togithub.com/renovate) in [https://github.com/vuejs/test-utils/pull/2211](https://togithub.com/vuejs/test-utils/pull/2211) - fix: stricter props types by [@​alecgibson](https://togithub.com/alecgibson) in [https://github.com/vuejs/test-utils/pull/2137](https://togithub.com/vuejs/test-utils/pull/2137) - fix(deps): update all non-major dependencies to v1.8.21 by [@​renovate](https://togithub.com/renovate) in [https://github.com/vuejs/test-utils/pull/2224](https://togithub.com/vuejs/test-utils/pull/2224) - fix: wrapper.text method by [@​harunari0928](https://togithub.com/harunari0928) in [https://github.com/vuejs/test-utils/pull/2231](https://togithub.com/vuejs/test-utils/pull/2231) - fix(types): use `VNodeChild` type from `vue` to avoid breakage by [@​sodatea](https://togithub.com/sodatea) in [https://github.com/vuejs/test-utils/pull/2237](https://togithub.com/vuejs/test-utils/pull/2237) - Fixed typo in accessibility word by [@​ramsesmoreno](https://togithub.com/ramsesmoreno) in [https://github.com/vuejs/test-utils/pull/2160](https://togithub.com/vuejs/test-utils/pull/2160) ##### Docs - docs: Fix omission of async keywords. by [@​yasuaki640](https://togithub.com/yasuaki640) in [https://github.com/vuejs/test-utils/pull/2163](https://togithub.com/vuejs/test-utils/pull/2163) - docs: fix spell Exemple to Example by [@​yasuaki640](https://togithub.com/yasuaki640) in [https://github.com/vuejs/test-utils/pull/2161](https://togithub.com/vuejs/test-utils/pull/2161) - docs: Add removal of createWrapper by [@​AntonioDell](https://togithub.com/AntonioDell) in [https://github.com/vuejs/test-utils/pull/2235](https://togithub.com/vuejs/test-utils/pull/2235) - docs: comparison of functions with v1 by [@​freakzlike](https://togithub.com/freakzlike) in [https://github.com/vuejs/test-utils/pull/2175](https://togithub.com/vuejs/test-utils/pull/2175) - docs: fix typo in code example by [@​dennybiasiolli](https://togithub.com/dennybiasiolli) in [https://github.com/vuejs/test-utils/pull/2212](https://togithub.com/vuejs/test-utils/pull/2212) - feat: update the website application by [@​nazarepiedady](https://togithub.com/nazarepiedady) in [https://github.com/vuejs/test-utils/pull/2171](https://togithub.com/vuejs/test-utils/pull/2171) ##### Chore - Add WebdriverIO to list of supporting frameworks by [@​christian-bromann](https://togithub.com/christian-bromann) in [https://github.com/vuejs/test-utils/pull/2189](https://togithub.com/vuejs/test-utils/pull/2189) - ci: add node v20 and drop node v16 by [@​cexbrayat](https://togithub.com/cexbrayat) in [https://github.com/vuejs/test-utils/pull/2190](https://togithub.com/vuejs/test-utils/pull/2190) - chore(deps): update all non-major dependencies by [@​renovate](https://togithub.com/renovate) in [https://github.com/vuejs/test-utils/pull/2233](https://togithub.com/vuejs/test-utils/pull/2233) - preparing for Vue 3.3.9 by [@​pikax](https://togithub.com/pikax) in [https://github.com/vuejs/test-utils/pull/2240](https://togithub.com/vuejs/test-utils/pull/2240) #### New Contributors - [@​yasuaki640](https://togithub.com/yasuaki640) made their first contribution in [https://github.com/vuejs/test-utils/pull/2161](https://togithub.com/vuejs/test-utils/pull/2161) - [@​ramsesmoreno](https://togithub.com/ramsesmoreno) made their first contribution in [https://github.com/vuejs/test-utils/pull/2160](https://togithub.com/vuejs/test-utils/pull/2160) - [@​rory-instil](https://togithub.com/rory-instil) made their first contribution in [https://github.com/vuejs/test-utils/pull/2166](https://togithub.com/vuejs/test-utils/pull/2166) - [@​nazarepiedady](https://togithub.com/nazarepiedady) made their first contribution in [https://github.com/vuejs/test-utils/pull/2171](https://togithub.com/vuejs/test-utils/pull/2171) - [@​richex-cn](https://togithub.com/richex-cn) made their first contribution in [https://github.com/vuejs/test-utils/pull/2178](https://togithub.com/vuejs/test-utils/pull/2178) - [@​christian-bromann](https://togithub.com/christian-bromann) made their first contribution in [https://github.com/vuejs/test-utils/pull/2189](https://togithub.com/vuejs/test-utils/pull/2189) - [@​dennybiasiolli](https://togithub.com/dennybiasiolli) made their first contribution in [https://github.com/vuejs/test-utils/pull/2212](https://togithub.com/vuejs/test-utils/pull/2212) - [@​harunari0928](https://togithub.com/harunari0928) made their first contribution in [https://github.com/vuejs/test-utils/pull/2231](https://togithub.com/vuejs/test-utils/pull/2231) - [@​AntonioDell](https://togithub.com/AntonioDell) made their first contribution in [https://github.com/vuejs/test-utils/pull/2235](https://togithub.com/vuejs/test-utils/pull/2235) **Full Changelog**: vuejs/test-utils@v2.4.1...v2.4.2 </details> <details> <summary>vitejs/vite (vite)</summary> ### [`v5.0.0`](https://togithub.com/vitejs/vite/blob/HEAD/packages/vite/CHANGELOG.md#500-2023-11-16) </details> --- ### Configuration 📅 **Schedule**: Branch creation - "before 4am on Monday" in timezone Europe/Helsinki, Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **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://togithub.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 [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/slipmatio/logger). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy41OS44IiwidXBkYXRlZEluVmVyIjoiMzcuNTkuOCIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
renovate bot
referenced
this pull request
in slipmatio/ui
Nov 20, 2023
[](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@playwright/test](https://playwright.dev) ([source](https://togithub.com/microsoft/playwright)) | [`1.39.0` -> `1.40.0`](https://renovatebot.com/diffs/npm/@playwright%2ftest/1.39.0/1.40.0) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | | [@types/node](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node) ([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped)) | [`20.9.0` -> `20.9.1`](https://renovatebot.com/diffs/npm/@types%2fnode/20.9.0/20.9.1) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | | [@vitejs/plugin-vue](https://togithub.com/vitejs/vite-plugin-vue/tree/main/packages/plugin-vue#readme) ([source](https://togithub.com/vitejs/vite-plugin-vue)) | [`4.4.1` -> `4.5.0`](https://renovatebot.com/diffs/npm/@vitejs%2fplugin-vue/4.4.1/4.5.0) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | | [@vue/test-utils](https://togithub.com/vuejs/test-utils) | [`2.4.1` -> `2.4.2`](https://renovatebot.com/diffs/npm/@vue%2ftest-utils/2.4.1/2.4.2) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | | [vite](https://togithub.com/vitejs/vite/tree/main/#readme) ([source](https://togithub.com/vitejs/vite)) | [`4.5.0` -> `5.0.0`](https://renovatebot.com/diffs/npm/vite/4.5.0/5.0.0) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>microsoft/playwright (@​playwright/test)</summary> ### [`v1.40.0`](https://togithub.com/microsoft/playwright/releases/tag/v1.40.0) [Compare Source](https://togithub.com/microsoft/playwright/compare/v1.39.0...v1.40.0) #### Test Generator Update  New tools to generate assertions: - "Assert visibility" tool generates [expect(locator).toBeVisible()](https://playwright.dev/docs/api/class-locatorassertions#locator-assertions-to-be-visible). - "Assert value" tool generates [expect(locator).toHaveValue(value)](https://playwright.dev/docs/api/class-locatorassertions#locator-assertions-to-have-value). - "Assert text" tool generates [expect(locator).toContainText(text)](https://playwright.dev/docs/api/class-locatorassertions#locator-assertions-to-contain-text). Here is an example of a generated test with assertions: ```js import { test, expect } from '@​playwright/test'; test('test', async ({ page }) => { await page.goto('https://playwright.dev/'); await page.getByRole('link', { name: 'Get started' }).click(); await expect(page.getByLabel('Breadcrumbs').getByRole('list')).toContainText('Installation'); await expect(page.getByLabel('Search')).toBeVisible(); await page.getByLabel('Search').click(); await page.getByPlaceholder('Search docs').fill('locator'); await expect(page.getByPlaceholder('Search docs')).toHaveValue('locator'); }); ``` #### New APIs - Option `reason` in [page.close()](https://playwright.dev/docs/api/class-page#page-close), [browserContext.close()](https://playwright.dev/docs/api/class-browsercontext#browser-context-close) and [browser.close()](https://playwright.dev/docs/api/class-browser#browser-close). Close reason is reported for all operations interrupted by the closure. - Option `firefoxUserPrefs` in [browserType.launchPersistentContext(userDataDir)](https://playwright.dev/docs/api/class-browsertype#browser-type-launch-persistent-context). #### Other Changes - Methods [download.path()](https://playwright.dev/docs/api/class-download#download-path) and [download.createReadStream()](https://playwright.dev/docs/api/class-download#download-create-read-stream) throw an error for failed and cancelled downloads. - Playwright [docker image](https://playwright.dev/docs/docker) now comes with Node.js v20. #### Browser Versions - Chromium 120.0.6099.28 - Mozilla Firefox 119.0 - WebKit 17.4 This version was also tested against the following stable channels: - Google Chrome 119 - Microsoft Edge 119 </details> <details> <summary>vitejs/vite-plugin-vue (@​vitejs/plugin-vue)</summary> ### [`v4.5.0`](https://togithub.com/vitejs/vite-plugin-vue/blob/HEAD/packages/plugin-vue/CHANGELOG.md#450-2023-11-16) - chore: update peerDependencies to support Vite 5 ([#​290](https://togithub.com/vitejs/vite-plugin-vue/issues/290)) ([f92861a](https://togithub.com/vitejs/vite-plugin-vue/commit/f92861a)), closes [#​290](https://togithub.com/vitejs/vite-plugin-vue/issues/290) - chore: upgrade deps ([c046eba](https://togithub.com/vitejs/vite-plugin-vue/commit/c046eba)) - fix(deps): update all non-major dependencies ([#​262](https://togithub.com/vitejs/vite-plugin-vue/issues/262)) ([c316d43](https://togithub.com/vitejs/vite-plugin-vue/commit/c316d43)), closes [#​262](https://togithub.com/vitejs/vite-plugin-vue/issues/262) </details> <details> <summary>vuejs/test-utils (@​vue/test-utils)</summary> ### [`v2.4.2`](https://togithub.com/vuejs/test-utils/releases/tag/v2.4.2) [Compare Source](https://togithub.com/vuejs/test-utils/compare/v2.4.1...v2.4.2) #### What's Changed ##### Fix - fix: (could be considered a feature?) allow custom `<transition>` stubs by [@​alecgibson](https://togithub.com/alecgibson) in [https://github.com/vuejs/test-utils/pull/2185](https://togithub.com/vuejs/test-utils/pull/2185) - fix: Fixing prototype methods being discarded when using `setData` by [@​rory-instil](https://togithub.com/rory-instil) in [https://github.com/vuejs/test-utils/pull/2166](https://togithub.com/vuejs/test-utils/pull/2166) - fix(deps): update all non-major dependencies to v1.8.8 by [@​renovate](https://togithub.com/renovate) in [https://github.com/vuejs/test-utils/pull/2143](https://togithub.com/vuejs/test-utils/pull/2143) - fix(deps): update all non-major dependencies to v1.8.13 by [@​renovate](https://togithub.com/renovate) in [https://github.com/vuejs/test-utils/pull/2193](https://togithub.com/vuejs/test-utils/pull/2193) - fix(deps): update all non-major dependencies to v1.8.19 by [@​renovate](https://togithub.com/renovate) in [https://github.com/vuejs/test-utils/pull/2211](https://togithub.com/vuejs/test-utils/pull/2211) - fix: stricter props types by [@​alecgibson](https://togithub.com/alecgibson) in [https://github.com/vuejs/test-utils/pull/2137](https://togithub.com/vuejs/test-utils/pull/2137) - fix(deps): update all non-major dependencies to v1.8.21 by [@​renovate](https://togithub.com/renovate) in [https://github.com/vuejs/test-utils/pull/2224](https://togithub.com/vuejs/test-utils/pull/2224) - fix: wrapper.text method by [@​harunari0928](https://togithub.com/harunari0928) in [https://github.com/vuejs/test-utils/pull/2231](https://togithub.com/vuejs/test-utils/pull/2231) - fix(types): use `VNodeChild` type from `vue` to avoid breakage by [@​sodatea](https://togithub.com/sodatea) in [https://github.com/vuejs/test-utils/pull/2237](https://togithub.com/vuejs/test-utils/pull/2237) - Fixed typo in accessibility word by [@​ramsesmoreno](https://togithub.com/ramsesmoreno) in [https://github.com/vuejs/test-utils/pull/2160](https://togithub.com/vuejs/test-utils/pull/2160) ##### Docs - docs: Fix omission of async keywords. by [@​yasuaki640](https://togithub.com/yasuaki640) in [https://github.com/vuejs/test-utils/pull/2163](https://togithub.com/vuejs/test-utils/pull/2163) - docs: fix spell Exemple to Example by [@​yasuaki640](https://togithub.com/yasuaki640) in [https://github.com/vuejs/test-utils/pull/2161](https://togithub.com/vuejs/test-utils/pull/2161) - docs: Add removal of createWrapper by [@​AntonioDell](https://togithub.com/AntonioDell) in [https://github.com/vuejs/test-utils/pull/2235](https://togithub.com/vuejs/test-utils/pull/2235) - docs: comparison of functions with v1 by [@​freakzlike](https://togithub.com/freakzlike) in [https://github.com/vuejs/test-utils/pull/2175](https://togithub.com/vuejs/test-utils/pull/2175) - docs: fix typo in code example by [@​dennybiasiolli](https://togithub.com/dennybiasiolli) in [https://github.com/vuejs/test-utils/pull/2212](https://togithub.com/vuejs/test-utils/pull/2212) - feat: update the website application by [@​nazarepiedady](https://togithub.com/nazarepiedady) in [https://github.com/vuejs/test-utils/pull/2171](https://togithub.com/vuejs/test-utils/pull/2171) ##### Chore - Add WebdriverIO to list of supporting frameworks by [@​christian-bromann](https://togithub.com/christian-bromann) in [https://github.com/vuejs/test-utils/pull/2189](https://togithub.com/vuejs/test-utils/pull/2189) - ci: add node v20 and drop node v16 by [@​cexbrayat](https://togithub.com/cexbrayat) in [https://github.com/vuejs/test-utils/pull/2190](https://togithub.com/vuejs/test-utils/pull/2190) - chore(deps): update all non-major dependencies by [@​renovate](https://togithub.com/renovate) in [https://github.com/vuejs/test-utils/pull/2233](https://togithub.com/vuejs/test-utils/pull/2233) - preparing for Vue 3.3.9 by [@​pikax](https://togithub.com/pikax) in [https://github.com/vuejs/test-utils/pull/2240](https://togithub.com/vuejs/test-utils/pull/2240) #### New Contributors - [@​yasuaki640](https://togithub.com/yasuaki640) made their first contribution in [https://github.com/vuejs/test-utils/pull/2161](https://togithub.com/vuejs/test-utils/pull/2161) - [@​ramsesmoreno](https://togithub.com/ramsesmoreno) made their first contribution in [https://github.com/vuejs/test-utils/pull/2160](https://togithub.com/vuejs/test-utils/pull/2160) - [@​rory-instil](https://togithub.com/rory-instil) made their first contribution in [https://github.com/vuejs/test-utils/pull/2166](https://togithub.com/vuejs/test-utils/pull/2166) - [@​nazarepiedady](https://togithub.com/nazarepiedady) made their first contribution in [https://github.com/vuejs/test-utils/pull/2171](https://togithub.com/vuejs/test-utils/pull/2171) - [@​richex-cn](https://togithub.com/richex-cn) made their first contribution in [https://github.com/vuejs/test-utils/pull/2178](https://togithub.com/vuejs/test-utils/pull/2178) - [@​christian-bromann](https://togithub.com/christian-bromann) made their first contribution in [https://github.com/vuejs/test-utils/pull/2189](https://togithub.com/vuejs/test-utils/pull/2189) - [@​dennybiasiolli](https://togithub.com/dennybiasiolli) made their first contribution in [https://github.com/vuejs/test-utils/pull/2212](https://togithub.com/vuejs/test-utils/pull/2212) - [@​harunari0928](https://togithub.com/harunari0928) made their first contribution in [https://github.com/vuejs/test-utils/pull/2231](https://togithub.com/vuejs/test-utils/pull/2231) - [@​AntonioDell](https://togithub.com/AntonioDell) made their first contribution in [https://github.com/vuejs/test-utils/pull/2235](https://togithub.com/vuejs/test-utils/pull/2235) **Full Changelog**: vuejs/test-utils@v2.4.1...v2.4.2 </details> <details> <summary>vitejs/vite (vite)</summary> ### [`v5.0.0`](https://togithub.com/vitejs/vite/blob/HEAD/packages/vite/CHANGELOG.md#500-2023-11-16) </details> --- ### Configuration 📅 **Schedule**: Branch creation - "before 4am on Monday" in timezone Europe/Helsinki, Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **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://togithub.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 [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/slipmatio/ui). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy41OS44IiwidXBkYXRlZEluVmVyIjoiMzcuNTkuOCIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 task
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
5.0.4->5.0.51.14.2->1.14.320.8.9->20.9.06.9.0->6.10.06.9.0->6.10.04.4.0->4.4.13.3.7->3.3.83.3.7->3.3.83.3.7->3.3.83.3.7->3.3.88.52.0->8.53.08.9.2->8.10.24.1.4->4.3.03.3.7->3.3.81.8.21->1.8.22Release Notes
rollup/plugins (@rollup/plugin-replace)
v5.0.52023-10-29
Bugfixes
typescript-eslint/typescript-eslint (@typescript-eslint/eslint-plugin)
v6.10.0Compare Source
Bug Fixes
Features
You can read about our versioning strategy and releases on our website.
6.9.1 (2023-10-30)
Bug Fixes
You can read about our versioning strategy and releases on our website.
v6.9.1Compare Source
Bug Fixes
You can read about our versioning strategy and releases on our website.
typescript-eslint/typescript-eslint (@typescript-eslint/parser)
v6.10.0Compare Source
Note: Version bump only for package @typescript-eslint/parser
You can read about our versioning strategy and releases on our website.
6.9.1 (2023-10-30)
Note: Version bump only for package @typescript-eslint/parser
You can read about our versioning strategy and releases on our website.
v6.9.1Compare Source
Note: Version bump only for package @typescript-eslint/parser
You can read about our versioning strategy and releases on our website.
vitejs/vite-plugin-vue (@vitejs/plugin-vue)
v4.4.1vuejs/core (@vue/compat)
v3.3.8Compare Source
Bug Fixes
Errortype indefineProps(#5955) (a989345)eslint/eslint (eslint)
v8.53.0Compare Source
Features
528e1c0feat: Deprecate formatting rules (#17696) (Nicholas C. Zakas)c0b11ddfeat: Add suggestions for no-prototype-builtins (#17677) (Yonathan Randolph)Bug Fixes
1ad6257fix: ensure that exit code for fatal errors is not overwritten (#17683) (Milos Djermanovic)b329ea7fix: add;after JSX nodes inno-object-constructorautofix (#17672) (Francesco Trotta)Documentation
ab8c60ddocs: change position of return to top button (#17688) (Tanuj Kanti)4fc44c0docs: update twitter icon to new X icon (#17687) (Tanuj Kanti)4164b2cdocs: Update README (GitHub Actions Bot)8651895docs: Fix tabs in rule examples (#17653) (Francesco Trotta)3aec1c5docs: explained rule fixers and suggestions (#17657) (Josh Goldberg ✨)Chores
ba4d4d5chore: remove metascraper (#17707) (Milos Djermanovic)0d07338chore: Update dependencies (#17706) (Milos Djermanovic)93256a3chore: package.json update for @eslint/js release (ESLint Jenkins)485ec7dtest: fix ESLint tests for caching (#17699) (Milos Djermanovic)db06a7fci: bump actions/setup-node from 3 to 4 (#17676) (dependabot[bot])994596bci: run tests in Node.js 21 (#17673) (Francesco Trotta)pnpm/pnpm (pnpm)
v8.10.2Compare Source
Patch Changes
Our Gold Sponsors
Our Silver Sponsors
v8.10.1Compare Source
Patch Changes
pnpm-lock.yamlwill no longer contain aregistryfield. This field has been unused for a long time. This change should not cause any issues besides backward compatible modifications to the lockfile #7262.pnpm dlxin the root of a Windows Drive #7263.@npmcli/arboristto patch it with a fix #7269.Our Gold Sponsors
Our Silver Sponsors
v8.10.0Compare Source
Minor Changes
Support for multiple architectures when installing dependencies #5965.
You can now specify architectures for which you'd like to install optional dependencies, even if they don't match the architecture of the system running the install. Use the
supportedArchitecturesfield inpackage.jsonto define your preferences.For example, the following configuration tells pnpm to install optional dependencies for Windows x64:
{ "pnpm": { "supportedArchitectures": { "os": ["win32"], "cpu": ["x64"] } } }Whereas this configuration will have pnpm install optional dependencies for Windows, macOS, and the architecture of the system currently running the install. It includes artifacts for both x64 and arm64 CPUs:
{ "pnpm": { "supportedArchitectures": { "os": ["win32", "darwin", "current"], "cpu": ["x64", "arm64"] } } }Additionally,
supportedArchitecturesalso supports specifying thelibcof the system.The
pnpm licenses listcommand now accepts the--filteroption to check the licenses of the dependencies of a subset of workspace projects #5806.Patch Changes
Allow scoped name as bin name #7112.
When running scripts recursively inside a workspace, the logs of the scripts are grouped together in some CI tools. (Only works with
--workspace-concurrency 1)Print a warning when installing a dependency from a non-existent directory #7159
Should fetch dependency from tarball url when patching dependency installed from git #7196
pnpm setupshould add a newline at the end of the updated shell config file #7227.Improved the performance of linking bins of hoisted dependencies to
node_modules/.pnpm/node_modules/.bin#7212.Wrongful ELIFECYCLE error on program termination #7164.
pnpm publishshould not pack the same file twice sometimes #6997.The fix was to update
npm-packlistto the latest version.Our Gold Sponsors
Our Silver Sponsors
rollup/rollup (rollup)
v4.3.0Compare Source
2023-11-03
Features
forceExitCLI flag for situations where the CLI does not exit gracefully (#5195)Bug Fixes
Pull Requests
forceExitCLI flag (@raphael-theriault-swi)ENOENTerror on temp config removal (@jzempel)v4.2.0Compare Source
2023-10-31
Features
parseAstAsynchelper function (#5202)Pull Requests
parseAstAsyncand parallelize parsing AST (@sapphi-red)v4.1.6Compare Source
2023-10-31
Bug Fixes
Pull Requests
v4.1.5Compare Source
2023-10-28
Bug Fixes
Pull Requests
vuejs/language-tools (vue-tsc)
v1.8.22Compare Source
experimentalResolveStyleCssClasses: "always"not working (#3689) - thanks @maIIady__VLS_Prettifymissing for dts build when useswithDefaults()(#3691)Configuration
📅 Schedule: Branch creation - "after 1am on Wednesday" (UTC), Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ 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.
This PR has been generated by Mend Renovate. View repository job log here.