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

front: bump the patch group in /front with 12 updates #10046

Merged
merged 1 commit into from
Dec 13, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 13, 2024

Bumps the patch group in /front with 12 updates:

Package From To
chroma-js 3.1.1 3.1.2
i18next-browser-languagedetector 8.0.0 8.0.2
react-datasheet-grid 4.11.4 4.11.5
@types/jest 29.5.13 29.5.14
@types/lodash 4.17.10 4.17.13
@types/react-transition-group 4.4.11 4.4.12
@vitejs/plugin-react 4.3.2 4.3.4
@vitejs/plugin-react-swc 3.7.1 3.7.2
dotenv 16.4.5 16.4.7
eslint-plugin-jsx-a11y 6.10.0 6.10.2
eslint-plugin-react 7.37.1 7.37.2
tsx 4.19.1 4.19.2

Updates chroma-js from 3.1.1 to 3.1.2

Release notes

Sourced from chroma-js's releases.

v3.1.2

  • fixed a bug in Lch interpolation of hue-less colors
Changelog

Sourced from chroma-js's changelog.

3.1.2

  • fixed a bug in Lch interpolation of hue-less colors
Commits

Updates i18next-browser-languagedetector from 8.0.0 to 8.0.2

Changelog

Sourced from i18next-browser-languagedetector's changelog.

8.0.2

  • fix for when passed services are null, should address 296

8.0.1

  • some environments, throws when accessing document.cookie
Commits

Updates react-datasheet-grid from 4.11.4 to 4.11.5

Changelog

Sourced from react-datasheet-grid's changelog.

4.11.5

Date: 2024-11-27

Fix

  • Copy from ISO date column
  • Add prop disableSmartDelete
Commits

Updates @types/jest from 29.5.13 to 29.5.14

Commits

Updates @types/lodash from 4.17.10 to 4.17.13

Commits

Updates @types/react-transition-group from 4.4.11 to 4.4.12

Commits

Updates @vitejs/plugin-react from 4.3.2 to 4.3.4

Release notes

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

v4.3.4

Add Vite 6 to peerDependencies range

Vite 6 is highly backward compatible, not much to add!

Force Babel to output spec compliant import attributes #386

The default was an old spec (with type: "json"). We now enforce spec compliant (with { type: "json" })

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.4 (2024-11-26)

Add Vite 6 to peerDependencies range

Vite 6 is highly backward compatible, not much to add!

Force Babel to output spec compliant import attributes #386

The default was an old spec (with type: "json"). We now enforce spec compliant (with { type: "json" })

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
  • 2e368a6 release: plugin-react@4.3.4
  • bde1ad6 feat: add Vite 6 to peerDependencies range (#390)
  • 45a727c fix(deps): update all non-major dependencies (#373)
  • 5d2b6c6 fix: force non-legacy import attributes babel output (#386)
  • b61592a release: plugin-react@4.3.3
  • e8a923f fix: add react-dom in optimizeOps to handle CJS script. (#375)
  • 7a7e339 feat: support new React Compiler target option (#374)
  • See full diff in compare view

Updates @vitejs/plugin-react-swc from 3.7.1 to 3.7.2

Release notes

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

v3.7.2

Add Vite 6 to peerDependencies range #207

Thanks @​RobinTail

Revert throw when refresh runtime is loaded twice #237

Revert the throw when refresh runtime is loaded twice to enable usage in micro frontend apps. This was added to help fix setup usage, and this is not worth an annoying warning for others or a config parameter.

This revert was done in the Babel plugin last year and I didn't port it back.

Changelog

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

3.7.2

Add Vite 6 to peerDependencies range #207

Thanks @​RobinTail

Revert throw when refresh runtime is loaded twice #237

Revert the throw when refresh runtime is loaded twice to enable usage in micro frontend apps. This was added to help fix setup usage, and this is not worth an annoying warning for others or a config parameter.

This revert was done in the Babel plugin last year and I didn't port it back.

Commits

Updates dotenv from 16.4.5 to 16.4.7

Changelog

Sourced from dotenv's changelog.

16.4.7 (2024-12-03)

Changed

  • Ignore .tap folder when publishing. (oops, sorry about that everyone. - @​motdotla) #848

16.4.6 (2024-12-02)

Changed

  • Clean up stale dev dependencies #847
  • Various README updates clarifying usage and alternative solutions using dotenvx
Commits

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 tsx from 4.19.1 to 4.19.2

Release notes

Sourced from tsx's releases.

v4.19.2

4.19.2 (2024-10-26)

Bug Fixes

  • generate sourcesContent when Node.js debugger is enabled (#670) (7c47074)

This release is also available on:

Commits
  • 7c47074 fix: generate sourcesContent when Node.js debugger is enabled (#670)
  • 315d5f4 docs(watch): document --include flag
  • 375e39a test: refactor enforce-timeout
  • 524cb77 docs(cjs): add compilation caveats
  • 7f8a051 chore(deps): update dependency node to v20.18.0 (#660)
  • 97e8de0 chore: upgrade pnpm
  • 95d2b0f chore: remove commit hooks
  • 0161078 docs: add prisma as a premium sponsor
  • 09f9532 chore(docs): fix typo (#655)
  • See full diff 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 or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

@dependabot dependabot bot requested a review from a team as a code owner December 13, 2024 08:36
@dependabot dependabot bot added area:front Work on Standard OSRD Interface modules dependencies Pull requests that update a dependency file labels Dec 13, 2024
@emersion emersion enabled auto-merge December 13, 2024 09:28
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/front/patch-1673107110 branch from 1a9fb3b to 52c911f Compare December 13, 2024 09:33
@emersion emersion added this pull request to the merge queue Dec 13, 2024
@github-merge-queue github-merge-queue bot removed this pull request from the merge queue due to failed status checks Dec 13, 2024
@SharglutDev
Copy link
Contributor

@dependabot rebase

@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/front/patch-1673107110 branch from 52c911f to be93358 Compare December 13, 2024 16:44
@emersion emersion enabled auto-merge December 13, 2024 16:45
@emersion emersion added this pull request to the merge queue Dec 13, 2024
@emersion
Copy link
Member

@dependabot rebase

@emersion emersion removed this pull request from the merge queue due to a manual request Dec 13, 2024
Bumps the patch group in /front with 12 updates:

| Package | From | To |
| --- | --- | --- |
| [chroma-js](/~https://github.com/gka/chroma.js) | `3.1.1` | `3.1.2` |
| [i18next-browser-languagedetector](/~https://github.com/i18next/i18next-browser-languageDetector) | `8.0.0` | `8.0.2` |
| [react-datasheet-grid](/~https://github.com/nick-keller/react-datasheet-grid) | `4.11.4` | `4.11.5` |
| [@types/jest](/~https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jest) | `29.5.13` | `29.5.14` |
| [@types/lodash](/~https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/lodash) | `4.17.10` | `4.17.13` |
| [@types/react-transition-group](/~https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-transition-group) | `4.4.11` | `4.4.12` |
| [@vitejs/plugin-react](/~https://github.com/vitejs/vite-plugin-react/tree/HEAD/packages/plugin-react) | `4.3.2` | `4.3.4` |
| [@vitejs/plugin-react-swc](/~https://github.com/vitejs/vite-plugin-react-swc) | `3.7.1` | `3.7.2` |
| [dotenv](/~https://github.com/motdotla/dotenv) | `16.4.5` | `16.4.7` |
| [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` |
| [tsx](/~https://github.com/privatenumber/tsx) | `4.19.1` | `4.19.2` |


Updates `chroma-js` from 3.1.1 to 3.1.2
- [Release notes](/~https://github.com/gka/chroma.js/releases)
- [Changelog](/~https://github.com/gka/chroma.js/blob/main/CHANGELOG.md)
- [Commits](gka/chroma.js@v3.1.1...v3.1.2)

Updates `i18next-browser-languagedetector` from 8.0.0 to 8.0.2
- [Changelog](/~https://github.com/i18next/i18next-browser-languageDetector/blob/master/CHANGELOG.md)
- [Commits](i18next/i18next-browser-languageDetector@v8.0.0...v8.0.2)

Updates `react-datasheet-grid` from 4.11.4 to 4.11.5
- [Changelog](/~https://github.com/nick-keller/react-datasheet-grid/blob/master/CHANGELOG.md)
- [Commits](/~https://github.com/nick-keller/react-datasheet-grid/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/lodash` from 4.17.10 to 4.17.13
- [Release notes](/~https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](/~https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/lodash)

Updates `@types/react-transition-group` from 4.4.11 to 4.4.12
- [Release notes](/~https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](/~https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-transition-group)

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

Updates `@vitejs/plugin-react-swc` from 3.7.1 to 3.7.2
- [Release notes](/~https://github.com/vitejs/vite-plugin-react-swc/releases)
- [Changelog](/~https://github.com/vitejs/vite-plugin-react-swc/blob/main/CHANGELOG.md)
- [Commits](vitejs/vite-plugin-react-swc@v3.7.1...v3.7.2)

Updates `dotenv` from 16.4.5 to 16.4.7
- [Changelog](/~https://github.com/motdotla/dotenv/blob/master/CHANGELOG.md)
- [Commits](motdotla/dotenv@v16.4.5...v16.4.7)

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 `tsx` from 4.19.1 to 4.19.2
- [Release notes](/~https://github.com/privatenumber/tsx/releases)
- [Changelog](/~https://github.com/privatenumber/tsx/blob/master/release.config.cjs)
- [Commits](privatenumber/tsx@v4.19.1...v4.19.2)

---
updated-dependencies:
- dependency-name: chroma-js
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: i18next-browser-languagedetector
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: react-datasheet-grid
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: "@types/jest"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: "@types/lodash"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: "@types/react-transition-group"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: "@vitejs/plugin-react"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: "@vitejs/plugin-react-swc"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: dotenv
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: eslint-plugin-jsx-a11y
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: eslint-plugin-react
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: tsx
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/front/patch-1673107110 branch from be93358 to 534f69b Compare December 13, 2024 17:36
@emersion emersion enabled auto-merge December 13, 2024 17:44
@emersion emersion added this pull request to the merge queue Dec 13, 2024
Merged via the queue into dev with commit 7036966 Dec 13, 2024
27 checks passed
@emersion emersion deleted the dependabot/npm_and_yarn/front/patch-1673107110 branch December 13, 2024 18:08
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area:front Work on Standard OSRD Interface modules dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants