fix(deps): update all non-major dependencies (minor)#281
Open
renovate[bot] wants to merge 1 commit into
Open
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
7ae27a8 to
9928209
Compare
9928209 to
a22e894
Compare
a22e894 to
0ee4e94
Compare
0ee4e94 to
7829986
Compare
7829986 to
9602933
Compare
9602933 to
cb28509
Compare
cb28509 to
0f6f3ea
Compare
0f6f3ea to
0ad5142
Compare
0ad5142 to
32288f5
Compare
a01fd12 to
85c5b83
Compare
85c5b83 to
b6c0fc0
Compare
b6c0fc0 to
55256b6
Compare
55256b6 to
264a79c
Compare
264a79c to
41aaaa9
Compare
41aaaa9 to
a0ed68a
Compare
a0ed68a to
1a0d363
Compare
1a0d363 to
341de30
Compare
341de30 to
163aad8
Compare
|
|
1 similar comment
|
|
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:
0.6.1→0.7.211.11.0→11.13.511.11.0→11.12.011.11.0→11.14.211.11.4→11.14.011.11.5→11.14.18.3.1→8.4.10.10.6→0.15.05.0.21→5.2.84.1.1→4.7.11.0.5→1.1.151.0.5→1.1.152.0.6→2.1.161.0.5→1.2.107.81.1→7.120.47.5.3→7.6.247.5.3→7.6.247.5.3→7.6.247.5.3→7.6.247.5.3→7.6.247.5.3→7.6.247.5.3→7.6.177.5.3→7.6.247.5.3→7.6.247.5.3→7.6.247.5.3→7.6.247.5.3→7.6.247.5.3→7.6.246.1.6→6.9.114.1.2→14.3.114.5.2→14.6.122.10.10→22.19.1918.2.79→18.3.2918.2.25→18.3.74.8.4→4.11.48.54.0→8.57.110.0.1→10.1.80.12.0→0.18.02.29.1→2.32.06.8.0→6.10.27.33.2→7.37.510.16.16→10.18.023.7.20→23.16.87.2.0→7.4.03.4.1→3.5.06.20.0→6.31.00.22.0→0.26.11.0.1→1.1.18.16.2→8.21.00.4.2→0.5.218.2.0→18.3.118.2.0→18.3.14.0.13→4.1.20.32.6→0.34.55.3.3→5.9.33.22.5→3.25.76Release Notes
effector/next (@effector/next)
v0.7.2Compare Source
🐛 Bug Fixes
v0.7.1Compare Source
React 19 support
v0.7.0Compare Source
🚀 Features
emotion-js/emotion (@emotion/babel-plugin)
v11.13.5Compare Source
Patch Changes
#3270
77d930dThanks @emmatown! - Fix inconsistent hashes using development vs production bundles/exportsconditions when using@emotion/babel-pluginwithsourceMap: true(the default). This is particularly visible when using Emotion with the Next.js Pages router where thedevelopmentcondition is used when bundling code but not when importing external code with Node.js.Updated dependencies [
77d930d]:v11.12.0Compare Source
Patch Changes
#3206
d1994c4Thanks @DiegoAndai! - Improved compatibility with the upcoming@types/reactfor React 19 where the globalJSXnamespace doesn't exist anymore#3208
56109e7Thanks @Andarist! - Only forward definedrefs to improve compatibility with the upcoming React 19Updated dependencies [
9ca22c6,a1e881b,16d8a8c]:faker-js/faker (@faker-js/faker)
v8.4.1Compare Source
v8.4.0Compare Source
Features
fractionDigitsin float (#1855) (41d8778)Bug Fixes
8.3.1 (2023-11-14)
Bug Fixes
[@internal](https://redirect.github.com/internal)from module parent classes (#2548) (77f54ad)effector/farfetched (@farfetched/core)
v0.11.4Compare Source
v0.11.3Compare Source
v0.11.2Compare Source
v0.11.1Compare Source
v0.11.0Compare Source
fontsource/font-files (@fontsource/inter)
v5.2.8Compare Source
v5.2.7Compare Source
v5.2.6Compare Source
v5.2.5Compare Source
v5.2.4Compare Source
v5.2.1Compare Source
v5.2.0Compare Source
v5.1.1Compare Source
v5.1.0Compare Source
ianvs/prettier-plugin-sort-imports (@ianvs/prettier-plugin-sort-imports)
v4.7.1Compare Source
What's Changed
Fixes
Dependencies
Docs
New Contributors
Full Changelog: IanVS/prettier-plugin-sort-imports@v4.7.0...v4.7.1
v4.7.0Compare Source
What's Changed
This project began as a fork because I wanted a plugin that would not move side-effect imports around and mess with my CSS cascade. So its first and most distinguishing feature is that side-effect imports do not move, and other imports are not sorted across them.
This works fine in most cases, but some people have side-effect imports that they know can be sorted safely. For those, there is now an "escape hatch" option named
importOrderSafeSideEffects. It is an array of glob pattern strings (similar toimportOrder) which, when they match against a side-effect import, allow that import to be sorted as if it were a standard import.Suggestions for safe use:
^at the start of your pattern and$at the end, to avoid accidentally matching part of an import name. For example,"^server-only$", to avoid matching againstimport "not-server-only".// prettier-ignoreto stop sorting a particular import that would otherwise be sorted.Feedback on this feature is welcome.
Features
importOrderSafeSideEffectsoption by @IanVS in IanVS#240Internal
Full Changelog: IanVS/prettier-plugin-sort-imports@v4.6.3...v4.7.0
v4.6.3Compare Source
What's Changed
Full Changelog: IanVS/prettier-plugin-sort-imports@4.6.2...v4.6.3
v4.6.2Compare Source
What's Changed
New Contributors
Full Changelog: IanVS/prettier-plugin-sort-imports@v4.6.1...4.6.2
v4.6.1Compare Source
What's Changed
Full Changelog: IanVS/prettier-plugin-sort-imports@v4.6.0...v4.6.1
v4.6.0Compare Source
What's Changed
Full Changelog: IanVS/prettier-plugin-sort-imports@v4.5.1...v4.6.0
v4.5.1Compare Source
What's Changed
Fixes
Internal
Full Changelog: IanVS/prettier-plugin-sort-imports@v4.5.0...v4.5.1
v4.5.0Compare Source
What's Changed
New Contributors
Full Changelog: IanVS/prettier-plugin-sort-imports@v4.4.2...v4.5.0
v4.4.2Compare Source
What's Changed
New Contributors
Full Changelog: IanVS/prettier-plugin-sort-imports@v4.4.1...v4.4.2
v4.4.1Compare Source
What's Changed
New Contributors
Full Changelog: IanVS/prettier-plugin-sort-imports@v4.4.0...v4.4.1
v4.4.0Compare Source
What's Changed
Enhancements
importOrderCaseSensitiveoption for case-sensitive sorting by @acnebs in IanVS#184Maintenance
New Contributors
Full Changelog: IanVS/prettier-plugin-sort-imports@v4.3.1...v4.4.0
v4.3.1Compare Source
What's Changed
New Contributors
Full Changelog: IanVS/prettier-plugin-sort-imports@v4.3.0...v4.3.1
v4.3.0Compare Source
What's Changed
Features
This release adds support for experimental import attributes / assertions. There have been a number of styles proposed by TC-39 over the years, but the latest is to use
import x from 'x' with { type: 'json' };, which is called an "import attribute". There is also an older "import assertion" form, which usesassertinstead ofwith.Note: You may need to add
"importAttributes"to your"importOrderParserPlugins"option in order to support this. And if you are using the older assertion style, you'll need to add it as'[\"importAttributes\", {\"deprecatedAssertSyntax\": true}]'.This plugin will also convert the older assertion style to import attributes.
Bugfixes
TypeScript
Optionstypes with internalPluginConfigby @jeremy-code in IanVS#172You can now type your prettier config as simply
/** @​type {import("prettier").Config} */, and you'll also get the types for the options this plugin adds, automatically.Docs
New Contributors
Full Changelog: IanVS/prettier-plugin-sort-imports@v4.2.1...v4.3.0
v4.2.1Compare Source
What's Changed
Bugfixes
[]should disable plugin by @IanVS in IanVS#161Full Changelog: IanVS/prettier-plugin-sort-imports@v4.2.0...v4.2.1
v4.2.0Compare Source
What's Changed
Features
Bug fixes
node:testnot grouped with<BUILTIN_MODULES>by @IsaiahByDayah in IanVS#143Dependencies
Docs
New Contributors
Full Changelog: IanVS/prettier-plugin-sort-imports@v4.1.1...v4.2.0
radix-ui/primitives (@radix-ui/react-alert-dialog)
v1.1.8v1.1.7Compare Source
v1.1.6Compare Source
v1.1.5Compare Source
v1.1.4Compare Source
v1.1.3Compare Source
v1.1.2Compare Source
v1.1.1Compare Source
getsentry/sentry-javascript (@sentry/nextjs)
v7.120.4Compare Source
Object.assignto be ES5 compatible (#17080)v7.120.3Compare Source
latesttag (#14926)Bundle size 📦
Configuration
📅 Schedule: (UTC)
🚦 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.