-
-
Notifications
You must be signed in to change notification settings - Fork 0
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
chore(deps): update all non-major dependencies #222
base: main
Are you sure you want to change the base?
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
|
Important Review skippedBot user detected. To trigger a single review, invoke the You can disable this status message by setting the 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
Sweep: PR ReviewAuthors of pull request: @renovate[bot] Sweep is currently reviewing your pr... |
New and removed dependencies detected. Learn more about Socket for GitHub ↗︎
🚮 Removed packages: npm/@types/react-dom@18.3.0, npm/@types/react@18.3.2, npm/@vitejs/plugin-react@4.2.1, npm/eslint-plugin-react@7.34.1, npm/eslint@8.57.0, npm/prettier@3.2.5, npm/typescript@5.4.5, npm/vite@5.2.11 |
7aed899
to
bef1e1e
Compare
bef1e1e
to
3d10cbf
Compare
3d10cbf
to
87a4162
Compare
87a4162
to
8e8b94d
Compare
8e8b94d
to
f66b546
Compare
f66b546
to
b642d8c
Compare
👍 Dependency issues cleared. Learn more about Socket for GitHub ↗︎ This PR previously contained dependency changes with security issues that have been resolved, removed, or ignored. |
b642d8c
to
ad1a1f7
Compare
ad1a1f7
to
8be5f91
Compare
8be5f91
to
0088f23
Compare
0088f23
to
4d383b1
Compare
4d383b1
to
6b14586
Compare
9306a9a
to
c9e2d6c
Compare
c9e2d6c
to
00f22ef
Compare
00f22ef
to
71222c2
Compare
71222c2
to
e378ab8
Compare
e378ab8
to
d0133fb
Compare
d0133fb
to
9f939a9
Compare
9f939a9
to
30ef409
Compare
30ef409
to
577e029
Compare
Deployment failed with the following error:
|
577e029
to
d7a4386
Compare
d7a4386
to
a5e0875
Compare
a5e0875
to
9f125b9
Compare
9f125b9
to
e447eae
Compare
e447eae
to
d253280
Compare
d253280
to
8a1dbf8
Compare
This PR contains the following updates:
18.3.2
->18.3.18
18.3.0
->18.3.5
4.2.1
->4.3.4
8.57.0
->8.57.1
7.34.1
->7.37.2
3.2.5
->3.4.2
5.4.5
->5.7.2
5.2.11
->5.4.11
Release Notes
vitejs/vite-plugin-react (@vitejs/plugin-react)
v4.3.4
Compare Source
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
Compare Source
React Compiler runtimeModule option removed
React Compiler was updated to accept a
target
option andruntimeModule
was removed. vite-plugin-react will still detectruntimeModule
for backwards compatibility.When using a custom
runtimeModule
ortarget !== '19'
, the plugin will not try to pre-optimizereact/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:
v4.3.2
Compare Source
Ignore directive sourcemap error #369
v4.3.1
Compare Source
Fix support for React Compiler with React 18
The previous version made this assumption that the compiler was only usable with React 19, but it's possible to use it with React 18 and a custom
runtimeModule
: https://gist.github.com/poteto/37c076bf112a07ba39d0e5f0645fec43When using a custom
runtimeModule
, the plugin will not try to pre-optimizereact/compiler-runtime
dependency.Reminder: Vite expect code outside of
node_modules
to be ESM, so you will need to update the gist withimport React from 'react'
.v4.3.0
Compare Source
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 to work, you should update your config to something like:Support HMR for class components
This is a long overdue and should fix some issues people had with HMR when migrating from CRA.
eslint/eslint (eslint)
v8.57.1
Compare Source
jsx-eslint/eslint-plugin-react (eslint-plugin-react)
v7.37.2
Compare Source
Fixed
destructuring-assignment
]: fix false negative when usingtypeof props.a
(#3835 @golopot)Changed
destructuring-assignment
]: usegetParentStatelessComponent
(#3835 @golopot)v7.37.1
Compare Source
Fixed
d.ts
files (#3836 @ljharb)Changed
v7.37.0
Compare Source
Added
no-unescaped-entities
]: add suggestions (#3831 @StyleShit)forbid-component-props
]: addallowedForPatterns
/disallowedForPatterns
options (#3805 @Efimenko)no-unstable-nested-components
]: addpropNamePattern
to support custom render prop naming conventions (#3826 @danreeves)Changed
v7.36.1
Compare Source
Fixed
no-is-mounted
]: fix logic in method name check (#3821 @Mathias-S)jsx-no-literals
]: Avoid crashing on valueless boolean props (#3823 @reosarevok)v7.36.0
Compare Source
Added
no-string-refs
]: allow this.refs in > 18.3.0 (#3807 @henryqdineen)jsx-no-literals
] AddelementOverrides
option and the ability to ignore this rule on specific elements (#3812 @Pearce-Ropion)forward-ref-uses-ref
]: add rule for checking ref parameter is added ([#3667][] @NotWoods)Fixed
function-component-definition
], [boolean-prop-naming
], [jsx-first-prop-new-line
], [jsx-props-no-multi-spaces
],propTypes
: use type args (#3629 @HenryBrown0)jsx-props-no-spreading
]: addexplicitSpread
option to schema (#3799 @ljharb)Changed
no-danger
]: update broken link (#3817 @lucasrmendonca)button-has-type
: add test case with spread (#3731 @y-hsgw)v7.35.2
Compare Source
Fixed
jsx-curly-brace-presence
]: avoid autofixing attributes with double quotes to a double quoted attribute ([#3814][] @ljharb)undefined
[#1000]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1000%0A[#1002]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1002%0A[#1005]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1005%0A[#100]: https://github.com/jsx-eslint/eslint-plugin-react/issues/100%0A[#1010]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1010%0A[#1013]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1013%0A[#1022]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1022%0A[#1029]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1029%0A[#102]: https://github.com/jsx-eslint/eslint-plugin-react/issues/102%0A[#1034]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1034%0A[#1038]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1038%0A[#1041]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1041%0A[#1043]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1043%0A[#1046]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1046%0A[#1047]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1047%0A[#1050]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1050%0A[#1053]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1053%0A[#1057]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1057%0A[#105]: https://github.com/jsx-eslint/eslint-plugin-react/issues/105%0A[#1061]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1061%0A[#1062]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1062%0A[#1070]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1070%0A[#1071]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1071%0A[#1073]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1073%0A[#1076]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1076%0A[#1079]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1079%0A[#1088]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1088%0A[#1098]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1098%0A[#1101]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1101%0A[#1103]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1103%0A[#110]: https://github.com/jsx-eslint/eslint-plugin-react/issues/110%0A[#1116]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1116%0A[#1117]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1117%0A[#1119]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1119%0A[#1121]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1121%0A[#1122]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1122%0A[#1123]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1123%0A[#1130]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1130%0A[#1131]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1131%0A[#1132]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1132%0A[#1134]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1134%0A[#1135]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1135%0A[#1139]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1139%0A[#1148]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1148%0A[#1149]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1149%0A[#114]: https://github.com/jsx-eslint/eslint-plugin-react/pull/114%0A[#1151]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1151%0A[#1155]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1155%0A[#1161]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1161%0A[#1167]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1167%0A[#1173]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1173%0A[#1174]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1174%0A[#1175]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1175%0A[#1178]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1178%0A[#1179]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1179%0A[#117]: https://github.com/jsx-eslint/eslint-plugin-react/pull/117%0A[#1180]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1180%0A[#1183]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1183%0A[#1189]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1189%0A[#118]: https://github.com/jsx-eslint/eslint-plugin-react/issues/118%0A[#1192]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1192%0A[#1195]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1195%0A[#1199]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1199%0A[#119]: https://github.com/jsx-eslint/eslint-plugin-react/pull/119%0A[#11]: https://github.com/jsx-eslint/eslint-plugin-react/issues/11%0A[#1201]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1201%0A[#1202]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1202%0A[#1206]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1206%0A[#1213]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1213%0A[#1216]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1216%0A[#1222]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1222%0A[#1226]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1226%0A[#1227]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1227%0A[#122]: https://github.com/jsx-eslint/eslint-plugin-react/issues/122%0A[#1231]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1231%0A[#1236]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1236%0A[#1239]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1239%0A[#123]: https://github.com/jsx-eslint/eslint-plugin-react/pull/123%0A[#1241]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1241%0A[#1242]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1242%0A[#1246]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1246%0A[#1249]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1249%0A[#1253]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1253%0A[#1257]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1257%0A[#125]: https://github.com/jsx-eslint/eslint-plugin-react/issues/125%0A[#1260]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1260%0A[#1261]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1261%0A[#1262]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1262%0A[#1264]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1264%0A[#1266]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1266%0A[#1269]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1269%0A[#1273]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1273%0A[#1274]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1274%0A[#1277]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1277%0A[#127]: https://github.com/jsx-eslint/eslint-plugin-react/pull/127%0A[#1281]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1281%0A[#1287]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1287%0A[#1288]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1288%0A[#1289]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1289%0A[#128]: https://github.com/jsx-eslint/eslint-plugin-react/issues/128%0A[#1290]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1290%0A[#1294]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1294%0A[#1296]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1296%0A[#129]: https://github.com/jsx-eslint/eslint-plugin-react/issues/129%0A[#12]: https://github.com/jsx-eslint/eslint-plugin-react/issues/12%0A[#1301]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1301%0A[#1303]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1303%0A[#1306]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1306%0A[#1308]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1308%0A[#1309]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1309%0A[#130]: https://github.com/jsx-eslint/eslint-plugin-react/issues/130%0A[#1310]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1310%0A[#1323]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1323%0A[#1329]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1329%0A[#132]: https://github.com/jsx-eslint/eslint-plugin-react/issues/132%0A[#1335]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1335%0A[#1337]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1337%0A[#133]: https://github.com/jsx-eslint/eslint-plugin-react/issues/133%0A[#1344]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1344%0A[#1352]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1352%0A[#1353]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1353%0A[#1354]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1354%0A[#135]: https://github.com/jsx-eslint/eslint-plugin-react/issues/135%0A[#1361]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1361%0A[#1363]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1363%0A[#1364]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1364%0A[#1366]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1366%0A[#1369]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1369%0A[#136]: https://github.com/jsx-eslint/eslint-plugin-react/issues/136%0A[#1374]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1374%0A[#1376]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1376%0A[#137]: https://github.com/jsx-eslint/eslint-plugin-react/issues/137%0A[#1380]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1380%0A[#1381]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1381%0A[#1382]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1382%0A[#1383]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1383%0A[#1384]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1384%0A[#1386]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1386%0A[#1388]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1388%0A[#1389]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1389%0A[#138]: https://github.com/jsx-eslint/eslint-plugin-react/pull/138%0A[#1392]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1392%0A[#1395]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1395%0A[#1396]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1396%0A[#1398]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1398%0A[#139]: https://github.com/jsx-eslint/eslint-plugin-react/issues/139%0A[#13]: https://github.com/jsx-eslint/eslint-plugin-react/issues/13%0A[#1400]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1400%0A[#1403]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1403%0A[#1406]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1406%0A[#1409]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1409%0A[#1412]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1412%0A[#1413]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1413%0A[#1414]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1414%0A[#1417]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1417%0A[#1422]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1422%0A[#1423]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1423%0A[#142]: https://github.com/jsx-eslint/eslint-plugin-react/issues/142%0A[#1432]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1432%0A[#1435]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1435%0A[#1438]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1438%0A[#1444]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1444%0A[#1449]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1449%0A[#144]: https://github.com/jsx-eslint/eslint-plugin-react/issues/144%0A[#1450]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1450%0A[#145]: https://github.com/jsx-eslint/eslint-plugin-react/issues/145%0A[#1462]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1462%0A[#1464]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1464%0A[#1467]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1467%0A[#1468]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1468%0A[#146]: https://github.com/jsx-eslint/eslint-plugin-react/issues/146%0A[#1471]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1471%0A[#1475]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1475%0A[#1476]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1476%0A[#1478]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1478%0A[#1479]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1479%0A[#147]: https://github.com/jsx-eslint/eslint-plugin-react/pull/147%0A[#1485]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1485%0A[#148]: https://github.com/jsx-eslint/eslint-plugin-react/issues/148%0A[#1493]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1493%0A[[#​
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR is behind base branch, 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 was generated by Mend Renovate. View the repository job log.