vitejs/vite-plugin-react (@vitejs/plugin-react)
### [`v4.3.0`](https://togithub.com/vitejs/vite-plugin-react/blob/HEAD/packages/plugin-react/CHANGELOG.md#430-2024-05-22)
[Compare Source](https://togithub.com/vitejs/vite-plugin-react/compare/v4.2.1...v4.3.0)
##### Fix support for React compiler
Don't set `retainLines: true` when the React compiler is used. This creates whitespace issues and the compiler is modifying the JSX too much to get correct line numbers after that. If you want to use the React compiler and get back correct line numbers for tools like [vite-plugin-react-click-to-component](https://togithub.com/ArnaudBarre/vite-plugin-react-click-to-component) to work, you should update your config to something like:
```ts
export default defineConfig(({ command }) => {
const babelPlugins = [['babel-plugin-react-compiler', {}]]
if (command === 'serve') {
babelPlugins.push(['@babel/plugin-transform-react-jsx-development', {}])
}
return {
plugins: [react({ babel: { plugins: babelPlugins } })],
}
})
```
##### Support HMR for class components
This is a long overdue and should fix some issues people had with HMR when migrating from CRA.
i18next/i18next (i18next)
### [`v23.11.5`](https://togithub.com/i18next/i18next/blob/HEAD/CHANGELOG.md#23115)
[Compare Source](https://togithub.com/i18next/i18next/compare/v23.11.4...v23.11.5)
- perf: use Array.isArray() [2193](https://togithub.com/i18next/i18next/pull/2193)
- perf: trim keys once [2194](https://togithub.com/i18next/i18next/pull/2194)
i18next/i18next-http-backend (i18next-http-backend)
### [`v2.5.2`](https://togithub.com/i18next/i18next-http-backend/blob/HEAD/CHANGELOG.md#252)
[Compare Source](https://togithub.com/i18next/i18next-http-backend/compare/v2.5.1...v2.5.2)
- dereference timers in node.js so that the process may exit when finished [139](https://togithub.com/i18next/i18next-http-backend/pull/139)
i18next/react-i18next (react-i18next)
### [`v14.1.2`](https://togithub.com/i18next/react-i18next/blob/HEAD/CHANGELOG.md#1412)
[Compare Source](https://togithub.com/i18next/react-i18next/compare/v14.1.1...v14.1.2)
- bring back internal interpolationOverride handling for Trans component (if there are childrens), fixes [1754](https://togithub.com/i18next/react-i18next/issues/1754)
sass/dart-sass (sass)
### [`v1.77.2`](https://togithub.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1772)
[Compare Source](https://togithub.com/sass/dart-sass/compare/1.77.1...1.77.2)
- Don't emit deprecation warnings for functions and mixins beginning with `__`.
- Allow user-defined functions whose names begin with `_` and otherwise look
like vendor-prefixed functions with special CSS syntax.
##### Command-Line Interface
- Properly handle the `--silence-deprecation` flag.
- Handle the `--fatal-deprecation` and `--future-deprecation` flags for
`--interactive` mode.
stylelint/stylelint (stylelint)
### [`v16.6.0`](https://togithub.com/stylelint/stylelint/blob/HEAD/CHANGELOG.md#1660)
[Compare Source](https://togithub.com/stylelint/stylelint/compare/16.5.0...16.6.0)
- Fixed: `function-calc-no-unspaced-operator` false negatives ([#7655](https://togithub.com/stylelint/stylelint/pull/7655) & [#7670](https://togithub.com/stylelint/stylelint/pull/7670) & [#7676](https://togithub.com/stylelint/stylelint/pull/7676)) ([@ybiquitous](https://togithub.com/ybiquitous) & [@romainmenke](https://togithub.com/romainmenke)).
- Fixed: `selector-not-notation` autofix of the `"simple"` option ([#7703](https://togithub.com/stylelint/stylelint/pull/7703)) ([@Mouvedia](https://togithub.com/Mouvedia)).
- Fixed: `selector-max-specificity` end positions ([#7685](https://togithub.com/stylelint/stylelint/pull/7685)) ([@romainmenke](https://togithub.com/romainmenke)).
- Fixed: `no-descending-specificity` end positions ([#7701](https://togithub.com/stylelint/stylelint/pull/7701)) ([@romainmenke](https://togithub.com/romainmenke)).
- Fixed: missing GitHub Sponsor for `npm fund` ([#7707](https://togithub.com/stylelint/stylelint/pull/7707)) ([@ybiquitous](https://togithub.com/ybiquitous)).
Configuration
📅 Schedule: Branch creation - "before 6am on Monday" (UTC), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
[ ] If you want to rebase/retry this PR, check this box
This PR has been generated by Mend Renovate. View repository job log here.
This PR contains the following updates:
20.12.11
->20.12.12
18.3.2
->18.3.3
4.2.1
->4.3.0
23.11.4
->23.11.5
2.5.1
->2.5.2
14.1.1
->14.1.2
1.77.1
->1.77.2
16.5.0
->16.6.0
Release Notes
vitejs/vite-plugin-react (@vitejs/plugin-react)
### [`v4.3.0`](https://togithub.com/vitejs/vite-plugin-react/blob/HEAD/packages/plugin-react/CHANGELOG.md#430-2024-05-22) [Compare Source](https://togithub.com/vitejs/vite-plugin-react/compare/v4.2.1...v4.3.0) ##### Fix support for React compiler Don't set `retainLines: true` when the React compiler is used. This creates whitespace issues and the compiler is modifying the JSX too much to get correct line numbers after that. If you want to use the React compiler and get back correct line numbers for tools like [vite-plugin-react-click-to-component](https://togithub.com/ArnaudBarre/vite-plugin-react-click-to-component) to work, you should update your config to something like: ```ts export default defineConfig(({ command }) => { const babelPlugins = [['babel-plugin-react-compiler', {}]] if (command === 'serve') { babelPlugins.push(['@babel/plugin-transform-react-jsx-development', {}]) } return { plugins: [react({ babel: { plugins: babelPlugins } })], } }) ``` ##### Support HMR for class components This is a long overdue and should fix some issues people had with HMR when migrating from CRA.i18next/i18next (i18next)
### [`v23.11.5`](https://togithub.com/i18next/i18next/blob/HEAD/CHANGELOG.md#23115) [Compare Source](https://togithub.com/i18next/i18next/compare/v23.11.4...v23.11.5) - perf: use Array.isArray() [2193](https://togithub.com/i18next/i18next/pull/2193) - perf: trim keys once [2194](https://togithub.com/i18next/i18next/pull/2194)i18next/i18next-http-backend (i18next-http-backend)
### [`v2.5.2`](https://togithub.com/i18next/i18next-http-backend/blob/HEAD/CHANGELOG.md#252) [Compare Source](https://togithub.com/i18next/i18next-http-backend/compare/v2.5.1...v2.5.2) - dereference timers in node.js so that the process may exit when finished [139](https://togithub.com/i18next/i18next-http-backend/pull/139)i18next/react-i18next (react-i18next)
### [`v14.1.2`](https://togithub.com/i18next/react-i18next/blob/HEAD/CHANGELOG.md#1412) [Compare Source](https://togithub.com/i18next/react-i18next/compare/v14.1.1...v14.1.2) - bring back internal interpolationOverride handling for Trans component (if there are childrens), fixes [1754](https://togithub.com/i18next/react-i18next/issues/1754)sass/dart-sass (sass)
### [`v1.77.2`](https://togithub.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1772) [Compare Source](https://togithub.com/sass/dart-sass/compare/1.77.1...1.77.2) - Don't emit deprecation warnings for functions and mixins beginning with `__`. - Allow user-defined functions whose names begin with `_` and otherwise look like vendor-prefixed functions with special CSS syntax. ##### Command-Line Interface - Properly handle the `--silence-deprecation` flag. - Handle the `--fatal-deprecation` and `--future-deprecation` flags for `--interactive` mode.stylelint/stylelint (stylelint)
### [`v16.6.0`](https://togithub.com/stylelint/stylelint/blob/HEAD/CHANGELOG.md#1660) [Compare Source](https://togithub.com/stylelint/stylelint/compare/16.5.0...16.6.0) - Fixed: `function-calc-no-unspaced-operator` false negatives ([#7655](https://togithub.com/stylelint/stylelint/pull/7655) & [#7670](https://togithub.com/stylelint/stylelint/pull/7670) & [#7676](https://togithub.com/stylelint/stylelint/pull/7676)) ([@ybiquitous](https://togithub.com/ybiquitous) & [@romainmenke](https://togithub.com/romainmenke)). - Fixed: `selector-not-notation` autofix of the `"simple"` option ([#7703](https://togithub.com/stylelint/stylelint/pull/7703)) ([@Mouvedia](https://togithub.com/Mouvedia)). - Fixed: `selector-max-specificity` end positions ([#7685](https://togithub.com/stylelint/stylelint/pull/7685)) ([@romainmenke](https://togithub.com/romainmenke)). - Fixed: `no-descending-specificity` end positions ([#7701](https://togithub.com/stylelint/stylelint/pull/7701)) ([@romainmenke](https://togithub.com/romainmenke)). - Fixed: missing GitHub Sponsor for `npm fund` ([#7707](https://togithub.com/stylelint/stylelint/pull/7707)) ([@ybiquitous](https://togithub.com/ybiquitous)).Configuration
📅 Schedule: Branch creation - "before 6am on Monday" (UTC), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR has been generated by Mend Renovate. View repository job log here.