Skip to content
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

Bump the development-dependencies group across 1 directory with 22 updates #374

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 25, 2024

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

Package From To
@axe-core/playwright 4.6.0 4.10.1
@changesets/cli 2.27.1 2.27.10
@matrix-widget-toolkit/testing 2.3.2 3.0.2
@playwright/test 1.30.0 1.49.0
@testing-library/jest-dom 6.2.0 6.6.3
@testing-library/react 12.1.5 16.0.1
@types/lodash 4.14.202 4.17.13
@types/node 20.11.1 22.9.3
@types/react-beautiful-dnd 13.1.2 13.1.8
eslint 8.55.0 9.15.0
eslint-plugin-notice 0.9.10 1.0.0
eslint-plugin-playwright 0.12.0 2.1.0
eslint-plugin-promise 6.1.1 7.1.0
husky 9.1.6 9.1.7
i18next-parser 8.12.0 9.0.2
lint-staged 15.2.0 15.2.10
nanoid 3.3.4 5.0.8
prettier 2.8.4 3.3.3
prettier-plugin-organize-imports 3.2.4 4.1.0
react-i18next 12.1.4 15.1.1
testcontainers 10.5.0 10.15.0
typescript 4.6.4 5.7.2

Updates @axe-core/playwright from 4.6.0 to 4.10.1

Release notes

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

Release 4.10.1

What's Changed

New Contributors

Full Changelog: dequelabs/axe-core-npm@v4.10.0...v4.10.1

Release 4.10.0

What's Changed

New Contributors

Full Changelog: dequelabs/axe-core-npm@v4.9.1...v4.10.0

Release 4.9.1

What's Changed

... (truncated)

Changelog

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

4.10.1 (2024-10-29)

Bug Fixes

4.10.0 (2024-08-16)

Bug Fixes

Features

4.9.1 (2024-05-15)

Bug Fixes

4.9.0 (2024-04-01)

Bug Fixes

Features

4.8.5 (2024-02-08)

Bug Fixes

... (truncated)

Commits

Updates @changesets/cli from 2.27.1 to 2.27.10

Release notes

Sourced from @​changesets/cli's releases.

@​changesets/cli@​2.27.10

Patch Changes

@​changesets/cli@​2.27.9

Patch Changes

@​changesets/cli@​2.27.8

Patch Changes

... (truncated)

Commits

Updates @matrix-widget-toolkit/testing from 2.3.2 to 3.0.2

Release notes

Sourced from @​matrix-widget-toolkit/testing's releases.

@​matrix-widget-toolkit/testing@​3.0.2

Patch Changes

  • 9486231: Remove usage of lodash

@​matrix-widget-toolkit/testing@​3.0.1

Patch Changes

  • 55d42f1: Fix the esm exports and lodash exports
  • Updated dependencies [55d42f1]
    • @​matrix-widget-toolkit/api@​3.4.2

@​matrix-widget-toolkit/testing@​3.0.0

Highlights

We are happy to share the newest Matrix Widget Toolkit update with you today! While the list isn't long, it is quite significant.

In this release, we migrated away from Facebook's Create React App (CRA) framework in favour of the new and actively maintained Vite framework (mind the French pronunciation 😉). This allows us to update some dependencies with known issues that were kept back behind CRA. Along with that, we also swapped out our testing framework from jest to the Vite-native Vitest. If you're consuming our @matrix-widget-toolkit/testing package, this means breaking changes which caused us to release a new major version. In our experience, upgrading apps that consume the Widget Toolkit, including the testing package, is fairly straightforward.

Changelog

Major Changes

  • f00e7cf: Migrate to vitest for testing. We do not support jest any further

Patch Changes

  • Updated dependencies [f00e7cf]
    • @​matrix-widget-toolkit/api@​3.4.1

@​matrix-widget-toolkit/testing@​2.5.0

Minor Changes

  • 9a54c89: Add support for mocking the download_file widget action

@​matrix-widget-toolkit/testing@​2.4.0

Minor Changes

  • d4cef99: Implement upload files into media repository.

Patch Changes

  • Updated dependencies [d4cef99]
    • @​matrix-widget-toolkit/api@​3.3.0
Changelog

Sourced from @​matrix-widget-toolkit/testing's changelog.

3.0.2

Patch Changes

  • 9486231: Remove usage of lodash

3.0.1

Patch Changes

  • 55d42f1: Fix the esm exports and lodash exports
  • Updated dependencies [55d42f1]
    • @​matrix-widget-toolkit/api@​3.4.2

3.0.0

Major Changes

  • f00e7cf: Migrate to vitest for testing. We do not support jest any further

Patch Changes

  • Updated dependencies [f00e7cf]
    • @​matrix-widget-toolkit/api@​3.4.1

2.5.0

Minor Changes

  • 9a54c89: Add support for mocking the download_file widget action

2.4.0

Minor Changes

  • d4cef99: Implement upload files into media repository.

Patch Changes

  • Updated dependencies [d4cef99]
    • @​matrix-widget-toolkit/api@​3.3.0
Commits

Updates @playwright/test from 1.30.0 to 1.49.0

Release notes

Sourced from @​playwright/test's releases.

v1.49.0

Aria snapshots

New assertion expect(locator).toMatchAriaSnapshot() verifies page structure by comparing to an expected accessibility tree, represented as YAML.

await page.goto('https://playwright.dev');
await expect(page.locator('body')).toMatchAriaSnapshot(`
  - banner:
    - heading /Playwright enables reliable/ [level=1]
    - link "Get started"
    - link "Star microsoft/playwright on GitHub"
  - main:
    - img "Browsers (Chromium, Firefox, WebKit)"
    - heading "Any browser • Any platform • One API"
`);

You can generate this assertion with Test Generator and update the expected snapshot with --update-snapshots command line flag.

Learn more in the aria snapshots guide.

Test runner

Breaking: channels chrome, msedge and similar switch to new headless

This change affects you if you're using one of the following channels in your playwright.config.ts:

  • chrome, chrome-dev, chrome-beta, or chrome-canary
  • msedge, msedge-dev, msedge-beta, or msedge-canary

What do I need to do?

After updating to Playwright v1.49, run your test suite. If it still passes, you're good to go. If not, you will probably need to update your snapshots, and adapt some of your test code around PDF viewers and extensions. See [issue #33566](microsoft/playwright#33566) for more details.

Other breaking changes

  • There will be no more updates for WebKit on Ubuntu 20.04 and Debian 11. We recommend updating your OS to a later version.
  • Package @playwright/experimental-ct-vue2 will no longer be updated.
  • Package @playwright/experimental-ct-solid will no longer be updated.

Try new Chromium headless

You can opt into the new headless mode by using 'chromium' channel. As official Chrome documentation puts it:

New Headless on the other hand is the real Chrome browser, and is thus more authentic, reliable, and offers more features. This makes it more suitable for high-accuracy end-to-end web app testing or browser extension testing.

... (truncated)

Commits
  • a70a96a chore: mark v1.49.0 (#33649)
  • 53f51a8 cherry-pick(#33638): chore: clear highlight when performing action
  • 2a00ca8 cherry-pick(#33635): chore: add cm placeholder text
  • 0e64340 cherry-pick(#33632): chore: highlight edited locator while recording
  • cb0f456 cherry-pick(#33629): fix(rebase): do not apply multiple rebaselines to the sa...
  • 698823a cherry-pick(#33627): fix(codegen): document.documentElement is null on early ...
  • c0fa804 cherry-pick(#33619): fix(aria): normalize whitespace in toMatchAccessible{Nam...
  • 7a32228 cherry-pick(#33614): docs: add ariaSnapshot.timeout for language ports (#33615)
  • 0e31ace cherry-pick(#33575): fix(canvas snapshots): position mismatch in headless mode
  • b2a39ff cherry-pick(#33604): docs: update docs about headless shell
  • Additional commits viewable in compare view
Maintainer changes

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


Updates @testing-library/jest-dom from 6.2.0 to 6.6.3

Release notes

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

v6.6.3

6.6.3 (2024-10-31)

Bug Fixes

  • add vitest import when extending vitest matchers (#646) (5ba0156)

v6.6.2

6.6.2 (2024-10-17)

Bug Fixes

  • remove recursive type reference in vitest types (#636) (4468378)

v6.6.1

6.6.1 (2024-10-16)

Bug Fixes

  • fix lodash import in to-have-selection.js (#642) (ced792e)

v6.6.0

6.6.0 (2024-10-16)

Features

v6.5.0

6.5.0 (2024-08-23)

Features

  • toHaveValue: Asserting aria-valuenow (#479) (acbf416)

v6.4.8

6.4.8 (2024-07-23)

Bug Fixes

  • Drop peerDependencies from package.json (#610) (faf534b)

v6.4.7

6.4.7 (2024-07-22)

... (truncated)

Commits
  • 5ba0156 fix: add vitest import when extending vitest matchers (#646)
  • 4468378 fix: remove recursive type reference in vitest types (#636)
  • abba961 docs: add billyjanitsch as a contributor for bug (#644)
  • 9490615 docs: add G-Rath as a contributor for code (#643)
  • ced792e fix: fix lodash import in to-have-selection.js (#642)
  • 9b14804 feat: implement toHaveSelection (#637)
  • f5b0e94 docs: add diegohaz as a contributor for ideas (#640)
  • 68e927e docs: add pwolaq as a contributor for code, and test (#639)
  • 04005db docs: add silviuaavram as a contributor for code, and test (#638)
  • 4723de3 docs: add mibcadet as a contributor for doc (#628)
  • Additional commits viewable in compare view

Updates @testing-library/react from 12.1.5 to 16.0.1

Release notes

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

v16.0.1

16.0.1 (2024-08-29)

Bug Fixes

  • Add support for exactOptionalPropertyTypes in TypeScript (#1351) (3dcd8a9)

v16.0.0

16.0.0 (2024-06-03)

Features

  • Move @testing-library/dom and @types/react-dom to peer dependencies (#1305) (a4744fa)

BREAKING CHANGES

  • @testing-library/dom was moved to a peer dependency and needs to be explicitly installed. This reduces the chance of having conflicting versions of @testing-library/dom installed that frequently caused bugs when used with @testing-library/user-event. We will also be able to allow new versions of @testing-library/dom being used without a SemVer major release of @testing-library/react by just widening the peer dependency. @types/react-dom needs to be installed if you're typechecking files using @testing-library/react.

v15.0.7

15.0.7 (2024-05-07)

Bug Fixes

  • Ensure act is not any when React.act is not declared (#1323) (c1f2957)

v15.0.6

15.0.6 (2024-05-01)

Bug Fixes

v15.0.5

15.0.5 (2024-04-26)

Bug Fixes

  • Stop restricting container option based on hydrate (#1313) (d143f46)

v15.0.4

... (truncated)

Commits
  • 3dcd8a9 fix: Add support for exactOptionalPropertyTypes in TypeScript (#1351)
  • 7a28fa9 Fix React Canary and Experimental tests (#1353)
  • a4744fa feat: Move @testing-library/dom and @types/react-dom to peer dependencie...
  • c1f2957 fix: Ensure act is not any when React.act is not declared (#1323)
  • b6e59f7 fix: export new act when available (#1319)
  • f6a1677 chore: Adjust tests to workaround 18.3.0 bug (#1315)
  • d143f46 fix: Stop restricting container option based on hydrate (#1313)
  • 48282c2 fix: Ensure renderHook options extend options for render (#1308)
  • 067d0c6 fix: Don't raise TypeScript errors when hydating document (#1304)
  • c63b873 fix: Improve legacyRoot error message (#1301)
  • Additional commits viewable in compare view

Updates @types/lodash from 4.14.202 to 4.17.13

Commits

Updates @types/node from 20.11.1 to 22.9.3

Commits

Updates @types/react-beautiful-dnd from 13.1.2 to 13.1.8

Commits

Updates eslint from 8.55.0 to 9.15.0

Release notes

Sourced from eslint's releases.

v9.15.0

Features

  • 01557ce feat: Implement Language#normalizeLanguageOptions() (#19104) (Nicholas C. Zakas)
  • 2edc0e2 feat: add meta.defaultOptions (#17656) (Josh Goldberg ✨)
  • bdec50e feat: fix no-useless-computed-key false negative with __proto__ (#19123) (Milos Djermanovic)
  • 3087c9e feat: add meta object to @eslint/js plugin (#19095) (Francesco Trotta)

Bug Fixes

  • fd33f13 fix: update types for no-restricted-imports rule (#19060) (Nitin Kumar)
  • bd35098 fix: switch away from Node.js node:assert and AssertionError (#19082) (Josh Goldberg ✨)
  • 9db5b15 fix: unsafe report for no-lonely-if (#19087) (Abraham Guo)
  • 68fa497 fix: ignore files on a different drive on Windows (#19069) (Francesco Trotta)
  • 4ce625a fix: upgrade @​humanwhocodes/retry@​0.4.1 to avoid debug logs (#19102) (Milos Djermanovic)

Documentation

  • d927920 docs: fix styles in no-js mode (#18916) (Tanuj Kanti)
  • 09bc2a8 docs: Update README (GitHub Actions Bot)
  • 39089c8 docs: add no-useless-computed-key examples with object patterns (#19109) (Milos Djermanovic)
  • 895c60f docs: add missing messageId property and suggestion properties (#19122) (fnx)
  • 298625e docs: Change CLI -c to use flat config (#19103) (Nicholas C. Zakas)
  • 522d8a3 docs: add deprecation on indent, quotes and semi rule types (#19090) (Marco Pasqualetti)

Chores

  • 2967d91 chore: upgrade @​eslint/js@​9.15.0 (#19133) (Milos Djermanovic)
  • b441bee chore: package.json update for @​eslint/js release (Jenkins)
  • 7d6bf4a chore: upgrade @​eslint/core@​0.9.0 (#19131) (Milos Djermanovic)
  • 902e707 chore: upgrade @​eslint/plugin-kit@​0.2.3 (#19130) (Milos Djermanovic)
  • 5ff6c1d chore: bump cross-spawn (#19125) (Ian Bobinac)
  • cceccc7 chore: update dependency @​eslint/json to ^0.6.0 (#19117) (renovate[bot])
  • 0da3f73 chore: update algolia referrer (#19114) (Strek)
  • 4f08332 ci: unpin trunk-io/trunk-action (#19108) (Francesco Trotta)
  • 6b75683 perf: optimize text-table by replacing regex with trimEnd (#19061) (Nitin Kumar)

v9.14.0

Features

  • 3fa009f feat: add support for Import Attributes and RegExp Modifiers (#19076) (Milos Djermanovic)
  • b0faee3 feat: add types for the @eslint/js package (#19010) (Nitin Kumar)

Bug Fixes

  • 24d0172 fix: enable retry concurrency limit for readFile() (#19077) (Nicholas C. Zakas)
  • b442067 fix: Don't crash when directory is deleted during traversal. (#19067) (Nicholas C. Zakas)
  • d474443 fix: avoid call stack overflow while processing globs (#19035) (Livia Medeiros)

Documentation

  • 151c965 docs: update context.languageOptions.parser description (#19084) (Nitin Kumar)
  • dc34f94 docs: Update README (GitHub Actions Bot)
  • f16e846 docs: Update README (GitHub Actions Bot)
  • ee0a77e docs: change link from @​types/eslint to lib/types (#19049) (Karl Horky)
  • 50f03a1 docs: Clarify global ignores in config migration guide (#19032) (Milos Djermanovic)

... (truncated)

Changelog

Sourced from eslint's changelog.

v9.15.0 - November 15, 2024

  • 2967d91 chore: upgrade @​eslint/js@​9.15.0 (#19133) (Milos Djermanovic)
  • b441bee chore: package.json update for @​eslint/js release (Jenkins)
  • 7d6bf4a chore: upgrade @​eslint/core@​0.9.0 (

…dates

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.6.0` | `4.10.1` |
| [@changesets/cli](https://github.com/changesets/changesets) | `2.27.1` | `2.27.10` |
| [@matrix-widget-toolkit/testing](https://github.com/nordeck/matrix-widget-toolkit/tree/HEAD/packages/testing) | `2.3.2` | `3.0.2` |
| [@playwright/test](https://github.com/microsoft/playwright) | `1.30.0` | `1.49.0` |
| [@testing-library/jest-dom](https://github.com/testing-library/jest-dom) | `6.2.0` | `6.6.3` |
| [@testing-library/react](https://github.com/testing-library/react-testing-library) | `12.1.5` | `16.0.1` |
| [@types/lodash](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/lodash) | `4.14.202` | `4.17.13` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `20.11.1` | `22.9.3` |
| [@types/react-beautiful-dnd](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-beautiful-dnd) | `13.1.2` | `13.1.8` |
| [eslint](https://github.com/eslint/eslint) | `8.55.0` | `9.15.0` |
| [eslint-plugin-notice](https://github.com/nickdeis/eslint-plugin-notice) | `0.9.10` | `1.0.0` |
| [eslint-plugin-playwright](https://github.com/playwright-community/eslint-plugin-playwright) | `0.12.0` | `2.1.0` |
| [eslint-plugin-promise](https://github.com/eslint-community/eslint-plugin-promise) | `6.1.1` | `7.1.0` |
| [husky](https://github.com/typicode/husky) | `9.1.6` | `9.1.7` |
| [i18next-parser](https://github.com/i18next/i18next-parser) | `8.12.0` | `9.0.2` |
| [lint-staged](https://github.com/lint-staged/lint-staged) | `15.2.0` | `15.2.10` |
| [nanoid](https://github.com/ai/nanoid) | `3.3.4` | `5.0.8` |
| [prettier](https://github.com/prettier/prettier) | `2.8.4` | `3.3.3` |
| [prettier-plugin-organize-imports](https://github.com/simonhaenisch/prettier-plugin-organize-imports) | `3.2.4` | `4.1.0` |
| [react-i18next](https://github.com/i18next/react-i18next) | `12.1.4` | `15.1.1` |
| [testcontainers](https://github.com/testcontainers/testcontainers-node) | `10.5.0` | `10.15.0` |
| [typescript](https://github.com/microsoft/TypeScript) | `4.6.4` | `5.7.2` |



Updates `@axe-core/playwright` from 4.6.0 to 4.10.1
- [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.6.0...v4.10.1)

Updates `@changesets/cli` from 2.27.1 to 2.27.10
- [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 `@matrix-widget-toolkit/testing` from 2.3.2 to 3.0.2
- [Release notes](https://github.com/nordeck/matrix-widget-toolkit/releases)
- [Changelog](https://github.com/nordeck/matrix-widget-toolkit/blob/main/packages/testing/CHANGELOG.md)
- [Commits](https://github.com/nordeck/matrix-widget-toolkit/commits/@matrix-widget-toolkit/[email protected]/packages/testing)

Updates `@playwright/test` from 1.30.0 to 1.49.0
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.30.0...v1.49.0)

Updates `@testing-library/jest-dom` from 6.2.0 to 6.6.3
- [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.2.0...v6.6.3)

Updates `@testing-library/react` from 12.1.5 to 16.0.1
- [Release notes](https://github.com/testing-library/react-testing-library/releases)
- [Changelog](https://github.com/testing-library/react-testing-library/blob/main/CHANGELOG.md)
- [Commits](testing-library/react-testing-library@v12.1.5...v16.0.1)

Updates `@types/lodash` from 4.14.202 to 4.17.13
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/lodash)

Updates `@types/node` from 20.11.1 to 22.9.3
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `@types/react-beautiful-dnd` from 13.1.2 to 13.1.8
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-beautiful-dnd)

Updates `eslint` from 8.55.0 to 9.15.0
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](eslint/eslint@v8.55.0...v9.15.0)

Updates `eslint-plugin-notice` from 0.9.10 to 1.0.0
- [Commits](https://github.com/nickdeis/eslint-plugin-notice/commits)

Updates `eslint-plugin-playwright` from 0.12.0 to 2.1.0
- [Release notes](https://github.com/playwright-community/eslint-plugin-playwright/releases)
- [Changelog](https://github.com/playwright-community/eslint-plugin-playwright/blob/main/CHANGELOG.md)
- [Commits](playwright-community/eslint-plugin-playwright@v0.12.0...v2.1.0)

Updates `eslint-plugin-promise` from 6.1.1 to 7.1.0
- [Release notes](https://github.com/eslint-community/eslint-plugin-promise/releases)
- [Changelog](https://github.com/eslint-community/eslint-plugin-promise/blob/main/CHANGELOG.md)
- [Commits](eslint-community/eslint-plugin-promise@v6.1.1...v7.1.0)

Updates `husky` from 9.1.6 to 9.1.7
- [Release notes](https://github.com/typicode/husky/releases)
- [Commits](typicode/husky@v9.1.6...v9.1.7)

Updates `i18next-parser` from 8.12.0 to 9.0.2
- [Release notes](https://github.com/i18next/i18next-parser/releases)
- [Changelog](https://github.com/i18next/i18next-parser/blob/master/CHANGELOG.md)
- [Commits](i18next/i18next-parser@8.12.0...9.0.2)

Updates `lint-staged` from 15.2.0 to 15.2.10
- [Release notes](https://github.com/lint-staged/lint-staged/releases)
- [Changelog](https://github.com/lint-staged/lint-staged/blob/master/CHANGELOG.md)
- [Commits](lint-staged/lint-staged@v15.2.0...v15.2.10)

Updates `nanoid` from 3.3.4 to 5.0.8
- [Release notes](https://github.com/ai/nanoid/releases)
- [Changelog](https://github.com/ai/nanoid/blob/main/CHANGELOG.md)
- [Commits](ai/nanoid@3.3.4...5.0.8)

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

Updates `prettier-plugin-organize-imports` from 3.2.4 to 4.1.0
- [Release notes](https://github.com/simonhaenisch/prettier-plugin-organize-imports/releases)
- [Changelog](https://github.com/simonhaenisch/prettier-plugin-organize-imports/blob/master/changelog.md)
- [Commits](simonhaenisch/prettier-plugin-organize-imports@v3.2.4...v4.1.0)

Updates `react-i18next` from 12.1.4 to 15.1.1
- [Changelog](https://github.com/i18next/react-i18next/blob/master/CHANGELOG.md)
- [Commits](i18next/react-i18next@v12.1.4...v15.1.1)

Updates `testcontainers` from 10.5.0 to 10.15.0
- [Release notes](https://github.com/testcontainers/testcontainers-node/releases)
- [Commits](testcontainers/testcontainers-node@v10.5.0...v10.15.0)

Updates `typescript` from 4.6.4 to 5.7.2
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml)
- [Commits](microsoft/TypeScript@v4.6.4...v5.7.2)

---
updated-dependencies:
- dependency-name: "@axe-core/playwright"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: "@changesets/cli"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: "@matrix-widget-toolkit/testing"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: development-dependencies
- dependency-name: "@playwright/test"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: "@testing-library/jest-dom"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: "@testing-library/react"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: development-dependencies
- dependency-name: "@types/lodash"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: development-dependencies
- dependency-name: "@types/react-beautiful-dnd"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: eslint
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: development-dependencies
- dependency-name: eslint-plugin-notice
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: development-dependencies
- dependency-name: eslint-plugin-playwright
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: development-dependencies
- dependency-name: eslint-plugin-promise
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: development-dependencies
- dependency-name: husky
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: i18next-parser
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: development-dependencies
- dependency-name: lint-staged
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: nanoid
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: development-dependencies
- dependency-name: prettier
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: development-dependencies
- dependency-name: prettier-plugin-organize-imports
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: development-dependencies
- dependency-name: react-i18next
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: development-dependencies
- dependency-name: testcontainers
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: development-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot requested a review from a team as a code owner November 25, 2024 04:31
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Nov 25, 2024
Copy link

changeset-bot bot commented Nov 25, 2024

⚠️ No Changeset found

Latest commit: 15da61e

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

Copy link
Contributor Author

dependabot bot commented on behalf of github Dec 2, 2024

Superseded by #376.

@dependabot dependabot bot closed this Dec 2, 2024
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/development-dependencies-80e2c03723 branch December 2, 2024 04:18
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