basics / nuxt-booster

nuxt-booster will help you to improve the lighthouse performance score (100/100) of your website. 🚀
https://basics.github.io/nuxt-booster/
MIT License
639 stars 32 forks source link

chore(deps): update all non-major dependencies #901

Closed renovate[bot] closed 10 months ago

renovate[bot] commented 10 months ago

Mend Renovate logo banner

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@commitlint/cli (source) 18.4.1 -> 18.4.2 age adoption passing confidence
@commitlint/config-conventional (source) 18.4.0 -> 18.4.2 age adoption passing confidence
@types/node (source) 20.9.0 -> 20.9.1 age adoption passing confidence
commitlint (source) 18.4.1 -> 18.4.2 age adoption passing confidence
playwright (source) 1.39.0 -> 1.40.0 age adoption passing confidence
read-pkg 9.0.0 -> 9.0.1 age adoption passing confidence
vitepress (source) 1.0.0-rc.25 -> 1.0.0-rc.28 age adoption passing confidence

Release Notes

conventional-changelog/commitlint (@​commitlint/cli) ### [`v18.4.2`](https://togithub.com/conventional-changelog/commitlint/blob/HEAD/@​commitlint/cli/CHANGELOG.md#1842-2023-11-16) [Compare Source](https://togithub.com/conventional-changelog/commitlint/compare/v18.4.1...v18.4.2) **Note:** Version bump only for package [@​commitlint/cli](https://togithub.com/commitlint/cli)
conventional-changelog/commitlint (@​commitlint/config-conventional) ### [`v18.4.2`](https://togithub.com/conventional-changelog/commitlint/blob/HEAD/@​commitlint/config-conventional/CHANGELOG.md#1842-2023-11-16) [Compare Source](https://togithub.com/conventional-changelog/commitlint/compare/v18.4.0...v18.4.2) **Note:** Version bump only for package [@​commitlint/config-conventional](https://togithub.com/commitlint/config-conventional)
conventional-changelog/commitlint (commitlint) ### [`v18.4.2`](https://togithub.com/conventional-changelog/commitlint/blob/HEAD/@​alias/commitlint/CHANGELOG.md#1842-2023-11-16) [Compare Source](https://togithub.com/conventional-changelog/commitlint/compare/v18.4.1...v18.4.2) **Note:** Version bump only for package commitlint
microsoft/playwright (playwright) ### [`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 ![Playwright Test Generator](https://togithub.com/microsoft/playwright/assets/9881434/e8d67e2e-f36d-4301-8631-023948d3e190) 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
sindresorhus/read-pkg (read-pkg) ### [`v9.0.1`](https://togithub.com/sindresorhus/read-pkg/releases/tag/v9.0.1) [Compare Source](https://togithub.com/sindresorhus/read-pkg/compare/v9.0.0...v9.0.1) - Internal changes [`dadadd1`](https://togithub.com/sindresorhus/read-pkg/commit/dadadd1)
vuejs/vitepress (vitepress) ### [`v1.0.0-rc.28`](https://togithub.com/vuejs/vitepress/blob/HEAD/CHANGELOG.md#100-rc28-2023-11-18) [Compare Source](https://togithub.com/vuejs/vitepress/compare/v1.0.0-rc.27...v1.0.0-rc.28) ##### Bug Fixes - **ally:** clear up confusion with the title of theme switch ([#​3215](https://togithub.com/vuejs/vitepress/issues/3215)) ([6761036](https://togithub.com/vuejs/vitepress/commit/67610363bcb354d33327e6b5c3c2d916ed025ffc)) - **build:** support nested assetsDir ([02161d0](https://togithub.com/vuejs/vitepress/commit/02161d0f797cfa36d715119e8c7618770b1a6761)) - wrong recognition of non-html extension leads to route error ([#​3218](https://togithub.com/vuejs/vitepress/issues/3218)) ([c4abc95](https://togithub.com/vuejs/vitepress/commit/c4abc950af7061611e3b5eff93e767706bd12396)) ##### Features - **build:** html head meta generator ([#​3219](https://togithub.com/vuejs/vitepress/issues/3219)) ([672e494](https://togithub.com/vuejs/vitepress/commit/672e4946ac3c24f3fc79469534e66cfaf6f23e67)) - **client:** allow disabling link auto-prefetching ([#​3220](https://togithub.com/vuejs/vitepress/issues/3220)) ([563dc89](https://togithub.com/vuejs/vitepress/commit/563dc899757e58d2261bcb31081283eb395fab0b)) ### [`v1.0.0-rc.27`](https://togithub.com/vuejs/vitepress/blob/HEAD/CHANGELOG.md#100-rc27-2023-11-17) [Compare Source](https://togithub.com/vuejs/vitepress/compare/v1.0.0-rc.26...v1.0.0-rc.27) ##### Bug Fixes - CSS missing after build ([#​3217](https://togithub.com/vuejs/vitepress/issues/3217)) ([da73b58](https://togithub.com/vuejs/vitepress/commit/da73b58c795a65a09d028e0ca6acefa1170d3d5b)), closes [#​3216](https://togithub.com/vuejs/vitepress/issues/3216) ### [`v1.0.0-rc.26`](https://togithub.com/vuejs/vitepress/blob/HEAD/CHANGELOG.md#100-rc26-2023-11-16) [Compare Source](https://togithub.com/vuejs/vitepress/compare/v1.0.0-rc.25...v1.0.0-rc.26) ##### Bug Fixes - "VPNavScreenMenuGroup" component HTML not supported ([#​3148](https://togithub.com/vuejs/vitepress/issues/3148)) ([237ad85](https://togithub.com/vuejs/vitepress/commit/237ad859a982f3fa55f7bba0f98ca94707108618)) - **build:** remove frontmatter in md file inclusion ([dbbffa2](https://togithub.com/vuejs/vitepress/commit/dbbffa2487cd1f9899916baa166591248fb24334)), closes [#​3195](https://togithub.com/vuejs/vitepress/issues/3195) - style links in footer ([#​3178](https://togithub.com/vuejs/vitepress/issues/3178)) ([a482611](https://togithub.com/vuejs/vitepress/commit/a482611d17197a0b7afc403891cd95f344e7a55f)) ##### Features - switch to vite 5 and bump deps ([#​3200](https://togithub.com/vuejs/vitepress/issues/3200)) ([d2238ee](https://togithub.com/vuejs/vitepress/commit/d2238eedb7c0c81b2d9f425e6f70f7019ad6a482)) ##### BREAKING CHANGES - VitePress now runs on Vite 5. Please refer https://vitejs.dev/guide/migration for breaking changes and migration guide if you're relying on some Vite-specific things.

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), 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.



This PR has been generated by Mend Renovate. View repository job log here.

github-actions[bot] commented 9 months ago

:tada: This PR is included in version 3.0.0-next.39 :tada:

The release is available on:

Your semantic-release bot :package::rocket:

github-actions[bot] commented 5 months ago

:tada: This PR is included in version 3.0.0 :tada:

The release is available on:

Your semantic-release bot :package::rocket: