Skip to content

Bump the dev-dependencies group with 13 updates - #452

Open
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/npm_and_yarn/dev-dependencies-4ac0de27f9
Open

Bump the dev-dependencies group with 13 updates#452
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/npm_and_yarn/dev-dependencies-4ac0de27f9

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 9, 2026

Copy link
Copy Markdown
Contributor

Bumps the dev-dependencies group with 13 updates:

Package From To
@playwright/test 1.47.0 1.62.1
@roots/bud 6.23.3 6.24.0
@roots/bud-eslint 6.23.3 6.24.0
@roots/bud-postcss 6.23.3 6.24.0
@roots/bud-prettier 6.23.3 6.24.0
@roots/bud-sass 6.23.3 6.24.0
@roots/bud-stylelint 6.23.3 6.24.0
@roots/eslint-config 6.23.3 6.24.0
@roots/sage 6.23.3 6.24.0
@shufo/prettier-plugin-blade 1.14.1 1.16.2
postcss-preset-env 10.0.2 11.3.2
stylelint-checkstyle-reporter 1.0.0 1.1.1
stylelint-config-standard-scss 13.1.0 17.0.0

Updates @playwright/test from 1.47.0 to 1.62.1

Release notes

Sourced from @​playwright/test's releases.

v1.62.1

Bug Fixes

  • #41989 [Regression]: tsconfig "extends" bare specifier isn't resolved via node_modules walk-up like tsc (fatal since 1.62)
  • #41998 [Regression]: directory-form tsconfig project references ("path": "../pkg") fail to resolve (fatal since 1.62)
  • #41985 Accessibility snapshot drops button name when text is nested inside spans with aria-hidden SVG
  • #42000 [Regression]: page.evaluate() arg of a branded primitive type (string & { brand }) no longer type-checks since 1.62
  • #42013 [BUG]Image-type actionable elements are not presented in the snapshot.

v1.62.0

🧱 New component testing model

Component testing moves to a stories and galleries model. A story wraps your component in one specific scenario — hard-coded props, mock data, providers — and a gallery page that you serve renders stories on demand. The new fixtures.mount() fixture navigates to the gallery, mounts a story by id, and returns a Locator scoped to the story's root element:

test('click should expand', async ({ mount }) => {
  const component = await mount('components/Expandable/Stateful');
  await component.getByRole('button').click();
  await expect(component.getByTestId('expanded')).toHaveValue('true');
});

Pass a story type as a template argument to type-check its props, and use update(props) / unmount() on the returned locator to re-render or tear down within a test.

🛑 Cancel operations with AbortSignal

Most operations and web-first assertions now accept a signal option that takes an AbortSignal, letting you cancel long-running actions, navigations, waits, and assertions:

const controller = new AbortController();
setTimeout(() => controller.abort(), 1000);
await page.getByRole('button', { name: 'Submit' }).click({ signal: controller.signal });
await expect(page.getByText('Done')).toBeVisible({ signal: controller.signal });

Providing a signal does not disable the default timeout; pass timeout: 0 to disable it.

🖼️ WebP screenshots

expect(page).toHaveScreenshot() and expect(locator).toHaveScreenshot() can now store snapshots in the WebP format — just give the snapshot a .webp name:

// Visual comparisons store the golden snapshot as lossless WebP.
await expect(page).toHaveScreenshot('homepage.webp');
// Standalone screenshots can trade quality for size with lossy WebP.
await page.screenshot({ path: 'homepage.webp', quality: 50 });
</tr></table>

... (truncated)

Commits
  • 26a9e47 cherry-pick(#42043): docs: release notes for v1.62 Python, Java, and .NET (#4...
  • 0a81d5d cherry-pick(#42040): docs(release-notes): mention the isolated headless clipb...
  • 8376826 cherry-pick(#42034): fix(aria): keep icon-only clickable elements in ai snaps...
  • 66c5cc9 chore: mark v1.62.1 (#42020)
  • 9672bc3 cherry-pick(#42009): fix(types): support branded primitives in evaluate argum...
  • 4325804 cherry-pick(#41988): fix(aria): preserve names from collapsed text contributors
  • 9632f8e cherry-pick(#42005): fix(tsconfig): do not throw when "extends"/"references" ...
  • e3950d9 chore: mark v1.62.0 (#41981)
  • f07e0f7 cherry-pick(#41940): docs: release notes for v1.62 (#41967)
  • 05a306c cherry-pick(#41964): Revert "feat(routeFromHar): add interceptAPIRequests opt...
  • Additional commits viewable in compare view
Maintainer changes

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


Updates @roots/bud from 6.23.3 to 6.24.0

Release notes

Sourced from @​roots/bud's releases.

6.24.0

This is essentially a patch but it's being treated as a minor release because some tailwindcss snapshots have changed since 6.23.3. Despite the differences, the build output seems normal and generally these sorts of changes are to be expected as dependencies are upgraded; I wouldn't anticipate needing to make any changes to your project in response. At the same time, it seems like a bit too much to qualify as a straightforward patch. 6.24.0 it is, then!

Housekeeping

Sorry for the delay on this release; I've gotten a new job and recently had a surgery which took me out of the OSS game, briefly. It feels good to finally release this.

We're getting ready to start working on version 7 in earnest, and I'll publish a blog or something soon regarding the direction we're going in.

Thanks to @​joshuafredrickson and @​Dyras for their contributions.

What's Changed

New Contributors

Full Changelog: roots/bud@v6.23.3...v6.24.0

Commits

Updates @roots/bud-eslint from 6.23.3 to 6.24.0

Release notes

Sourced from @​roots/bud-eslint's releases.

6.24.0

This is essentially a patch but it's being treated as a minor release because some tailwindcss snapshots have changed since 6.23.3. Despite the differences, the build output seems normal and generally these sorts of changes are to be expected as dependencies are upgraded; I wouldn't anticipate needing to make any changes to your project in response. At the same time, it seems like a bit too much to qualify as a straightforward patch. 6.24.0 it is, then!

Housekeeping

Sorry for the delay on this release; I've gotten a new job and recently had a surgery which took me out of the OSS game, briefly. It feels good to finally release this.

We're getting ready to start working on version 7 in earnest, and I'll publish a blog or something soon regarding the direction we're going in.

Thanks to @​joshuafredrickson and @​Dyras for their contributions.

What's Changed

New Contributors

Full Changelog: roots/bud@v6.23.3...v6.24.0

Commits

Updates @roots/bud-postcss from 6.23.3 to 6.24.0

Release notes

Sourced from @​roots/bud-postcss's releases.

6.24.0

This is essentially a patch but it's being treated as a minor release because some tailwindcss snapshots have changed since 6.23.3. Despite the differences, the build output seems normal and generally these sorts of changes are to be expected as dependencies are upgraded; I wouldn't anticipate needing to make any changes to your project in response. At the same time, it seems like a bit too much to qualify as a straightforward patch. 6.24.0 it is, then!

Housekeeping

Sorry for the delay on this release; I've gotten a new job and recently had a surgery which took me out of the OSS game, briefly. It feels good to finally release this.

We're getting ready to start working on version 7 in earnest, and I'll publish a blog or something soon regarding the direction we're going in.

Thanks to @​joshuafredrickson and @​Dyras for their contributions.

What's Changed

New Contributors

Full Changelog: roots/bud@v6.23.3...v6.24.0

Commits

Updates @roots/bud-prettier from 6.23.3 to 6.24.0

Release notes

Sourced from @​roots/bud-prettier's releases.

6.24.0

This is essentially a patch but it's being treated as a minor release because some tailwindcss snapshots have changed since 6.23.3. Despite the differences, the build output seems normal and generally these sorts of changes are to be expected as dependencies are upgraded; I wouldn't anticipate needing to make any changes to your project in response. At the same time, it seems like a bit too much to qualify as a straightforward patch. 6.24.0 it is, then!

Housekeeping

Sorry for the delay on this release; I've gotten a new job and recently had a surgery which took me out of the OSS game, briefly. It feels good to finally release this.

We're getting ready to start working on version 7 in earnest, and I'll publish a blog or something soon regarding the direction we're going in.

Thanks to @​joshuafredrickson and @​Dyras for their contributions.

What's Changed

New Contributors

Full Changelog: roots/bud@v6.23.3...v6.24.0

Commits

Updates @roots/bud-sass from 6.23.3 to 6.24.0

Release notes

Sourced from @​roots/bud-sass's releases.

6.24.0

This is essentially a patch but it's being treated as a minor release because some tailwindcss snapshots have changed since 6.23.3. Despite the differences, the build output seems normal and generally these sorts of changes are to be expected as dependencies are upgraded; I wouldn't anticipate needing to make any changes to your project in response. At the same time, it seems like a bit too much to qualify as a straightforward patch. 6.24.0 it is, then!

Housekeeping

Sorry for the delay on this release; I've gotten a new job and recently had a surgery which took me out of the OSS game, briefly. It feels good to finally release this.

We're getting ready to start working on version 7 in earnest, and I'll publish a blog or something soon regarding the direction we're going in.

Thanks to @​joshuafredrickson and @​Dyras for their contributions.

What's Changed

New Contributors

Full Changelog: roots/bud@v6.23.3...v6.24.0

Commits

Updates @roots/bud-stylelint from 6.23.3 to 6.24.0

Release notes

Sourced from @​roots/bud-stylelint's releases.

6.24.0

This is essentially a patch but it's being treated as a minor release because some tailwindcss snapshots have changed since 6.23.3. Despite the differences, the build output seems normal and generally these sorts of changes are to be expected as dependencies are upgraded; I wouldn't anticipate needing to make any changes to your project in response. At the same time, it seems like a bit too much to qualify as a straightforward patch. 6.24.0 it is, then!

Housekeeping

Sorry for the delay on this release; I've gotten a new job and recently had a surgery which took me out of the OSS game, briefly. It feels good to finally release this.

We're getting ready to start working on version 7 in earnest, and I'll publish a blog or something soon regarding the direction we're going in.

Thanks to @​joshuafredrickson and @​Dyras for their contributions.

What's Changed

New Contributors

Full Changelog: roots/bud@v6.23.3...v6.24.0

Commits

Updates @roots/eslint-config from 6.23.3 to 6.24.0

Release notes

Sourced from @​roots/eslint-config's releases.

6.24.0

This is essentially a patch but it's being treated as a minor release because some tailwindcss snapshots have changed since 6.23.3. Despite the differences, the build output seems normal and generally these sorts of changes are to be expected as dependencies are upgraded; I wouldn't anticipate needing to make any changes to your project in response. At the same time, it seems like a bit too much to qualify as a straightforward patch. 6.24.0 it is, then!

Housekeeping

Sorry for the delay on this release; I've gotten a new job and recently had a surgery which took me out of the OSS game, briefly. It feels good to finally release this.

We're getting ready to start working on version 7 in earnest, and I'll publish a blog or something soon regarding the direction we're going in.

Thanks to @​joshuafredrickson and @​Dyras for their contributions.

What's Changed

New Contributors

Full Changelog: roots/bud@v6.23.3...v6.24.0

Commits

Updates @roots/sage from 6.23.3 to 6.24.0

Release notes

Sourced from @​roots/sage's releases.

6.24.0

This is essentially a patch but it's being treated as a minor release because some tailwindcss snapshots have changed since 6.23.3. Despite the differences, the build output seems normal and generally these sorts of changes are to be expected as dependencies are upgraded; I wouldn't anticipate needing to make any changes to your project in response. At the same time, it seems like a bit too much to qualify as a straightforward patch. 6.24.0 it is, then!

Housekeeping

Sorry for the delay on this release; I've gotten a new job and recently had a surgery which took me out of the OSS game, briefly. It feels good to finally release this.

We're getting ready to start working on version 7 in earnest, and I'll publish a blog or something soon regarding the direction we're going in.

Thanks to @​joshuafredrickson and @​Dyras for their contributions.

What's Changed

New Contributors

Full Changelog: roots/bud@v6.23.3...v6.24.0

Commits

Updates @shufo/prettier-plugin-blade from 1.14.1 to 1.16.2

Release notes

Sourced from @​shufo/prettier-plugin-blade's releases.

v1.16.2

1.16.2 (2026-03-25)

Fixes

  • deps: update dependency prettier to v3.8.1 (c6c6dd5)

Miscellaneous

  • 🤖 bump blade-formatter from 1.44.0 to 1.44.3 (8857dc5)
  • 🤖 bump blade-formatter to 1.44.4 (05ac087)
  • deps: update dependency vitest to v4 (e9449e3)

v1.16.1

1.16.1 (2025-08-10)

Miscellaneous

  • 🤖 bump blade-formatter to 1.44.0 (504d628)
  • deps: update akhilmhdh/contributors-readme-action action to v2.3.11 (cf9d946)
  • deps: update dependency cross-env to v10 (7da272f)

v1.16.0

1.16.0 (2025-07-16)

Features

Miscellaneous

  • 🤖 bump blade-formatter to 1.43.0 (547c084)
  • 🤖 bump target version of php syntax to 8.4 as default (803ffb9)

v1.15.4

1.15.4 (2025-07-11)

Fixes

  • deps: update dependency prettier to v3.6.2 (3df484e)

Miscellaneous

... (truncated)

Changelog

Sourced from @​shufo/prettier-plugin-blade's changelog.

1.16.2 (2026-03-25)

Fixes

  • deps: update dependency prettier to v3.8.1 (c6c6dd5)

Miscellaneous

  • 🤖 bump blade-formatter from 1.44.0 to 1.44.3 (8857dc5)
  • 🤖 bump blade-formatter to 1.44.4 (05ac087)
  • deps: update dependency vitest to v4 (e9449e3)

1.16.1 (2025-08-10)

Miscellaneous

  • 🤖 bump blade-formatter to 1.44.0 (504d628)
  • deps: update akhilmhdh/contributors-readme-action action to v2.3.11 (cf9d946)
  • deps: update dependency cross-env to v10 (7da272f)

1.16.0 (2025-07-16)

Features

  • 🎸 allow user to specify target php version for format (9dbbb64)

Miscellaneous

  • 🤖 bump blade-formatter to 1.43.0 (547c084)
  • 🤖 bump target version of php syntax to 8.4 as default (803ffb9)

1.15.4 (2025-07-11)

Fixes

  • deps: update dependency prettier to v3.6.2 (3df484e)

Miscellaneous

  • 🤖 bump blade-formatter to 1.42.3 (534f3bf)

1.15.3 (2025-02-08)

... (truncated)

Commits
  • 048627d Merge pull request #360 from shufo/release-please--branches--main--components...
  • 97701e2 chore(main): release 1.16.2
  • 0a4d6ff Merge pull request #352 from shufo/renovate/prettier-3.x
  • c6c6dd5 fix(deps): update dependency prettier to v3.8.1
  • 05ac087 chore: 🤖 bump blade-formatter to 1.44.4
  • 1f2f8cb Merge pull request #348 from shufo/renovate/major-vitest-monorepo
  • a433072 ci: 🎡 add permissions explicitly
  • cd7daf1 ci: 🎡 allow write for release-please
  • 01acf24 ci: 🎡 bump node to v24
  • fbd1f52 ci: 🎡 bump setup-node to v6
  • Additional commits viewable in compare view

Updates postcss-preset-env from 10.0.2 to 11.3.2

Changelog

Sourced from postcss-preset-env's changelog.

11.3.2

June 28, 2026

11.3.1

June 14, 2026

11.3.0

May 13, 2026

11.2.1

April 12, 2026

11.2.0

February 21, 2026

11.1.3

February 6, 2026

11.1.2

January 25, 2026

11.1.1

... (truncated)

Commits

Updates stylelint-checkstyle-reporter from 1.0.0 to 1.1.1

Release notes

Sourced from stylelint-checkstyle-reporter's releases.

v1.1.1

1.1.1 (2025-07-12)

  • fix: enable automerge for minor and patch updates (8f56018)
  • Merge pull request #880 from lucavb/renovate/rollup-4.x (cb6bade), closes #880
  • chore(deps): update dependency rollup to v4.45.0 (1a5b3d9)

v1.1.0

1.1.0 (2025-07-12)

  • chore: update semantic-release configuration and dependencies (1ab6004)
  • chore(deps): remove unused semantic-release packages and update release workflow (c608c31)
  • chore(deps): update commitlint monorepo (116568b)
  • chore(deps): update commitlint monorepo (d4995ad)
  • chore(deps): update commitlint monorepo to v19 (3b73176)
  • chore(deps): update commitlint monorepo to v19.5.0 (d6df712)
  • chore(deps): update dependency @​types/jest to v29.5.12 (a87e918)
  • chore(deps): update dependency @​types/jest to v29.5.13 (157bf49)
  • chore(deps): update dependency @​types/jest to v29.5.14 (#872) (f7a2206), closes #872
  • chore(deps): update dependency @​types/node to v20.11.9 (dcccbf1)
  • chore(deps): update dependency @​types/node to v20.12.12 (2bfa6a5)
  • chore(deps): update dependency @​types/node to v20.16.2 (d64ceba)
  • chore(deps): update dependency eslint to v8.57.0 (8dd5f5b)
  • chore(deps): update dependency eslint to v8.57.0 (85c3944)
  • chore(deps): update dependency eslint to v8.57.1 (#874) (9ec6c25), closes #874
  • chore(deps): update dependency eslint-plugin-prettier to v5.2.1 (dc3b1ee)
  • chore(deps): update dependency eslint-plugin-unused-imports to v3.1.0 (88297c6)
  • chore(deps): update dependency eslint-plugin-unused-imports to v3.2.0 (269ce9f)
  • chore(deps): update dependency prettier to v3.2.5 (f081d2a)
  • chore(deps): update dependency prettier to v3.6.1 (0092603)
  • chore(deps): update dependency prettier to v3.6.2 (7a3b076)
  • chore(deps): update dependency rollup to v4.12.0 (a74e3c9)
  • chore(deps): update dependency rollup to v4.12.1 (b6f0038)
  • chore(deps): update dependency rollup to v4.16.4 (63822ec)
  • chore(deps): update dependency rollup to v4.19.2 (a6e9893)
  • chore(deps): update dependency semantic-release to v23.0.2 (4745e8f)
  • chore(deps): update dependency semantic-release to v23.0.8 (6e6b952)
  • chore(deps): update dependency stylelint to v16.2.1 (339c440)
  • chore(deps): update dependency stylelint to v16.21.1 (31046bf)
  • chore(deps): update dependency stylelint-config-recommended-scss to v14.1.0 (e868d49)
  • chore(deps): update dependency stylelint-config-recommended-scss to v15 (e1f90ea)
  • chore(deps): update dependency stylelint-config-standard to v36.0.1 (50d9570)
  • chore(deps): update dependency stylelint-config-standard to v38 (40c0839)
  • chore(deps): update dependency stylelint-scss to v6.2.1 (2c691bc)
  • chore(deps): update dependency ts-jest to v29.1.4 (c720ac6)
  • chore(deps): update dependency typescript to v5.4.2 (c8cbfa0)
  • chore(deps): update dependency typescript to v5.4.5 (c0f325f)
  • chore(deps): update dependency typescript-eslint to v8.34.1 (ce7dfe8)
  • chore(deps): update dependency typescript-eslint to v8.35.1 (ebc3cfb)
  • chore(deps): update dependency typescript-eslint to v8.36.0 (ad761f6)

... (truncated)

Commits
  • 8f56018 fix: enable automerge for minor and patch updates
  • cb6bade Merge pull request #880 from lucavb/renovate/rollup-4.x
  • 1a5b3d9 chore(deps): update dependency rollup to v4.45.0
  • c608c31 chore(deps): remove unused semantic-release packages and update release workflow
  • ecac2fa chore(deps): update eslint monorepo to v9.31.0
  • ad761f6 chore(deps): update dependency typescript-eslint to v8.36.0
  • 31046bf chore(deps): update dependency stylelint to v16.21.1
  • 0862b2f chore(deps): update eslint monorepo to v9.30.1
  • ebc3cfb chore(deps): update dependency typescript-eslint to v8.35.1
  • 8eebd38 chore(deps): update eslint monorepo to v9.30.0
  • Additional commits viewable in compare view

Updates stylelint-config-standard-scss from 13.1.0 to 17.0.0

Release notes

Sourced from stylelint-config-standard-scss's releases.

17.0.0

16.0.0

15.0.1

  • Fixed: change minimum supported Node.js version to 20.

15.0.0

Bumps the dev-dependencies group with 13 updates:

| Package | From | To |
| --- | --- | --- |
| [@playwright/test](https://github.com/microsoft/playwright) | `1.47.0` | `1.62.1` |
| [@roots/bud](https://github.com/roots/bud/tree/HEAD/sources/@roots/bud) | `6.23.3` | `6.24.0` |
| [@roots/bud-eslint](https://github.com/roots/bud/tree/HEAD/sources/@roots/bud-eslint) | `6.23.3` | `6.24.0` |
| [@roots/bud-postcss](https://github.com/roots/bud/tree/HEAD/sources/@roots/bud-postcss) | `6.23.3` | `6.24.0` |
| [@roots/bud-prettier](https://github.com/roots/bud/tree/HEAD/sources/@roots/bud-prettier) | `6.23.3` | `6.24.0` |
| [@roots/bud-sass](https://github.com/roots/bud/tree/HEAD/sources/@roots/bud-sass) | `6.23.3` | `6.24.0` |
| [@roots/bud-stylelint](https://github.com/roots/bud/tree/HEAD/sources/@roots/bud-stylelint) | `6.23.3` | `6.24.0` |
| [@roots/eslint-config](https://github.com/roots/bud/tree/HEAD/sources/@roots/bud-typescript) | `6.23.3` | `6.24.0` |
| [@roots/sage](https://github.com/roots/bud/tree/HEAD/sources/@roots/sage) | `6.23.3` | `6.24.0` |
| [@shufo/prettier-plugin-blade](https://github.com/shufo/prettier-plugin-blade) | `1.14.1` | `1.16.2` |
| [postcss-preset-env](https://github.com/csstools/postcss-plugins/tree/HEAD/plugin-packs/postcss-preset-env) | `10.0.2` | `11.3.2` |
| [stylelint-checkstyle-reporter](https://github.com/lucavb/stylelint-checkstyle-reporter) | `1.0.0` | `1.1.1` |
| [stylelint-config-standard-scss](https://github.com/stylelint-scss/stylelint-config-standard-scss) | `13.1.0` | `17.0.0` |


Updates `@playwright/test` from 1.47.0 to 1.62.1
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.47.0...v1.62.1)

Updates `@roots/bud` from 6.23.3 to 6.24.0
- [Release notes](https://github.com/roots/bud/releases)
- [Commits](https://github.com/roots/bud/commits/v6.24.0/sources/@roots/bud)

Updates `@roots/bud-eslint` from 6.23.3 to 6.24.0
- [Release notes](https://github.com/roots/bud/releases)
- [Commits](https://github.com/roots/bud/commits/v6.24.0/sources/@roots/bud-eslint)

Updates `@roots/bud-postcss` from 6.23.3 to 6.24.0
- [Release notes](https://github.com/roots/bud/releases)
- [Commits](https://github.com/roots/bud/commits/v6.24.0/sources/@roots/bud-postcss)

Updates `@roots/bud-prettier` from 6.23.3 to 6.24.0
- [Release notes](https://github.com/roots/bud/releases)
- [Commits](https://github.com/roots/bud/commits/v6.24.0/sources/@roots/bud-prettier)

Updates `@roots/bud-sass` from 6.23.3 to 6.24.0
- [Release notes](https://github.com/roots/bud/releases)
- [Commits](https://github.com/roots/bud/commits/v6.24.0/sources/@roots/bud-sass)

Updates `@roots/bud-stylelint` from 6.23.3 to 6.24.0
- [Release notes](https://github.com/roots/bud/releases)
- [Commits](https://github.com/roots/bud/commits/v6.24.0/sources/@roots/bud-stylelint)

Updates `@roots/eslint-config` from 6.23.3 to 6.24.0
- [Release notes](https://github.com/roots/bud/releases)
- [Commits](https://github.com/roots/bud/commits/v6.24.0/sources/@roots/bud-typescript)

Updates `@roots/sage` from 6.23.3 to 6.24.0
- [Release notes](https://github.com/roots/bud/releases)
- [Commits](https://github.com/roots/bud/commits/v6.24.0/sources/@roots/sage)

Updates `@shufo/prettier-plugin-blade` from 1.14.1 to 1.16.2
- [Release notes](https://github.com/shufo/prettier-plugin-blade/releases)
- [Changelog](https://github.com/shufo/prettier-plugin-blade/blob/main/CHANGELOG.md)
- [Commits](shufo/prettier-plugin-blade@v1.14.1...v1.16.2)

Updates `postcss-preset-env` from 10.0.2 to 11.3.2
- [Changelog](https://github.com/csstools/postcss-plugins/blob/main/plugin-packs/postcss-preset-env/CHANGELOG.md)
- [Commits](https://github.com/csstools/postcss-plugins/commits/HEAD/plugin-packs/postcss-preset-env)

Updates `stylelint-checkstyle-reporter` from 1.0.0 to 1.1.1
- [Release notes](https://github.com/lucavb/stylelint-checkstyle-reporter/releases)
- [Changelog](https://github.com/lucavb/stylelint-checkstyle-reporter/blob/main/CHANGELOG.md)
- [Commits](lucavb/stylelint-checkstyle-reporter@v1.0.0...v1.1.1)

Updates `stylelint-config-standard-scss` from 13.1.0 to 17.0.0
- [Release notes](https://github.com/stylelint-scss/stylelint-config-standard-scss/releases)
- [Changelog](https://github.com/stylelint-scss/stylelint-config-standard-scss/blob/main/CHANGELOG.md)
- [Commits](stylelint-scss/stylelint-config-standard-scss@v13.1.0...v17.0.0)

---
updated-dependencies:
- dependency-name: "@playwright/test"
  dependency-version: 1.62.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: "@roots/bud"
  dependency-version: 6.24.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: "@roots/bud-eslint"
  dependency-version: 6.24.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: "@roots/bud-postcss"
  dependency-version: 6.24.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: "@roots/bud-prettier"
  dependency-version: 6.24.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: "@roots/bud-sass"
  dependency-version: 6.24.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: "@roots/bud-stylelint"
  dependency-version: 6.24.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: "@roots/eslint-config"
  dependency-version: 6.24.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: "@roots/sage"
  dependency-version: 6.24.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: "@shufo/prettier-plugin-blade"
  dependency-version: 1.16.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: postcss-preset-env
  dependency-version: 11.3.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-dependencies
- dependency-name: stylelint-checkstyle-reporter
  dependency-version: 1.1.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: stylelint-config-standard-scss
  dependency-version: 17.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Aug 9, 2026
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