chore(deps): update dev dependencies (non-major)#513
Open
renovate[bot] wants to merge 1 commit intomainfrom
Open
chore(deps): update dev dependencies (non-major)#513renovate[bot] wants to merge 1 commit intomainfrom
renovate[bot] wants to merge 1 commit intomainfrom
Conversation
c8ff66e to
d0a5e5c
Compare
d0a5e5c to
a51d39f
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
^1.1.0→^1.3.0^20.5.0→^20.5.3^20.5.0→^20.5.3^0.5.7→^0.5.8^1.1.0→^1.3.13^28.0.0→^28.0.1^22.10.1→^22.19.17^24.10.13→^24.12.2^22.0.0→^22.19.17^25.0.10→^25.6.0^19.0.0→^19.2.14^19.0.0→^19.2.3^4.0.0→^4.7.0^10.4.0→^10.5.0^8.2.0→^8.2.2^0.27.2→^0.28.0^3.12.5→^3.15.0^29.0.0→^29.1.1^6.0.3→^6.9.0^2.1.4→^2.1.6^0.41.0→^0.47.0^1.56.0→^1.62.0^8.4.0→^8.5.12^24.40.0→^24.42.0^24.39.1→^24.42.0^3.4.0→^3.4.19^8.0.0→^8.5.1^4.7.0→^4.21.0^4.0.0→^4.21.0^5.0.0→^5.9.3^5.7.2→^5.9.3^5.0.0→^5.0.12Release Notes
bombshell-dev/clack (@clack/prompts)
v1.3.0Compare Source
Minor Changes
ea5702e: fix: add engines field expressing node >=20.12 requirement814ab9a: Add new multiline prompt for multi-line text input.Patch Changes
5b897a7: Fix mixed type-only and runtime exports from @clack/core.78fd3ae]ea5702e]814ab9a]v1.2.0Compare Source
Minor Changes
9786226: Externalizefast-string-widthandfast-wrap-ansito avoid double dependencies090902c: Addsdateprompt withformatsupport (YMD, MDY, DMY)Patch Changes
134a1a1: Fix thepathprompt sodirectory: truecorrectly enforces directory-only selection while still allowing directory navigation, and add regression tests for both directory and default file selection behavior.bdf89a5: Addsplaceholderoption toautocomplete. When the placeholder is set and the input is empty, pressingtabwill set the value toplaceholder.336495a: Apply guide to wrapped multi-line messages in confirm prompt.9fe8de6: RespectwithGuide: falsein autocomplete and multiselect prompts.29a50cb: Fixpathdirectory mode so pressing Enter with an existing directoryinitialValuesubmits that current directory instead of the first child option, and add regression coverage for immediate submit and child-directory navigation.9786226]bdf89a5]417b451]090902c]conventional-changelog/commitlint (@commitlint/cli)
v20.5.3Compare Source
Note: Version bump only for package @commitlint/cli
v20.5.2Compare Source
Note: Version bump only for package @commitlint/cli
conventional-changelog/commitlint (@commitlint/config-conventional)
v20.5.3Compare Source
Note: Version bump only for package @commitlint/config-conventional
vitejs/vite-plugin-react (@vitejs/plugin-react)
v4.7.0Compare Source
Add HMR support for compound components (#518)
HMR now works for compound components like this:
Return
Plugin[]instead ofPluginOption[](#537)The return type has changed from
react(): PluginOption[]to more specialized typereact(): Plugin[]. This allows for type-safe manipulation of plugins, for example:v4.6.0Compare Source
Add raw Rolldown support
This plugin only worked with Vite. But now it can also be used with raw Rolldown. The main purpose for using this plugin with Rolldown is to use react compiler.
v4.5.2Compare Source
Suggest
@vitejs/plugin-react-oxcif rolldown-vite is detected #491Emit a log which recommends
@vitejs/plugin-react-oxcwhenrolldown-viteis detected to improve performance and use Oxc under the hood. The warning can be disabled by settingdisableOxcRecommendation: truein the plugin options.Use
optimizeDeps.rollupOptionsinstead ofoptimizeDeps.esbuildOptionsfor rolldown-vite #489This suppresses the warning about
optimizeDeps.esbuildOptionsbeing deprecated in rolldown-vite.Add Vite 7-beta to peerDependencies range #497
React plugins are compatible with Vite 7, this removes the warning when testing the beta.
v4.5.1Compare Source
Add explicit semicolon in preambleCode #485
This fixes an edge case when using HTML minifiers that strips line breaks aggressively.
v4.5.0Compare Source
Add
filterfor rolldown-vite #470Added
filterso that it is more performant when running this plugin with rolldown-powered version of Vite.Skip HMR for JSX files with hooks #480
This removes the HMR warning for hooks with JSX.
v4.4.1Compare Source
Fix type issue when using
moduleResolution: "node"in tsconfig #462v4.4.0Compare Source
Make compatible with rolldown-vite
This plugin is now compatible with rolldown-powered version of Vite.
Note that currently the
__sourceproperty value position might be incorrect. This will be fixed in the near future.v4.3.4Compare 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.3Compare Source
React Compiler runtimeModule option removed
React Compiler was updated to accept a
targetoption andruntimeModulewas removed. vite-plugin-react will still detectruntimeModulefor backwards compatibility.When using a custom
runtimeModuleortarget !== '19', the plugin will not try to pre-optimizereact/compiler-runtimedependency.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.2Compare Source
Ignore directive sourcemap error #369
v4.3.1Compare 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-runtimedependency.Reminder: Vite expect code outside of
node_modulesto be ESM, so you will need to update the gist withimport React from 'react'.v4.3.0Compare Source
Fix support for React compiler
Don't set
retainLines: truewhen 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.
v4.2.1Compare Source
Remove generic parameter on
Pluginto avoid type error with Rollup 4/Vite 5 andskipLibCheck: false.I expect very few people to currently use this feature, but if you are extending the React plugin via
apiobject, you can get back the typing of the hook by importingViteReactPluginApi:v4.2.0Compare Source
Update peer dependency range to target Vite 5
There were no breaking change that impacted this plugin, so any combination of React plugins and Vite core version will work.
Align jsx runtime for optimized dependencies
This will only affect people using internal libraries that contains untranspiled JSX. This change aligns the optimizer with the source code and avoid issues when the published source don't have
Reactin the scope.Reminder: While being partially supported in Vite, publishing TS & JSX outside of internal libraries is highly discouraged.
v4.1.1Compare Source
v4.1.0Compare Source
@types/babel__coresto dependencies (fix #211)@babel/core#212index.d.ctsfile so you don't get types errors when settingmoduleResolutiontonode16ornodenextin your tsconfig (we recommend usingbundlerwhich is more close to how Vite works)v4.0.4Compare Source
v4.0.3Compare Source
v4.0.2Compare Source
v4.0.1Compare Source
postcss/autoprefixer (autoprefixer)
v10.5.0Compare Source
mask-position-xandmask-position-ysupport (by @toporek).v10.4.27Compare Source
package.json.v10.4.26Compare Source
v10.4.25Compare Source
v10.4.24Compare Source
v10.4.23Compare Source
v10.4.22Compare Source
stretchprefixes on new Can I Use database.fraction.js.v10.4.21Compare Source
-moz-prefix for:placeholder-shown(by @Marukome0743).v10.4.20Compare Source
fit-contentprefix for Firefox.v10.4.19Compare Source
end value has mixed support, consider using flex-endwarningsince
end/startnow have good support.v10.4.18Compare Source
-webkit-box-orienton-webkit-line-clamp(@Goodwine).v10.4.17Compare Source
user-select: containprefixes.v10.4.16Compare Source
v10.4.15Compare Source
::backdropprefixes (by 一丝).v10.4.14Compare Source
v10.4.13Compare Source
v10.4.12Compare Source
v10.4.11Compare Source
text-decorationprefixes by moving to MDN data (by Romain Menke).v10.4.10Compare Source
unicode-bidiprefixes by moving to MDN data.v10.4.9Compare Source
css-unicode-bidiissue from latest Can I Use.v10.4.8Compare Source
color-adjustwarning ifprint-color-adjustalso is in rule.v10.4.7Compare Source
print-color-adjustsupport in Firefox.v10.4.6Compare Source
print-color-adjustsupport.v10.4.5Compare Source
NaNin grid (by @SukkaW).v10.4.4Compare Source
package.fundingto have same value between all PostCSS packages.v10.4.3Compare Source
package.funding(by Álvaro Mondéjar).v10.4.2Compare Source
-moz-prefix for:placeholder-shown(by @Marukome0743).v10.4.1Compare Source
end value has mixed support, consider using flex-endwarningsince
end/startnow have good support.open-cli-tools/concurrently (concurrently)
v8.2.2Compare Source
What's Changed
New Contributors
Full Changelog: open-cli-tools/concurrently@v8.2.1...v8.2.2
v8.2.1Compare Source
What's Changed
New Contributors
Full Changelog: open-cli-tools/concurrently@v8.2.0...v8.2.1
evanw/esbuild (esbuild)
v0.28.0Compare Source
v0.27.7Compare Source
v0.27.5Compare Source
v0.27.4Compare Source
v0.27.3Compare Source
greensock/GSAP (gsap)
v3.15.0Compare Source
v3.14.2Compare Source
v3.14.1Compare Source
v3.14.0Compare Source
v3.13.0Compare Source
v3.12.7Compare Source
v3.12.6Compare Source
jsdom/jsdom (jsdom)
v29.1.1Compare Source
v29.1.0Compare Source
v29.0.2Compare Source
getComputedStyle(). Computed value rules are now applied across a broader set of properties, and include fixes related to inheritance, defaulting keywords, custom properties, and color-related values such ascurrentcolorand system colors. (@asamuzaK)'background' and'border'shorthand parsing. (@asamuzaK)v29.0.1Compare Source
webpro-nl/knip (knip)
v6.9.0: Release 6.9.0Compare Source
961b734)v6.8.0: Release 6.8.0Compare Source
9167557) - thanks @sebastianbreguel!c937697) - thanks @PatrykWalach!0f94d2d)f2819b3)5c21d27)v6.7.0: Release 6.7.0Compare Source
4713108)a71ead1) - thanks @dskwrite!98113e6)544c3e6)export {}to maintain module shape (27d8a02)47e4029)bfb4867)95faad8)2c6d8a0)0914bd3)a689501)v6.6.3: Release 6.6.3Compare Source
ba7e907)abae75b)f2b8fcf)2eb4045)970a0db)14538ec)9533365) - thanks @joshkel!7ea055a)0910b33)d5aa1f6)v6.6.2: Release 6.6.2Compare Source
1a99048)46cb338)dcf5315)v6.6.1: Release 6.6.1Compare Source
c6d9c43) - thanks @skoeva!af83d68) - thanks @rpereira-anchor!200db55) - thanks @krystofspiller!6fded2f)v6.6.0: Release 6.6.0Compare Source
e7abd6b)6f781b8)c2c0323)2e8cf47)fab5871)e11c2b1)@sveltejs/packageplugin (resolve #1690) (8b2d402)91964e4)v6.5.0: Release 6.5.0Compare Source
f860929)e2943ed)d8ae4d3) - thanks @xaqrox!fast-globwithtinyglobby(#1462) (9f6b4c8) - thanks @gameroman!f885f1d) - thanks @BenCrinion-IW!f4658c8) - thanks @xaqrox!f7e5464) - thanks @Hoffs!15bd7e7)b89b4f7)a6e09ca](https://redirect.github.com/webpro-nl/knip/commit/a6e09cConfiguration
📅 Schedule: (in timezone America/Los_Angeles)
🚦 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 was generated by Mend Renovate. View the repository job log.