Skip to content

chore(deps-dev): bump the dev-dependencies group with 6 updates #191

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

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

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Apr 21, 2025

Bumps the dev-dependencies group with 6 updates:

Package From To
@changesets/cli 2.29.0 2.29.2
@playwright/test 1.51.1 1.52.0
@tailwindcss/vite 4.1.3 4.1.4
@vitejs/plugin-react 4.3.4 4.4.1
@vitejs/plugin-react-swc 3.8.1 3.9.0
vite 6.2.6 6.3.2

Updates @changesets/cli from 2.29.0 to 2.29.2

Release notes

Sourced from @​changesets/cli's releases.

@​changesets/cli@​2.29.2

Patch Changes

  • #1636 f73f84a Thanks @​Netail! - Correctly resolve new changesets with since option when the .changeset directory is not directly in the git root

  • Updated dependencies [f73f84a]:

    • @​changesets/read@​0.6.5
    • @​changesets/git@​3.0.4
    • @​changesets/get-release-plan@​4.0.10
    • @​changesets/apply-release-plan@​7.0.12

@​changesets/cli@​2.29.1

Patch Changes

  • #1620 b15e629 Thanks @​Netail! - Correctly fetch new changesets with since if the git option diff.relative has been set to true

  • Updated dependencies [b15e629]:

    • @​changesets/git@​3.0.3
    • @​changesets/apply-release-plan@​7.0.11
    • @​changesets/read@​0.6.4
    • @​changesets/get-release-plan@​4.0.9
Commits
  • baa9d45 Version Packages (#1637)
  • f73f84a Correctly resolve new changesets with since option when the .changeset di...
  • 5d01857 Version Packages (#1634)
  • b15e629 Correctly fetch new changesets with since if the git option diff.relative...
  • See full diff in compare view

Updates @playwright/test from 1.51.1 to 1.52.0

Release notes

Sourced from @​playwright/test's releases.

v1.52.0

Highlights

  • New method expect(locator).toContainClass() to ergonomically assert individual class names on the element.

    await expect(page.getByRole('listitem', { name: 'Ship v1.52' })).toContainClass('done');
  • Aria Snapshots got two new properties: /children for strict matching and /url for links.

    await expect(locator).toMatchAriaSnapshot(`
      - list
        - /children: equal
        - listitem: Feature A
        - listitem:
          - link "Feature B":
            - /url: "https://playwright.dev"
    `);

Test Runner

  • New property testProject.workers allows to specify the number of concurrent worker processes to use for a test project. The global limit of property testConfig.workers still applies.
  • New testConfig.failOnFlakyTests option to fail the test run if any flaky tests are detected, similarly to --fail-on-flaky-tests. This is useful for CI/CD environments where you want to ensure that all tests are stable before deploying.
  • New property testResult.annotations contains annotations for each test retry.

Miscellaneous

  • New option maxRedirects in apiRequest.newContext() to control the maximum number of redirects.
  • New option ref in locator.ariaSnapshot() to generate reference for each element in the snapshot which can later be used to locate the element.
  • HTML reporter now supports NOT filtering via !@my-tag or !my-file.spec.ts or !p:my-project.

Breaking Changes

  • Changes to glob URL patterns in methods like page.route():
    • ? wildcard is not supported any more, it will always match question mark ? character.
    • Ranges/sets [] are not supported anymore. We recommend using regular expressions instead.
  • Method route.continue() does not allow to override the Cookie header anymore. If a Cookie header is provided, it will be ignored, and the cookie will be loaded from the browser's cookie store. To set custom cookies, use browserContext.addCookies().
  • macOS 13 is now deprecated and will no longer receive WebKit updates. Please upgrade to a more recent macOS version to continue benefiting from the latest WebKit improvements.

Browser Versions

  • Chromium 136.0.7103.25
  • Mozilla Firefox 137.0
  • WebKit 18.4

This version was also tested against the following stable channels:

  • Google Chrome 135
  • Microsoft Edge 135
Commits
Maintainer changes

This version was pushed to npm by playwright-bot, a new releaser for @​playwright/test since your current version.


Updates @tailwindcss/vite from 4.1.3 to 4.1.4

Release notes

Sourced from @​tailwindcss/vite's releases.

v4.1.4

Added

  • Add experimental @tailwindcss/oxide-wasm32-wasi target for running Tailwind in browser environments like StackBlitz (#17558)

Fixed

  • Ensure color-mix(…) polyfills do not cause used CSS variables to be removed (#17555)
  • Ensure color-mix(…) polyfills create fallbacks for theme variables that reference other theme variables (#17562)
  • Fix brace expansion in declining ranges like {10..0..5} and {0..10..-5} (#17591)
  • Work around a Chrome rendering bug when using the skew-* utilities (#17627)
  • Ensure container query variant names can contain hyphens (#17628)
  • Ensure shadow-inherit, inset-shadow-inherit, drop-shadow-inherit, and text-shadow-inherit inherit the shadow color (#17647)
  • Ensure compatibility with array tuples used in fontSize JS theme keys (#17630)
  • Ensure folders with binary file extensions in their names are scanned for utilities (#17595)
  • Upgrade: Convert fontSize array tuple syntax to CSS theme variables (#17630)
Changelog

Sourced from @​tailwindcss/vite's changelog.

[4.1.4] - 2025-04-14

Added

  • Add experimental @tailwindcss/oxide-wasm32-wasi target for running Tailwind in browser environments like StackBlitz (#17558)

Fixed

  • Ensure color-mix(…) polyfills do not cause used CSS variables to be removed (#17555)
  • Ensure color-mix(…) polyfills create fallbacks for theme variables that reference other theme variables (#17562)
  • Fix brace expansion in declining ranges like {10..0..5} and {0..10..-5} (#17591)
  • Work around a Chrome rendering bug when using the skew-* utilities (#17627)
  • Ensure container query variant names can contain hyphens (#17628)
  • Ensure shadow-inherit, inset-shadow-inherit, drop-shadow-inherit, and text-shadow-inherit inherit the shadow color (#17647)
  • Ensure compatibility with array tuples used in fontSize JS theme keys (#17630)
  • Ensure folders with binary file extensions in their names are scanned for utilities (#17595)
  • Upgrade: Convert fontSize array tuple syntax to CSS theme variables (#17630)
Commits

Updates @vitejs/plugin-react from 4.3.4 to 4.4.1

Release notes

Sourced from @​vitejs/plugin-react's releases.

[email protected]

Fix type issue when using moduleResolution: "node" in tsconfig #462

[email protected]

Make compatible with rolldown-vite

This plugin is now compatible with rolldown-powered version of Vite. Note that currently the __source property value position might be incorrect. This will be fixed in the near future.

[email protected]

Add reactRefreshHost option

Add reactRefreshHost option to set a React Fast Refresh runtime URL prefix. This is useful in a module federation context to enable HMR by specifying the host application URL in the Vite config of a remote application. See full discussion here: module-federation/vite#183

export default defineConfig({
  plugins: [react({ reactRefreshHost: 'http://localhost:3000' })],
})

[email protected]

No release notes provided.

Changelog

Sourced from @​vitejs/plugin-react's changelog.

4.4.1 (2025-04-19)

Fix type issue when using moduleResolution: "node" in tsconfig #462

4.4.0 (2025-04-15)

Make compatible with rolldown-vite

This plugin is now compatible with rolldown-powered version of Vite. Note that currently the __source property value position might be incorrect. This will be fixed in the near future.

4.4.0-beta.2 (2025-04-15)

Add reactRefreshHost option

Add reactRefreshHost option to set a React Fast Refresh runtime URL prefix. This is useful in a module federation context to enable HMR by specifying the host application URL in the Vite config of a remote application. See full discussion here: module-federation/vite#183

export default defineConfig({
  plugins: [react({ reactRefreshHost: 'http://localhost:3000' })],
})

4.4.0-beta.1 (2025-04-09)

4.4.0-beta.0 (2025-04-09)

Commits

Updates @vitejs/plugin-react-swc from 3.8.1 to 3.9.0

Release notes

Sourced from @​vitejs/plugin-react-swc's releases.

[email protected]

Make compatible with rolldown-vite

This plugin is now compatible with rolldown-powered version of Vite.

[email protected]

Add reactRefreshHost option

Add reactRefreshHost option to set a React Fast Refresh runtime URL prefix. This is useful in a module federation context to enable HMR by specifying the host application URL in the Vite config of a remote application. See full discussion here: module-federation/vite#183

export default defineConfig({
  plugins: [react({ reactRefreshHost: 'http://localhost:3000' })],
})

[email protected]

No release notes provided.

Changelog

Sourced from @​vitejs/plugin-react-swc's changelog.

3.9.0 (2025-04-15)

Make compatible with rolldown-vite

This plugin is now compatible with rolldown-powered version of Vite.

3.9.0-beta.3 (2025-04-15)

Add reactRefreshHost option

Add reactRefreshHost option to set a React Fast Refresh runtime URL prefix. This is useful in a module federation context to enable HMR by specifying the host application URL in the Vite config of a remote application. See full discussion here: module-federation/vite#183

export default defineConfig({
  plugins: [react({ reactRefreshHost: 'http://localhost:3000' })],
})

3.9.0-beta.2 (2025-04-09)

3.9.0-beta.0 (2025-04-09)

Commits

Updates vite from 6.2.6 to 6.3.2

Release notes

Sourced from vite's releases.

v6.3.2

Please refer to CHANGELOG.md for details.

[email protected]

Please refer to CHANGELOG.md for details.

v6.3.1

Please refer to CHANGELOG.md for details.

[email protected]

Please refer to CHANGELOG.md for details.

v6.3.0

Please refer to CHANGELOG.md for details.

v6.3.0-beta.2

Please refer to CHANGELOG.md for details.

v6.3.0-beta.1

Please refer to CHANGELOG.md for details.

v6.3.0-beta.0

Please refer to CHANGELOG.md for details.

Changelog

Sourced from vite's changelog.

6.3.2 (2025-04-18)

6.3.1 (2025-04-17)

6.3.0 (2025-04-16)

6.3.0-beta.2 (2025-04-11)

6.3.0-beta.1 (2025-04-03)

... (truncated)

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Apr 21, 2025
@dependabot dependabot bot requested review from a team as code owners April 21, 2025 14:56
@wasmcloud-automation-app
Copy link
Contributor

wasmcloud-automation-app bot commented Apr 21, 2025

Unnecessary Changesets

The following package(s) are private and do not need a changeset:

  • washboard-ui

Changed Packages

Package Name Package Path Changeset Bump Current Version
washboard-ui apps/washboard-ui patch v0.7.1
@wasmcloud/lattice-client-core packages/lattice-client-core patch v0.5.4
@wasmcloud/lattice-client-react packages/lattice-client-react patch v0.5.4

Bumps the dev-dependencies group with 6 updates:

| Package | From | To |
| --- | --- | --- |
| [@changesets/cli](https://github.com./changesets/changesets) | `2.29.0` | `2.29.2` |
| [@playwright/test](https://github.com./microsoft/playwright) | `1.51.1` | `1.52.0` |
| [@tailwindcss/vite](https://github.com./tailwindlabs/tailwindcss/tree/HEAD/packages/@tailwindcss-vite) | `4.1.3` | `4.1.4` |
| [@vitejs/plugin-react](https://github.com./vitejs/vite-plugin-react/tree/HEAD/packages/plugin-react) | `4.3.4` | `4.4.1` |
| [@vitejs/plugin-react-swc](https://github.com./vitejs/vite-plugin-react/tree/HEAD/packages/plugin-react-swc) | `3.8.1` | `3.9.0` |
| [vite](https://github.com./vitejs/vite/tree/HEAD/packages/vite) | `6.2.6` | `6.3.2` |

Updates `@changesets/cli` from 2.29.0 to 2.29.2
- [Release notes](https://github.com./changesets/changesets/releases)
- [Changelog](https://github.com./changesets/changesets/blob/main/docs/modifying-changelog-format.md)
- [Commits](https://github.com./changesets/changesets/compare/@changesets/[email protected]...@changesets/[email protected])

Updates `@playwright/test` from 1.51.1 to 1.52.0
- [Release notes](https://github.com./microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.51.1...v1.52.0)

Updates `@tailwindcss/vite` from 4.1.3 to 4.1.4
- [Release notes](https://github.com./tailwindlabs/tailwindcss/releases)
- [Changelog](https://github.com./tailwindlabs/tailwindcss/blob/main/CHANGELOG.md)
- [Commits](https://github.com./tailwindlabs/tailwindcss/commits/v4.1.4/packages/@tailwindcss-vite)

Updates `@vitejs/plugin-react` from 4.3.4 to 4.4.1
- [Release notes](https://github.com./vitejs/vite-plugin-react/releases)
- [Changelog](https://github.com./vitejs/vite-plugin-react/blob/main/packages/plugin-react/CHANGELOG.md)
- [Commits](https://github.com./vitejs/vite-plugin-react/commits/[email protected]/packages/plugin-react)

Updates `@vitejs/plugin-react-swc` from 3.8.1 to 3.9.0
- [Release notes](https://github.com./vitejs/vite-plugin-react/releases)
- [Changelog](https://github.com./vitejs/vite-plugin-react/blob/main/packages/plugin-react-swc/CHANGELOG.md)
- [Commits](https://github.com./vitejs/vite-plugin-react/commits/[email protected]/packages/plugin-react-swc)

Updates `vite` from 6.2.6 to 6.3.2
- [Release notes](https://github.com./vitejs/vite/releases)
- [Changelog](https://github.com./vitejs/vite/blob/main/packages/vite/CHANGELOG.md)
- [Commits](https://github.com./vitejs/vite/commits/v6.3.2/packages/vite)

---
updated-dependencies:
- dependency-name: "@changesets/cli"
  dependency-version: 2.29.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: "@playwright/test"
  dependency-version: 1.52.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: "@tailwindcss/vite"
  dependency-version: 4.1.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: "@vitejs/plugin-react"
  dependency-version: 4.4.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: "@vitejs/plugin-react-swc"
  dependency-version: 3.9.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: vite
  dependency-version: 6.3.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
Signed-off-by: wasmcloud-automation-app[bot] <151542377+wasmcloud-automation-app[bot]@users.noreply.github.com.>
@wasmcloud-automation-app wasmcloud-automation-app bot force-pushed the dependabot/npm_and_yarn/dev-dependencies-dedc8a1702 branch from 0743618 to 9051726 Compare April 21, 2025 14:56
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants