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

[Tech] Bump the non-major-dev-dependencies group across 1 directory with 17 updates #1854

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 Nov 14, 2024

Bumps the non-major-dev-dependencies group with 17 updates in the /frontend directory:

Package From To
@import-meta-env/cli 0.7.0 0.7.1
@import-meta-env/prepare 0.2.0 0.2.1
@swc/core 1.7.26 1.9.2
@swc/jest 0.2.36 0.2.37
@types/jest 29.5.13 29.5.14
@types/react 18.3.10 18.3.12
@types/react-dom 18.3.0 18.3.1
@vitejs/plugin-react 4.3.2 4.3.3
cypress 13.15.0 13.15.2
eslint-plugin-import 2.30.0 2.31.0
eslint-plugin-jsx-a11y 6.10.0 6.10.2
eslint-plugin-react 7.37.1 7.37.2
typescript 5.6.2 5.6.3
vite 5.4.8 5.4.11
vite-plugin-svgr 4.2.0 4.3.0
vite-tsconfig-paths 5.0.1 5.1.2
webpack 5.95.0 5.96.1

Updates @import-meta-env/cli from 0.7.0 to 0.7.1

Release notes

Sourced from @​import-meta-env/cli's releases.

cli0.7.1

Changelog: https://github.com/runtime-env/import-meta-env/blob/cli0.7.1/packages/cli/CHANGELOG.md

Changelog

Sourced from @​import-meta-env/cli's changelog.

0.7.1 (2024-11-11)

Bug Fixes

  • deps: update dependency picocolors to v1.1.0 (#1432) (396fa37)
  • deps: update dependency picocolors to v1.1.1 (#1499) (c697ca8)
Commits

Updates @import-meta-env/prepare from 0.2.0 to 0.2.1

Release notes

Sourced from @​import-meta-env/prepare's releases.

prepare0.2.1

Changelog: https://github.com/runtime-env/import-meta-env/blob/prepare0.2.1/packages/prepare/CHANGELOG.md

Changelog

Sourced from @​import-meta-env/prepare's changelog.

0.2.1 (2024-11-11)

Bug Fixes

  • deps: update dependency picocolors to v1.1.0 (#1432) (396fa37)
  • deps: update dependency picocolors to v1.1.1 (#1499) (c697ca8)
Commits

Updates @swc/core from 1.7.26 to 1.9.2

Changelog

Sourced from @​swc/core's changelog.

[1.9.2] - 2024-11-11

Bug Fixes

Features

  • (es/codegen) Implement proper inline_script support (#9729) (e732a36)

[1.9.1] - 2024-11-06

Bug Fixes

[1.9.0] - 2024-11-06

Bug Fixes

Features

  • (typescript) Port deno isolatedDeclarations updates (#9712) (6194044)

Miscellaneous Tasks

  • (deps) Update rust crate is-macro to v0.3.7 (#9713) (d48e6e8)

[1.8.0] - 2024-11-04

Bug Fixes

... (truncated)

Commits
  • 669d275 chore: Publish 1.9.2 with swc_core v5.0.3
  • 47c6d38 chore: Update changelog
  • f2be61f chore: Publish 1.9.2-nightly-20241111.1 with swc_core v5.0.3
  • 9aae07a chore: Publish crates with swc_core v5.0.3
  • e732a36 feat(es/codegen): Implement proper inline_script support (#9729)
  • 9dfa3f5 chore: Publish @swc/[email protected]
  • 1606d08 chore: Publish crates with swc_core v5.0.2
  • aff9de5 fix(es): Fix typo in feature name (#9721)
  • 7c396a1 chore: Update changelog
  • 3d87fe0 chore: Publish 1.9.1 with swc_core v5.0.1
  • Additional commits viewable in compare view

Updates @swc/jest from 0.2.36 to 0.2.37

Commits

Updates @types/jest from 29.5.13 to 29.5.14

Commits

Updates @types/react from 18.3.10 to 18.3.12

Commits

Updates @types/react-dom from 18.3.0 to 18.3.1

Commits

Updates @vitejs/plugin-react from 4.3.2 to 4.3.3

Release notes

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

v4.3.3

React Compiler runtimeModule option removed

React Compiler was updated to accept a target option and runtimeModule was removed. vite-plugin-react will still detect runtimeModule for backwards compatibility.

When using a custom runtimeModule or target !== '19', the plugin will not try to pre-optimize react/compiler-runtime dependency.

The react-compiler-runtime is now available on npm can be used instead of the local shim for people using the compiler with React < 19.

Here is the configuration to use the compiler with React 18 and correct source maps in development:

npm install babel-plugin-react-compiler react-compiler-runtime @babel/plugin-transform-react-jsx-development
export default defineConfig(({ command }) => {
  const babelPlugins = [['babel-plugin-react-compiler', { target: '18' }]]
  if (command === 'serve') {
    babelPlugins.push(['@babel/plugin-transform-react-jsx-development', {}])
  }
return {
plugins: [react({ babel: { plugins: babelPlugins } })],
}
})

Changelog

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

4.3.3 (2024-10-19)

React Compiler runtimeModule option removed

React Compiler was updated to accept a target option and runtimeModule was removed. vite-plugin-react will still detect runtimeModule for backwards compatibility.

When using a custom runtimeModule or target !== '19', the plugin will not try to pre-optimize react/compiler-runtime dependency.

The react-compiler-runtime is now available on npm can be used instead of the local shim for people using the compiler with React < 19.

Here is the configuration to use the compiler with React 18 and correct source maps in development:

npm install babel-plugin-react-compiler react-compiler-runtime @babel/plugin-transform-react-jsx-development
export default defineConfig(({ command }) => {
  const babelPlugins = [['babel-plugin-react-compiler', { target: '18' }]]
  if (command === 'serve') {
    babelPlugins.push(['@babel/plugin-transform-react-jsx-development', {}])
  }
return {
plugins: [react({ babel: { plugins: babelPlugins } })],
}
})

Commits

Updates cypress from 13.15.0 to 13.15.2

Release notes

Sourced from cypress's releases.

v13.15.2

Changelog: https://docs.cypress.io/guides/references/changelog#13-15-2

v13.15.1

Changelog: https://docs.cypress.io/guides/references/changelog#13-15-1

Commits
  • 5caacc2 chore: update circleci cache version (#30548)
  • c2596e6 chore: release 13.15.2 (#30547)
  • 6e8142d chore(deps): update dependency stop-only to v3.4.1 (#30538)
  • 438f953 chore: Update v8 snapshot cache (#30545)
  • 3c6a092 chore: update mobx from 5.15.4 to 6.13.5 and mobx-react from 6.1.8 ...
  • a8a3cb9 fix: ensure we have marked things as stable prior to after/afterEach hooks ru...
  • b0b28d3 chore: Update CI workflows path to be current branch workflows file (#30534)
  • 4ff3b2b misc: correct CLI help typo for cypress open --global (#30532)
  • c33ff6a chore: remove react dependency from the server as it looks unused [run ci] (#...
  • b8a5280 chore: replace is-ci with underlying ci-info package (#30465)
  • Additional commits viewable in compare view

Updates eslint-plugin-import from 2.30.0 to 2.31.0

Release notes

Sourced from eslint-plugin-import's releases.

v2.31.0

Added

Fixed

Changed

#3073: import-js/eslint-plugin-import#3073 #3072: import-js/eslint-plugin-import#3072 #3071: import-js/eslint-plugin-import#3071 #3070: import-js/eslint-plugin-import#3070 #3068: import-js/eslint-plugin-import#3068 #3066: import-js/eslint-plugin-import#3066 #3065: import-js/eslint-plugin-import#3065 #3062: import-js/eslint-plugin-import#3062 #3052: import-js/eslint-plugin-import#3052 #3043: import-js/eslint-plugin-import#3043 #3032: import-js/eslint-plugin-import#3032 #2996: import-js/eslint-plugin-import#2996 #2817: import-js/eslint-plugin-import#2817 [@​akwodkiewicz]: https://github.com/akwodkiewicz [@​joshuaobrien]: https://github.com/joshuaobrien [@​liuxingbaoyu]: https://github.com/liuxingbaoyu [@​manuth]: https://github.com/manuth [@​michaelfaith]: https://github.com/michaelfaith [@​phryneas]: https://github.com/phryneas

... (truncated)

Changelog

Sourced from eslint-plugin-import's changelog.

[2.31.0] - 2024-10-03

Added

Fixed

  • ExportMap / flat config: include languageOptions in context (#3052, thanks [@​michaelfaith])
  • [no-named-as-default]: Allow using an identifier if the export is both a named and a default export (#3032, thanks [@​akwodkiewicz])
  • [export]: False positive for exported overloaded functions in TS (#3065, thanks [@​liuxingbaoyu])
  • exportMap: export map cache is tainted by unreliable parse results (#3062, thanks [@​michaelfaith])
  • exportMap: improve cacheKey when using flat config (#3072, thanks [@​michaelfaith])
  • adjust "is source type module" checks for flat config (#2996, thanks [@​G-Rath])

Changed

Commits
  • 91f809b v2.31.0
  • 3f1ac24 [utils] [refactor] parse: avoid using a regex here
  • d225176 [New] extensions: add the checkTypeImports option
  • 5a51b9a [Tests] rule-tester: try this babel class workaround
  • d66cde0 [New] support eslint v9
  • d27a639 [Fix] adjust "is source type module" checks for flat config
  • 1fa8a07 [Refactor] create sourceType helper
  • 0bc1355 [Tests] no-default-export, no-named-export: add test cases with non-modu...
  • 55fa203 [Tests] no-default-export, no-named-export: add test case
  • 6be20df [Docs] no-restricted-paths: fix grammar
  • Additional commits viewable in compare view

Updates eslint-plugin-jsx-a11y from 6.10.0 to 6.10.2

Changelog

Sourced from eslint-plugin-jsx-a11y's changelog.

v6.10.2 - 2024-10-25

Fixed

Commits

  • [meta] fix changelog URLs 0d01a1a
  • [Refactor] remove no-longer-needed es-iterator-helpers aa075bd
  • [Refactor] avoid spreading things that are already arrays d15d3ab
  • [Dev Deps] update @babel/cli, @babel/core, @babel/eslint-parser, @babel/plugin-transform-flow-strip-types, @babel/register 5dad7c4
  • [Tests] aria-role: Add valid test for &lt;svg role="img" /&gt; daba189
  • [Docs] label-has-associated-control: add line breaks for readability 0bc6378
  • [Tests] label-has-associated-control: add additional test cases 30d2318
  • [Tests] Add tests to reinforce required attributes for role="heading" d92446c

v6.10.1 - 2024-10-20

Commits

  • [Fix] handle interactive/noninteractive changes from aria-query 4925ba8
  • [Docs] Use consistent spelling of 'screen reader' cb6788c
  • [Dev Deps] update @babel/cli, @babel/core, @babel/eslint-parser, @babel/plugin-transform-flow-strip-types, @babel/register, auto-changelog, eslint-plugin-import, tape 518a77e
  • [Deps] update es-iterator-helpers, string.prototype.includes eed03a3
  • [meta] package.json - Update jscodeshift & remove babel-jest 2ee940c
  • [Docs] Remove accidental whitespace in CONTRIBUTING.md a262131
  • [Deps] unpin aria-query e517937
Commits
  • 7f3d698 v6.10.2
  • 0d01a1a [meta] fix changelog URLs
  • 5dad7c4 [Dev Deps] update @babel/cli, @babel/core, @babel/eslint-parser, `@babe...
  • d15d3ab [Refactor] avoid spreading things that are already arrays
  • fa9845d [patch] no-redundandant-roles: allow \<img src="*.svg" role="img" />
  • daba189 [Tests] aria-role: Add valid test for \<svg role="img" />
  • 0bc6378 [Docs] label-has-associated-control: add line breaks for readability
  • 30d2318 [Tests] label-has-associated-control: add additional test cases
  • d92446c [Tests] Add tests to reinforce required attributes for role="heading"
  • aa075bd [Refactor] remove no-longer-needed es-iterator-helpers
  • Additional commits viewable in compare view

Updates eslint-plugin-react from 7.37.1 to 7.37.2

Release notes

Sourced from eslint-plugin-react's releases.

v7.37.2

Fixed

  • [destructuring-assignment]: fix false negative when using typeof props.a (#3835[] @​golopot)

Changed

  • [Refactor] [destructuring-assignment]: use getParentStatelessComponent (#3835[] @​golopot)

#3835: jsx-eslint/eslint-plugin-react#3835 [destructuring-assignment]: docs/rules/destructuring-assignment.md

Changelog

Sourced from eslint-plugin-react's changelog.

7.37.2 - 2024.10.22

Fixed

  • [destructuring-assignment]: fix false negative when using typeof props.a (#3835[] @​golopot)

Changed

  • [Refactor] [destructuring-assignment]: use getParentStatelessComponent (#3835[] @​golopot)

#3835: jsx-eslint/eslint-plugin-react#3835

Commits
  • 256cf74 Update CHANGELOG and bump version
  • 33db656 [Deps] update es-iterator-helpers
  • 5696f99 [Dev Deps] update @babel/core, @babel/eslint-parser, `@babel/plugin-synta...
  • 5c23573 [Dev Deps] update @babel/core, @​babel/eslint-parser, @​babel/plugin-syntax...
  • c47fa56 [types] [Fix] ensure the index types are generated
  • 63aceff [Fix] destructuring-assignment: fix false negative when using typeof props.a
  • 96d46d5 [Refactor] destructuring-assignment: use getParentStatelessComponent
  • See full diff in compare view

Updates typescript from 5.6.2 to 5.6.3

Release notes

Sourced from typescript's releases.

TypeScript 5.6.3

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

Commits
  • d48a5cf Bump version to 5.6.3 and LKG
  • fefa70a 🤖 Pick PR #60083 (Don't issue implicit any when obtai...) into release-5.6 (#...
  • ff71692 [release-5.6] Remove tsbuildInfo specification error now that we need it for ...
  • 1f44dcf 🤖 Pick PR #60157 (fix automatic type acquisition) into release-5.6 (#60169)
  • See full diff in compare view

Updates vite from 5.4.8 to 5.4.11

Release notes

Sourced from vite's releases.

v5.4.11

Please refer to CHANGELOG.md for details.

v5.4.10

Please refer to CHANGELOG.md for details.

v5.4.9

Please refer to CHANGELOG.md for details.

Changelog

Sourced from vite's changelog.

5.4.11 (2024-11-11)

5.4.10 (2024-10-23)

  • fix: backport #18367,augment hash for CSS files to prevent chromium erroring by loading previous fil (7d1a3bc), closes #18367 #18412

5.4.9 (2024-10-14)

Commits
  • c54c860 release: v5.4.11
  • 5f52bc8 release: v5.4.10
  • 7d1a3bc fix: backport #18367,augment hash for CSS files to prevent chromium erroring ...
  • 898d61f release: v5.4.9
  • 508d9ab fix: bump launch-editor-middleware to v2.9.1 (#18348)
  • dc5434c fix(deps): bump tsconfck (#18322)
  • 851b258 fix(hmr): don't try to rewrite imports for direct CSS soft invalidation (#18252)
  • 96084d6 fix(data-uri): only match ids starting with data: (#18241)
  • eae00b5 fix(css): fix lightningcss dep url resolution with custom root (#18125)
  • c23558a chore: update all url references of vitejs.dev to vite.dev (#18276)
  • Additional commits viewable in compare view

Updates vite-plugin-svgr from 4.2.0 to 4.3.0

Commits

Updates vite-tsconfig-paths from 5.0.1 to 5.1.2

Release notes

Sourced from vite-tsconfig-paths's releases.

v5.1.2

  • fix Windows regression introduced in v5.1.1 (#162)

v5.1.1

  • support ${configDir} syntax in include/exclude (#156)

v5.1.0

  • Add skip option for adding additional directories to be skipped when searching for tsconfig.json files (#146)
  • Fix path resolution on Windows when other Vite plugins neglect to normalize the importer path before calling this.resolve in their resolveId hooks (#157)
  • Allow both tsconfig.json and jsconfig.json in the same directory (4124b091607503d44b876bb4edd726667b386660)
Commits

Updates webpack from 5.95.0 to 5.96.1

Release notes

Sourced from webpack's releases.

v5.96.1

Bug Fixes

  • [Types] Add @types/eslint-scope to dependencieS
  • [Types] Fixed regression in validate

v5.96.0

Bug Fixes

  • Fixed Module Federation should track all referenced chunks
  • Handle Data URI without base64 word
  • HotUpdateChunk have correct runtime when modified with new runtime
  • Order of chunks ids in generated chunk code
  • No extra Javascript chunks when using asset module as an entrypoint
  • Use optimistically logic for output.environment.dynamicImport to determine chunk format when no browserslist or target
  • Collision with global variables for optimization.avoidEntryIife
  • Avoid through variables in inlined module
  • Allow chunk template strings in output.devtoolNamespace
  • No extra runtime for get javascript/css chunk filename
  • No extra runtime for prefetch and preload in JS runtime when it was unsed in CSS
  • Avoid cache invalidation using ProgressPlugin
  • Increase parallelism when using importModule on the execution stage
  • Correctly parsing string in export and import
  • Typescript types
  • [CSS] css/auto considers a module depending on its filename as css (pure CSS) or css/local, before it was css/global and css/local
  • [CSS] Always interpolate classes even if they are not involved in export
  • [CSS] No extra runtime in Javascript runtime chunks for asset modules used in CSS
  • [CSS] No extra runtime in Javascript runtime chunks for external asset modules used in CSS
  • [CSS] No extra runtime for the node target
  • [CSS] Fixed url()s and @import parsing
  • [CSS] Fixed - emit a warning on broken :local and :global

New Features

  • Export CSS and ESM runtime modules
  • Single Runtime Chunk and Federation eager module hoisting
  • [CSS] Support /* webpackIgnore: true */ for CSS files
  • [CSS] Support src() support
  • [CSS] CSS nesting in CSS modules
Commits
  • d4ced73 chore(release): 5.96.1
  • 7d6dbea fix: types regression in validate
  • 5c556e3 fix: types regression in validate
  • 2420eae fix: add @types/eslint-scope to dependencies due types regression
  • ec45d2d fix: add @types/eslint-scope to dependencies
  • aff0c3e chore(release): 5.96.0
  • 6f11ec1 refactor: module source types code
  • b07142f refactor: module source types code
  • 7d98b3c fix: Module Federation should track all referenced chunks
  • 6d09769 chore: linting
  • Additional commits viewable in compare view

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...

Description has been truncated

…ith 17 updates

Bumps the non-major-dev-dependencies group with 17 updates in the /frontend directory:

| Package | From | To |
| --- | --- | --- |
| [@import-meta-env/cli](https://github.com/runtime-env/import-meta-env/tree/HEAD/packages/cli) | `0.7.0` | `0.7.1` |
| [@import-meta-env/prepare](https://github.com/runtime-env/import-meta-env/tree/HEAD/packages/prepare) | `0.2.0` | `0.2.1` |
| [@swc/core](https://github.com/swc-project/swc) | `1.7.26` | `1.9.2` |
| [@swc/jest](https://github.com/swc-project/pkgs) | `0.2.36` | `0.2.37` |
| [@types/jest](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jest) | `29.5.13` | `29.5.14` |
| [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `18.3.10` | `18.3.12` |
| [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `18.3.0` | `18.3.1` |
| [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/tree/HEAD/packages/plugin-react) | `4.3.2` | `4.3.3` |
| [cypress](https://github.com/cypress-io/cypress) | `13.15.0` | `13.15.2` |
| [eslint-plugin-import](https://github.com/import-js/eslint-plugin-import) | `2.30.0` | `2.31.0` |
| [eslint-plugin-jsx-a11y](https://github.com/jsx-eslint/eslint-plugin-jsx-a11y) | `6.10.0` | `6.10.2` |
| [eslint-plugin-react](https://github.com/jsx-eslint/eslint-plugin-react) | `7.37.1` | `7.37.2` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.6.2` | `5.6.3` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `5.4.8` | `5.4.11` |
| [vite-plugin-svgr](https://github.com/pd4d10/vite-plugin-svgr) | `4.2.0` | `4.3.0` |
| [vite-tsconfig-paths](https://github.com/aleclarson/vite-tsconfig-paths) | `5.0.1` | `5.1.2` |
| [webpack](https://github.com/webpack/webpack) | `5.95.0` | `5.96.1` |



Updates `@import-meta-env/cli` from 0.7.0 to 0.7.1
- [Release notes](https://github.com/runtime-env/import-meta-env/releases)
- [Changelog](https://github.com/runtime-env/import-meta-env/blob/main/packages/cli/CHANGELOG.md)
- [Commits](https://github.com/runtime-env/import-meta-env/commits/cli0.7.1/packages/cli)

Updates `@import-meta-env/prepare` from 0.2.0 to 0.2.1
- [Release notes](https://github.com/runtime-env/import-meta-env/releases)
- [Changelog](https://github.com/runtime-env/import-meta-env/blob/main/packages/prepare/CHANGELOG.md)
- [Commits](https://github.com/runtime-env/import-meta-env/commits/cli0.2.1/packages/prepare)

Updates `@swc/core` from 1.7.26 to 1.9.2
- [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.7.26...v1.9.2)

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

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

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

Updates `@types/react-dom` from 18.3.0 to 18.3.1
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom)

Updates `@vitejs/plugin-react` from 4.3.2 to 4.3.3
- [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/v4.3.3/packages/plugin-react)

Updates `cypress` from 13.15.0 to 13.15.2
- [Release notes](https://github.com/cypress-io/cypress/releases)
- [Changelog](https://github.com/cypress-io/cypress/blob/develop/CHANGELOG.md)
- [Commits](cypress-io/cypress@v13.15.0...v13.15.2)

Updates `eslint-plugin-import` from 2.30.0 to 2.31.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.30.0...v2.31.0)

Updates `eslint-plugin-jsx-a11y` from 6.10.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.10.0...v6.10.2)

Updates `eslint-plugin-react` from 7.37.1 to 7.37.2
- [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.37.1...v7.37.2)

Updates `typescript` from 5.6.2 to 5.6.3
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml)
- [Commits](microsoft/TypeScript@v5.6.2...v5.6.3)

Updates `vite` from 5.4.8 to 5.4.11
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/v5.4.11/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v5.4.11/packages/vite)

Updates `vite-plugin-svgr` from 4.2.0 to 4.3.0
- [Release notes](https://github.com/pd4d10/vite-plugin-svgr/releases)
- [Commits](pd4d10/vite-plugin-svgr@v4.2.0...v4.3.0)

Updates `vite-tsconfig-paths` from 5.0.1 to 5.1.2
- [Release notes](https://github.com/aleclarson/vite-tsconfig-paths/releases)
- [Commits](aleclarson/vite-tsconfig-paths@v5.0.1...v5.1.2)

Updates `webpack` from 5.95.0 to 5.96.1
- [Release notes](https://github.com/webpack/webpack/releases)
- [Commits](webpack/webpack@v5.95.0...v5.96.1)

---
updated-dependencies:
- dependency-name: "@import-meta-env/cli"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: non-major-dev-dependencies
- dependency-name: "@import-meta-env/prepare"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: non-major-dev-dependencies
- dependency-name: "@swc/core"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: non-major-dev-dependencies
- dependency-name: "@swc/jest"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: non-major-dev-dependencies
- dependency-name: "@types/jest"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: non-major-dev-dependencies
- dependency-name: "@types/react"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: non-major-dev-dependencies
- dependency-name: "@types/react-dom"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: non-major-dev-dependencies
- dependency-name: "@vitejs/plugin-react"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: non-major-dev-dependencies
- dependency-name: cypress
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: non-major-dev-dependencies
- dependency-name: eslint-plugin-import
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: non-major-dev-dependencies
- dependency-name: eslint-plugin-jsx-a11y
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: non-major-dev-dependencies
- dependency-name: eslint-plugin-react
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: non-major-dev-dependencies
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: non-major-dev-dependencies
- dependency-name: vite
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: non-major-dev-dependencies
- dependency-name: vite-plugin-svgr
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: non-major-dev-dependencies
- dependency-name: vite-tsconfig-paths
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: non-major-dev-dependencies
- dependency-name: webpack
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: non-major-dev-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
Copy link

sonarcloud bot commented Nov 14, 2024

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants