GrabarzUndPartner / nuxt-custom-elements

Publish your components as a custom-element standalone build.
https://grabarzundpartner.github.io/nuxt-custom-elements/
MIT License
80 stars 10 forks source link

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

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.0 -> 18.4.2 age adoption passing confidence
@commitlint/config-conventional (source) 18.4.0 -> 18.4.2 age adoption passing confidence
commitlint (source) 18.4.0 -> 18.4.2 age adoption passing confidence
lint-staged 15.0.2 -> 15.1.0 age adoption passing confidence
playwright (source) 1.39.0 -> 1.40.0 age adoption passing confidence
prettier (source) 3.0.3 -> 3.1.0 age adoption passing confidence
read-pkg 9.0.0 -> 9.0.1 age adoption passing confidence
webpack-bundle-analyzer 4.9.1 -> 4.10.1 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) ### [`v18.4.1`](https://togithub.com/conventional-changelog/commitlint/blob/HEAD/@​commitlint/cli/CHANGELOG.md#1841-2023-11-12) [Compare Source](https://togithub.com/conventional-changelog/commitlint/compare/v18.4.0...v18.4.1) **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 ### [`v18.4.1`](https://togithub.com/conventional-changelog/commitlint/blob/HEAD/@​alias/commitlint/CHANGELOG.md#1841-2023-11-12) [Compare Source](https://togithub.com/conventional-changelog/commitlint/compare/v18.4.0...v18.4.1) **Note:** Version bump only for package commitlint
okonet/lint-staged (lint-staged) ### [`v15.1.0`](https://togithub.com/okonet/lint-staged/blob/HEAD/CHANGELOG.md#1510) [Compare Source](https://togithub.com/okonet/lint-staged/compare/v15.0.2...v15.1.0) ##### Minor Changes - [#​1344](https://togithub.com/lint-staged/lint-staged/pull/1344) [`0423311`](https://togithub.com/lint-staged/lint-staged/commit/04233115a5e25d6fa7d357cbe9d42173ae8a1acf) Thanks [@​danielbayley](https://togithub.com/danielbayley)! - Add support for loading configuration from `package.yaml` and `package.yml` files, supported by `pnpm`. ##### Patch Changes - [#​1355](https://togithub.com/lint-staged/lint-staged/pull/1355) [`105d901`](https://togithub.com/lint-staged/lint-staged/commit/105d9012fc92fca549987816406450075cf255f3) Thanks [@​iiroj](https://togithub.com/iiroj)! - Suppress some warnings when using the "--quiet" flag
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
prettier/prettier (prettier) ### [`v3.1.0`](https://togithub.com/prettier/prettier/blob/HEAD/CHANGELOG.md#310) [Compare Source](https://togithub.com/prettier/prettier/compare/3.0.3...3.1.0) [diff](https://togithub.com/prettier/prettier/compare/3.0.3...3.1.0) 🔗 [Release Notes](https://prettier.io/blog/2023/11/13/3.1.0.html)
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)
webpack-contrib/webpack-bundle-analyzer (webpack-bundle-analyzer) ### [`v4.10.1`](https://togithub.com/webpack-contrib/webpack-bundle-analyzer/blob/HEAD/CHANGELOG.md#4101) [Compare Source](https://togithub.com/webpack-contrib/webpack-bundle-analyzer/compare/021de3ddd433993002e214e9840c2c53664a7366...v4.10.1) - **Bug Fix** - fix `this.handleValueChange.cancel()` is not a function ([#​611](https://togithub.com/webpack-contrib/webpack-bundle-analyzer/pull/625) by [@​life2015](https://togithub.com/life2015)) ### [`v4.10.0`](https://togithub.com/webpack-contrib/webpack-bundle-analyzer/blob/HEAD/CHANGELOG.md#4100) [Compare Source](https://togithub.com/webpack-contrib/webpack-bundle-analyzer/compare/v4.9.1...021de3ddd433993002e214e9840c2c53664a7366) - **Improvement** - Allows filtering the list of entrypoints ([#​624](https://togithub.com/webpack-contrib/webpack-bundle-analyzer/pull/624) by [@​chriskrogh](https://togithub.com/chriskrogh)) - **Internal** - Make module much slimmer by replacing all `lodash.*` packages ([#​612](https://togithub.com/webpack-contrib/webpack-bundle-analyzer/pull/612)) by [@​sukkaw](https://togithub.com/sukkaw).

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.

sonarcloud[bot] commented 10 months ago

Kudos, SonarCloud Quality Gate passed!    Quality Gate passed

Bug A 0 Bugs
Vulnerability A 0 Vulnerabilities
Security Hotspot A 0 Security Hotspots
Code Smell A 0 Code Smells

No Coverage information No Coverage information
0.0% 0.0% Duplication

github-actions[bot] commented 10 months ago

:tada: This PR is included in version 2.0.0-beta.26 :tada:

The release is available on:

Your semantic-release bot :package::rocket: