Skip to content

chore(deps-dev): bump the development-dependencies group across 1 directory with 22 updates#40

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/main/development-dependencies-a3affa3ea6
Open

chore(deps-dev): bump the development-dependencies group across 1 directory with 22 updates#40
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/main/development-dependencies-a3affa3ea6

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Nov 28, 2025

Copy link
Copy Markdown
Contributor

Bumps the development-dependencies group with 22 updates in the / directory:

Package From To
@axe-core/playwright 4.10.2 4.11.0
@axe-core/react 4.10.2 4.11.0
@playwright/test 1.54.2 1.57.0
@storybook/test-runner 0.16.0 0.24.2
@swc-node/register 1.6.8 1.11.1
@swc/cli 0.1.65 0.7.9
@swc/core 1.3.107 1.15.3
@swc/jest 0.2.29 0.2.39
@tailwindcss/typography 0.5.16 0.5.19
@testing-library/jest-dom 6.6.4 6.9.1
autoprefixer 10.4.16 10.4.22
axe-core 4.10.3 4.11.0
cypress-axe 1.6.0 1.7.0
eslint-plugin-import 2.29.0 2.32.0
eslint-plugin-jsx-a11y 6.8.0 6.10.2
eslint-plugin-react 7.33.2 7.37.5
html-webpack-plugin 5.6.3 5.6.5
postcss 8.4.32 8.5.6
prettier 3.6.2 3.7.1
prettier-plugin-tailwindcss 0.5.14 0.7.1
ts-jest 29.4.1 29.4.5
typescript 5.3.3 5.9.3

Updates @axe-core/playwright from 4.10.2 to 4.11.0

Release notes

Sourced from @​axe-core/playwright's releases.

Release 4.11.0

Bug Fixes

Features

Changelog

Sourced from @​axe-core/playwright's changelog.

4.11.0 (2025-10-14)

Bug Fixes

Features

Commits

Updates @axe-core/react from 4.10.2 to 4.11.0

Release notes

Sourced from @​axe-core/react's releases.

Release 4.11.0

Bug Fixes

Features

Changelog

Sourced from @​axe-core/react's changelog.

4.11.0 (2025-10-14)

Bug Fixes

Features

Commits

Updates @playwright/test from 1.54.2 to 1.57.0

Release notes

Sourced from @​playwright/test's releases.

v1.57.0

Speedboard

In HTML reporter, there's a new tab we call "Speedboard":

It shows you all your executed tests sorted by slowness, and can help you understand where your test suite is taking longer than expected. Take a look at yours - maybe you'll find some tests that are spending a longer time waiting than they should!

Chrome for Testing

Starting with this release, Playwright switches from Chromium, to using Chrome for Testing builds. Both headed and headless browsers are subject to this. Your tests should still be passing after upgrading to Playwright 1.57.

We're expecting no functional changes to come from this switch. The biggest change is the new icon and title in your toolbar.

If you still see an unexpected behaviour change, please file an issue.

On Arm64 Linux, Playwright continues to use Chromium.

Waiting for webserver output

testConfig.webServer added a wait field. Pass a regular expression, and Playwright will wait until the webserver logs match it.

import { defineConfig } from '@playwright/test';
export default defineConfig({
webServer: {
command: 'npm run start',
wait: {
stdout: '/Listening on port (?<my_server_port>\d+)/'
},
},
});

If you include a named capture group into the expression, then Playwright will provide the capture group contents via environment variables:

import { test, expect } from '@playwright/test';
test.use({ baseUrl: http://localhost:${process.env.MY_SERVER_PORT ?? 3000} });
test('homepage', async ({ page }) => {
await page.goto('/');
});
</tr></table>

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​playwright/test since your current version.


Updates @storybook/test-runner from 0.16.0 to 0.24.2

Release notes

Sourced from @​storybook/test-runner's releases.

v0.24.2

🐛 Bug Fix

Authors: 1

v0.24.2-next.0

🐛 Bug Fix

Authors: 1

v0.24.1

🐛 Bug Fix

Authors: 3

v0.24.1-next.0

🐛 Bug Fix

Authors: 3

v0.24.0

🚀 Enhancement

🐛 Bug Fix

... (truncated)

Changelog

Sourced from @​storybook/test-runner's changelog.

v0.24.2 (Thu Nov 27 2025)

🐛 Bug Fix

Authors: 1


v0.24.1 (Wed Oct 29 2025)

🐛 Bug Fix

Authors: 3


v0.24.0 (Tue Oct 28 2025)

🚀 Enhancement

🐛 Bug Fix

Authors: 3


... (truncated)

Commits
  • 9076e8e Bump version to: 0.24.2 [skip ci]
  • 0036c0e Update CHANGELOG.md [skip ci]
  • 3ed1ae1 Merge pull request #590 from storybookjs/release/v0.24.2
  • 417c385 Merge branch 'main' into release/v0.24.2
  • 5c4501c Merge pull request #589 from storybookjs/yann/addon-vitest-migration
  • 3ee199d fix null check
  • 9fe469e Update src/test-storybook.ts
  • 44ea89a improve detection and update docs
  • 777b931 Revert "Add migration guide for the Vitest addon"
  • 5a9bb41 detect vite based storybook and warn about migration
  • Additional commits viewable in compare view
Maintainer changes

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


Updates @swc-node/register from 1.6.8 to 1.11.1

Release notes

Sourced from @​swc-node/register's releases.

@​swc-node/register@​1.10.9

What's Changed

Full Changelog: https://github.com/swc-project/swc-node/compare/@​swc-node/register@​1.10.8...@​swc-node/register@​1.10.9

@​swc-node/register@​1.10.8

What's Changed

New Contributors

Full Changelog: https://github.com/swc-project/swc-node/compare/@​swc-node/register@​1.10.7...@​swc-node/register@​1.10.8

@​swc-node/register@​1.10.5

What's Changed

New Contributors

Full Changelog: https://github.com/swc-project/swc-node/compare/@​swc-node/register@​1.10.3...@​swc-node/register@​1.10.5

@​swc-node/register@​1.10.3

What's Changed

Full Changelog: https://github.com/swc-project/swc-node/compare/@​swc-node/register@​1.10.2...@​swc-node/register@​1.10.3

@​swc-node/register@​1.10.1

What's Changed

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​swc-node/register since your current version.


Updates @swc/cli from 0.1.65 to 0.7.9

Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​swc/cli since your current version.


Updates @swc/core from 1.3.107 to 1.15.3

Changelog

Sourced from @​swc/core's changelog.

[1.15.3] - 2025-11-20

Bug Fixes

  • (es/codegen) Restore missing top-level comments (#11302) (0998c93)

  • (es/codegen) Emit comments of all nodes (#11314) (387ee0f)

  • (es/minifier) Prevent compress.comparisons from transforming expressions with side effects (#11256) (58a9d81)

  • (es/minifier) Remove unused arrow functions in dead code elimination (#11319) (88c6ac7)

  • (es/parser) Make the span of Program start at input start (#11199) (b56e008)

  • (es/plugin) Use #[cfg] to avoid compilation error (#11316) (f615cdb)

  • (es/quote) Replace usage of swc_atoms with swc_core::atoms (#11299) (c1e32fa)

Miscellaneous Tasks

  • (es/transformer) Determine project structure (#11306) (58f2602)

Performance

  • (es/compat) Merge regexp pass into Transformer (#11307) (440b391)

  • (es/compat) Merge export_namespace_from to Transformer (#11309) (7a528ce)

Refactor

[1.15.2] - 2025-11-14

Bug Fixes

... (truncated)

Commits
  • e36cc72 chore: Publish 1.15.3 with swc_core v48.0.2
  • 1064582 chore: Update changelog
  • 57b34fa chore: Publish 1.15.3-nightly-20251120.1 with swc_core v48.0.2
  • 2392161 chore: Specify dependency version to publish swc_cli
  • cfd92b1 chore: Publish crates with swc_core v48.0.2
  • 88c6ac7 fix(es/minifier): Remove unused arrow functions in dead code elimination (#11...
  • b0d3154 chore: use_sticky_comment: true for Claude Code Review
  • 6d5a585 chore: Publish crates with swc_core v48.0.1
  • f615cdb fix(es/plugin): use #[cfg] to avoid compilation error (#11316)
  • f98ca27 chore: Publish crates with swc_core v48.0.0
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​swc/core since your current version.


Updates @swc/jest from 0.2.29 to 0.2.39

Commits

Updates @tailwindcss/typography from 0.5.16 to 0.5.19

Release notes

Sourced from @​tailwindcss/typography's releases.

v0.5.19

Fixed

  • Fixed broken color styles (#405)

v0.5.18

Fixed

  • Fixed undefined variable error (#403)

v0.5.17

Added

  • Add modifiers for description list elements (#357)
  • Add prose-picture modifier (#367)

Fixed

  • Include unit in hr border-width value (#379)
  • Ensure <kbd> styles work with Tailwind CSS v4 (#387)

Changed

  • Remove lodash dependencies (#402)
Changelog

Sourced from @​tailwindcss/typography's changelog.

[0.5.19] - 2025-09-24

Fixed

  • Fixed broken color styles (#405)

[0.5.18] - 2025-09-19

Fixed

  • Fixed undefined variable error (#403)

[0.5.17] - 2025-09-19

Added

  • Add modifiers for description list elements (#357)
  • Add prose-picture modifier (#367)

Fixed

  • Include unit in hr border-width value (#379)
  • Ensure <kbd> styles work with Tailwind CSS v4 (#387)

Changed

  • Remove lodash dependencies (#402)
Commits

Updates @testing-library/jest-dom from 6.6.4 to 6.9.1

Release notes

Sourced from @​testing-library/jest-dom's releases.

v6.9.1

6.9.1 (2025-10-01)

Bug Fixes

v6.9.0

6.9.0 (2025-09-30)

Features

  • Add .toAppearBefore/.toAppearAfter matcher (#702) (95f870a)

v6.8.0

6.8.0 (2025-08-20)

Features

v6.7.0

6.7.0 (2025-08-13)

Features

Commits

Updates autoprefixer from 10.4.16 to 10.4.22

Release notes

Sourced from autoprefixer's releases.

10.4.22

  • Fixed stretch prefixes on new Can I Use database.
  • Updated fraction.js.

10.4.21

10.4.20

  • Fixed fit-content prefix for Firefox.

10.4.19

  • Removed end value has mixed support, consider using flex-end warning since end/start now have good support.

10.4.18

  • Fixed removing -webkit-box-orient on -webkit-line-clamp (@​Goodwine).

10.4.17

  • Fixed user-select: contain prefixes.
Changelog

Sourced from autoprefixer's changelog.

10.4.22

  • Fixed stretch prefixes on new Can I Use database.
  • Updated fraction.js.

10.4.21

10.4.20

  • Fixed fit-content prefix for Firefox.

10.4.19

  • Removed end value has mixed support, consider using flex-end warning since end/start now have good support.

10.4.18

  • Fixed removing -webkit-box-orient on -webkit-line-clamp (@​Goodwine).

10.4.17

  • Fixed user-select: contain prefixes.
Commits
  • 73dc62c Release 10.4.22 version
  • 9973c59 Lock CI action versions
  • 4b4feca Fix Node.js 10 on CI
  • 15c21d3 Fix old Node.js CI
  • 27523c1 Update fraction.js
  • 88a0d3e Update dependencies and fix stretch and update example
  • 541295c Release 10.4.21 version
  • 8d555f7 Update dependencies and sort imports
  • 5c2421e Update Node.js and pnpm on CI
  • af9cb5f fix: replace :-moz-placeholder-shown with :-moz-placeholder (#1532)
  • Additional commits viewable in compare view

Updates axe-core from 4.10.3 to 4.11.0

Release notes

Sourced from axe-core's releases.

Release 4.11.0

This release adds the new RGAA standard to many rules. Of particular note is that some best practice rules under WCAG are required under the RGAA standard: focus-order-semantics (experimental), region, skip-link, table-duplicate-name. This means that these rules are tagged as both best-practice and RGAAv4. Applications which are filtering rules based on the best-practice tags will need to update the logic in order to handle RGAA rules that are tagged best-practice.

Features

  • add RGAA tags to rules (#4862) (53a925a)
  • aria-prohibited-attr: add support for fallback roles (#4325) (62a19a9)
  • axe.d.ts: add nodeSerializer typings (#4551) (a2f3a48), closes #4093
  • DqElement: deprecate fromFrame function (#4881) (374c376), closes #4093
  • DqElement: Truncate large html strings when the element has a large outerHTML string (#4796) (404a4fb), closes #4544
  • get-xpath: return proper relative selector for id (#4846) (1035f9e), closes #4845
  • i18n: Add Portugal Portuguese translation (#4725) (5b6a65a)
  • incomplete with node on which an error occurred (#4863) (32ed8da)
  • locale: Added ru locale (#4565)...

    Description has been truncated

…ectory with 22 updates

Bumps the development-dependencies group with 22 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@axe-core/playwright](https://github.com/dequelabs/axe-core-npm) | `4.10.2` | `4.11.0` |
| [@axe-core/react](https://github.com/dequelabs/axe-core-npm) | `4.10.2` | `4.11.0` |
| [@playwright/test](https://github.com/microsoft/playwright) | `1.54.2` | `1.57.0` |
| [@storybook/test-runner](https://github.com/storybookjs/test-runner) | `0.16.0` | `0.24.2` |
| [@swc-node/register](https://github.com/swc-project/swc-node) | `1.6.8` | `1.11.1` |
| [@swc/cli](https://github.com/swc-project/pkgs) | `0.1.65` | `0.7.9` |
| [@swc/core](https://github.com/swc-project/swc) | `1.3.107` | `1.15.3` |
| [@swc/jest](https://github.com/swc-project/pkgs) | `0.2.29` | `0.2.39` |
| [@tailwindcss/typography](https://github.com/tailwindlabs/tailwindcss-typography) | `0.5.16` | `0.5.19` |
| [@testing-library/jest-dom](https://github.com/testing-library/jest-dom) | `6.6.4` | `6.9.1` |
| [autoprefixer](https://github.com/postcss/autoprefixer) | `10.4.16` | `10.4.22` |
| [axe-core](https://github.com/dequelabs/axe-core) | `4.10.3` | `4.11.0` |
| [cypress-axe](https://github.com/component-driven/cypress-axe) | `1.6.0` | `1.7.0` |
| [eslint-plugin-import](https://github.com/import-js/eslint-plugin-import) | `2.29.0` | `2.32.0` |
| [eslint-plugin-jsx-a11y](https://github.com/jsx-eslint/eslint-plugin-jsx-a11y) | `6.8.0` | `6.10.2` |
| [eslint-plugin-react](https://github.com/jsx-eslint/eslint-plugin-react) | `7.33.2` | `7.37.5` |
| [html-webpack-plugin](https://github.com/jantimon/html-webpack-plugin) | `5.6.3` | `5.6.5` |
| [postcss](https://github.com/postcss/postcss) | `8.4.32` | `8.5.6` |
| [prettier](https://github.com/prettier/prettier) | `3.6.2` | `3.7.1` |
| [prettier-plugin-tailwindcss](https://github.com/tailwindlabs/prettier-plugin-tailwindcss) | `0.5.14` | `0.7.1` |
| [ts-jest](https://github.com/kulshekhar/ts-jest) | `29.4.1` | `29.4.5` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.3.3` | `5.9.3` |



Updates `@axe-core/playwright` from 4.10.2 to 4.11.0
- [Release notes](https://github.com/dequelabs/axe-core-npm/releases)
- [Changelog](https://github.com/dequelabs/axe-core-npm/blob/develop/CHANGELOG.md)
- [Commits](dequelabs/axe-core-npm@v4.10.2...v4.11.0)

Updates `@axe-core/react` from 4.10.2 to 4.11.0
- [Release notes](https://github.com/dequelabs/axe-core-npm/releases)
- [Changelog](https://github.com/dequelabs/axe-core-npm/blob/develop/CHANGELOG.md)
- [Commits](dequelabs/axe-core-npm@v4.10.2...v4.11.0)

Updates `@playwright/test` from 1.54.2 to 1.57.0
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.54.2...v1.57.0)

Updates `@storybook/test-runner` from 0.16.0 to 0.24.2
- [Release notes](https://github.com/storybookjs/test-runner/releases)
- [Changelog](https://github.com/storybookjs/test-runner/blob/v0.24.2/CHANGELOG.md)
- [Commits](storybookjs/test-runner@v0.16.0...v0.24.2)

Updates `@swc-node/register` from 1.6.8 to 1.11.1
- [Release notes](https://github.com/swc-project/swc-node/releases)
- [Commits](https://github.com/swc-project/swc-node/compare/@swc-node/register@1.6.8...@swc-node/register@1.11.1)

Updates `@swc/cli` from 0.1.65 to 0.7.9
- [Commits](https://github.com/swc-project/pkgs/commits)

Updates `@swc/core` from 1.3.107 to 1.15.3
- [Release notes](https://github.com/swc-project/swc/releases)
- [Changelog](https://github.com/swc-project/swc/blob/main/CHANGELOG.md)
- [Commits](swc-project/swc@v1.3.107...v1.15.3)

Updates `@swc/jest` from 0.2.29 to 0.2.39
- [Commits](https://github.com/swc-project/pkgs/commits)

Updates `@tailwindcss/typography` from 0.5.16 to 0.5.19
- [Release notes](https://github.com/tailwindlabs/tailwindcss-typography/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss-typography/blob/main/CHANGELOG.md)
- [Commits](tailwindlabs/tailwindcss-typography@v0.5.16...v0.5.19)

Updates `@testing-library/jest-dom` from 6.6.4 to 6.9.1
- [Release notes](https://github.com/testing-library/jest-dom/releases)
- [Changelog](https://github.com/testing-library/jest-dom/blob/main/CHANGELOG.md)
- [Commits](testing-library/jest-dom@v6.6.4...v6.9.1)

Updates `autoprefixer` from 10.4.16 to 10.4.22
- [Release notes](https://github.com/postcss/autoprefixer/releases)
- [Changelog](https://github.com/postcss/autoprefixer/blob/main/CHANGELOG.md)
- [Commits](postcss/autoprefixer@10.4.16...10.4.22)

Updates `axe-core` from 4.10.3 to 4.11.0
- [Release notes](https://github.com/dequelabs/axe-core/releases)
- [Changelog](https://github.com/dequelabs/axe-core/blob/develop/CHANGELOG.md)
- [Commits](dequelabs/axe-core@v4.10.3...v4.11.0)

Updates `cypress-axe` from 1.6.0 to 1.7.0
- [Release notes](https://github.com/component-driven/cypress-axe/releases)
- [Commits](component-driven/cypress-axe@v1.6.0...v1.7.0)

Updates `eslint-plugin-import` from 2.29.0 to 2.32.0
- [Release notes](https://github.com/import-js/eslint-plugin-import/releases)
- [Changelog](https://github.com/import-js/eslint-plugin-import/blob/main/CHANGELOG.md)
- [Commits](import-js/eslint-plugin-import@v2.29.0...v2.32.0)

Updates `eslint-plugin-jsx-a11y` from 6.8.0 to 6.10.2
- [Release notes](https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/releases)
- [Changelog](https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/blob/main/CHANGELOG.md)
- [Commits](jsx-eslint/eslint-plugin-jsx-a11y@v6.8.0...v6.10.2)

Updates `eslint-plugin-react` from 7.33.2 to 7.37.5
- [Release notes](https://github.com/jsx-eslint/eslint-plugin-react/releases)
- [Changelog](https://github.com/jsx-eslint/eslint-plugin-react/blob/master/CHANGELOG.md)
- [Commits](jsx-eslint/eslint-plugin-react@v7.33.2...v7.37.5)

Updates `html-webpack-plugin` from 5.6.3 to 5.6.5
- [Release notes](https://github.com/jantimon/html-webpack-plugin/releases)
- [Changelog](https://github.com/jantimon/html-webpack-plugin/blob/main/CHANGELOG.md)
- [Commits](jantimon/html-webpack-plugin@v5.6.3...v5.6.5)

Updates `postcss` from 8.4.32 to 8.5.6
- [Release notes](https://github.com/postcss/postcss/releases)
- [Changelog](https://github.com/postcss/postcss/blob/main/CHANGELOG.md)
- [Commits](postcss/postcss@8.4.32...8.5.6)

Updates `prettier` from 3.6.2 to 3.7.1
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@3.6.2...3.7.1)

Updates `prettier-plugin-tailwindcss` from 0.5.14 to 0.7.1
- [Release notes](https://github.com/tailwindlabs/prettier-plugin-tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/prettier-plugin-tailwindcss/blob/main/CHANGELOG.md)
- [Commits](tailwindlabs/prettier-plugin-tailwindcss@v0.5.14...v0.7.1)

Updates `ts-jest` from 29.4.1 to 29.4.5
- [Release notes](https://github.com/kulshekhar/ts-jest/releases)
- [Changelog](https://github.com/kulshekhar/ts-jest/blob/main/CHANGELOG.md)
- [Commits](kulshekhar/ts-jest@v29.4.1...v29.4.5)

Updates `typescript` from 5.3.3 to 5.9.3
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Commits](microsoft/TypeScript@v5.3.3...v5.9.3)

---
updated-dependencies:
- dependency-name: "@axe-core/playwright"
  dependency-version: 4.11.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: "@axe-core/react"
  dependency-version: 4.11.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: "@playwright/test"
  dependency-version: 1.57.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: "@storybook/test-runner"
  dependency-version: 0.24.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: "@swc-node/register"
  dependency-version: 1.11.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: "@swc/cli"
  dependency-version: 0.7.9
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: "@swc/core"
  dependency-version: 1.15.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: "@swc/jest"
  dependency-version: 0.2.39
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: "@tailwindcss/typography"
  dependency-version: 0.5.19
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: "@testing-library/jest-dom"
  dependency-version: 6.9.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: autoprefixer
  dependency-version: 10.4.22
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: axe-core
  dependency-version: 4.11.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: cypress-axe
  dependency-version: 1.7.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: eslint-plugin-import
  dependency-version: 2.32.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: eslint-plugin-jsx-a11y
  dependency-version: 6.10.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: eslint-plugin-react
  dependency-version: 7.37.5
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: html-webpack-plugin
  dependency-version: 5.6.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: postcss
  dependency-version: 8.5.6
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: prettier
  dependency-version: 3.7.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: prettier-plugin-tailwindcss
  dependency-version: 0.7.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: ts-jest
  dependency-version: 29.4.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: typescript
  dependency-version: 5.9.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-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 Nov 28, 2025
@vercel

vercel Bot commented Nov 28, 2025

Copy link
Copy Markdown

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Preview Comments Updated (UTC)
react-a11y-presentation Error Error Nov 28, 2025 6:14am

@snyk-io

snyk-io Bot commented Nov 28, 2025

Copy link
Copy Markdown

Snyk checks have passed. No issues have been found so far.

Status Scanner Critical High Medium Low Total (0)
Open Source Security 0 0 0 0 0 issues
Code Security 0 0 0 0 0 issues

💻 Catch issues earlier using the plugins for VS Code, JetBrains IDEs, Visual Studio, and Eclipse.

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