-
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 non-major #17
Merged
Merged
Conversation
This file contains 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
renovate
bot
force-pushed
the
renovate/non-major
branch
17 times, most recently
from
December 10, 2024 14:10
cc63cb2
to
afe90f9
Compare
renovate
bot
force-pushed
the
renovate/non-major
branch
10 times, most recently
from
December 15, 2024 15:45
8585b7d
to
b7abe08
Compare
renovate
bot
force-pushed
the
renovate/non-major
branch
7 times, most recently
from
December 17, 2024 15:54
a8a1f27
to
7edcdc0
Compare
renovate
bot
force-pushed
the
renovate/non-major
branch
from
December 17, 2024 21:25
7edcdc0
to
e81af6e
Compare
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:
^19.6.0
->^19.6.1
1.0.4
->1.0.5
^6.11.12
->^6.12.0
2.8.25
->2.10.11
^18.3.12
->^18.3.17
^8.16.0
->^8.18.1
^8.16.0
->^8.18.1
^5.0.0
->^5.1.0
^3.4.0
->^3.4.2
^3.64.3
->^3.67.1
^5.6.3
->^5.7.2
Release Notes
conventional-changelog/commitlint (@commitlint/cli)
v19.6.1
Compare Source
Note: Version bump only for package @commitlint/cli
sanity-io/incompatible-plugin (@sanity/incompatible-plugin)
v1.0.5
Compare Source
Bug Fixes
sanity-io/pkg-utils (@sanity/pkg-utils)
v6.12.0
Compare Source
Features
v6.11.15
Compare Source
Bug Fixes
v6.11.14
Compare Source
Bug Fixes
v6.11.13
Compare Source
Bug Fixes
sanity-io/ui (@sanity/ui)
v2.10.11
Compare Source
Bug Fixes
v2.10.10
Compare Source
Bug Fixes
v2.10.9
Compare Source
Bug Fixes
role
attribute (#1520) (e4bb2e4)v2.10.8
Compare Source
Bug Fixes
search
toTextInputType
(#1518) (872c36b)v2.10.7
Compare Source
Bug Fixes
referenceElement
don't flash in the wrong position on mount (c95c1c0)v2.10.6
Compare Source
Bug Fixes
useGlobalKeyDown
withoutuseCallback
(263c0a6)v2.10.5
Compare Source
Bug Fixes
v2.10.4
Compare Source
Bug Fixes
v2.10.3
Compare Source
Bug Fixes
motion.create
instead ofmotion()
(#1511) (c018961)v2.10.2
Compare Source
Bug Fixes
v2.10.1
Compare Source
Bug Fixes
v2.10.0
Compare Source
Features
v2.9.1
Compare Source
Bug Fixes
v2.9.0
Compare Source
Features
neutral
andsuggest
tones (18c08b8)Bug Fixes
neutral
tone forinfo
status (cb56633)v2.8.26
Compare Source
Bug Fixes
typescript-eslint/typescript-eslint (@typescript-eslint/eslint-plugin)
v8.18.1
Compare Source
🩹 Fixes
❤️ Thank You
You can read about our versioning strategy and releases on our website.
v8.18.0
Compare Source
🚀 Features
🩹 Fixes
toString()
declarations are present for a type (#10432)❤️ Thank You
You can read about our versioning strategy and releases on our website.
v8.17.0
Compare Source
🚀 Features
🩹 Fixes
❤️ Thank You
You can read about our versioning strategy and releases on our website.
typescript-eslint/typescript-eslint (@typescript-eslint/parser)
v8.18.1
Compare Source
This was a version bump only for parser to align it with other projects, there were no code changes.
You can read about our versioning strategy and releases on our website.
v8.18.0
Compare Source
🩹 Fixes
❤️ Thank You
You can read about our versioning strategy and releases on our website.
v8.17.0
Compare Source
This was a version bump only for parser to align it with other projects, there were no code changes.
You can read about our versioning strategy and releases on our website.
facebook/react (eslint-plugin-react-hooks)
v5.1.0
Compare Source
prettier/prettier (prettier)
v3.4.2
Compare Source
diff
Treat U+30A0 & U+30FB in Katakana Block as CJK (#16796 by @tats-u)
Prettier doesn't treat U+30A0 & U+30FB as Japanese. U+30FB is commonly used in Japanese to represent the delimitation of first and last names of non-Japanese people or “and”. The following “C言語・C++・Go・Rust” means “C language & C++ & Go & Rust” in Japanese.
U+30A0 can be used as the replacement of the
-
in non-Japanese names (e.g. “Saint-Saëns” (Charles Camille Saint-Saëns) can be represented as “サン゠サーンス” in Japanese), but substituted by ASCII hyphen (U+002D) or U+FF1D (full width hyphen) in many cases (e.g. “サン=サーンス” or “サン=サーンス”).Fix comments print on class methods with decorators (#16891 by @fisker)
Fix non-idempotent formatting (#16899 by @seiyab)
This bug fix is not language-specific. You may see similar change in any languages. This fixes regression in 3.4.0 so change caused by it should yield same formatting as 3.3.3.
v3.4.1
Compare Source
diff
Remove unnecessary parentheses around assignment in
v-on
(#16887 by @fisker)<!-- Input --> <template> <button @​click="foo += 2">Click</button> </template> <!-- Prettier 3.4.0 --> <template> <button @​click="(foo += 2)">Click</button> </template> <!-- Prettier 3.4.1 --> <template> <button @​click="foo += 2">Click</button> </template>
sanity-io/sanity (sanity)
v3.67.1
Compare Source
🐛 Notable bugfixes
Install or upgrade Sanity Studio
To initiate a new Sanity Studio project or upgrade an existing one, please refer to our comprehensive guide on Installing and Upgrading Sanity Studio.
If you are updating from a version earlier than 3.37.0, you should also check out this article to ensure your dependencies are up to date.
📓 Full changelog
Author | Message | Commit
------------ | ------------- | -------------
Pedro Bonamin | fix(core): tasks UpdatedTimeAgo should be a hook (#8011) |
789f3b2
renovate[bot] | chore(deps): update dependency @sanity/pkg-utils to v6.12.0 (#8010) |
a773485
Bjørge Næss | chore(deps): bump minimum requirement of @sanity/import and @sanity/export (#8012) |
c7ec5f9
v3.67.0
Compare Source
✨ Highlights
Start in Create enabled by default
The option to start drafting new documents in Sanity Create is now enabled by default. Depending on your hosting setup you might see a fully functional Start in Create-button appearing close to your default document actions, or a button that is temporarily disabled and awaiting some minor configuration. To learn how to fully enable the feature for both your development and production environments, or disable it entirely, check out the docs!
🐛 Notable bugfixes
disableArrayWarning
option to theSlugOptions
type (thank you @Stilyan!).Install or upgrade Sanity Studio
To initiate a new Sanity Studio project or upgrade an existing one, please refer to our comprehensive guide on Installing and Upgrading Sanity Studio.
If you are updating from a version earlier than 3.37.0, you should also check out this article to ensure your dependencies are up to date.
📓 Full changelog
Author | Message | Commit
------------ | ------------- | -------------
RitaDias | test(sanity): update timeout to avoid slow test from being flaky (#7969) |
d6dde60
renovate[bot] | fix(deps): update dependency @portabletext/editor to ^1.15.0 (#7971) |
6eacd33
Espen Hovlandsdal | chore(deps): update dependency glob to ^11.0.0 (#7949) |
ccee1f4
Espen Hovlandsdal | fix(i18n): allow weeks to start on Saturday (#7965) |
59deb00
Espen Hovlandsdal | fix(deps): deprecation warnings due to
glob
dependency (#7977) |5e3b8c1
Stilyan | feat: add disableArrayWarning option to SlugOptions (#7174) |
1b5fd00
Bjørge Næss | test(cli): remove v2 fixtures and bump timeouts (#7974) |
583bb6f
Cody Olsen | chore: add markdown plugin back (#7475) |
a7ed9be
renovate[bot] | fix(deps): update dependency @sanity/ui to ^2.10.1 (#7975) |
d23b3f0
Cody Olsen | chore: add back the
@sanity/color-input
plugin to test studio (#7502) |960186d
Bjørge Næss | test(e2e): add missing plugins to e2e studio (#7981) |
e078ebc
ecospark[bot] | fix(deps): update React Compiler dependencies 🤖 ✨ (#7982) |
bf67535
renovate[bot] | fix(deps): update dependency react-rx to ^4.1.8 (#7983) |
197fc3d
ecospark[bot] | chore(deps): dedupe pnpm-lock.yaml (#7987) |
23a47f3
renovate[bot] | fix(deps): update dependency groq-js to ^1.14.2 (#7985) |
5d5bac0
Ash | fix(sanity): do not perform incremental search for exact tokens (#7972) |
9fba9b7
renovate[bot] | fix(deps): update dependency @sanity/ui to ^2.10.3 (#7986) |
22c9708
Snorre Eskeland Brekke | feat: enable start in Create banner for new documents and include development mode information (#7955) |
656d4c8
renovate[bot] | fix(deps): update dependency @sanity/icons to ^3.5.1 (#7989) |
30d18d6
renovate[bot] | fix(deps): update dependency @sanity/presentation to v1.19.8 (#7984) |
ba996b7
renovate[bot] | fix(deps): update dependency @sanity/icons to ^3.5.2 (#7991) |
1b6117f
Cody Olsen | fix(deps): upgrade
vite
to v5 (#5285) |6817f2e
renovate[bot] | fix(deps): update dependency @sanity/ui to ^2.10.4 (#7993) |
9d3343c
renovate[bot] | chore(deps): update typescript-tooling (#7988) |
6a9c59e
renovate[bot] | fix(deps): Update dev-non-major (#7997) |
305a143
renovate[bot] | fix(deps): update dependency @portabletext/editor to ^1.15.3 (#7979) |
ae98a1d
Ash | refactor(sanity): extract common search token functions |
3aa1e03
Ash | refactor(sanity): skip unnecessary deduplication step |
e8bad21
Ash | feat(sanity): do not fade out global search results while fetching more |
a303002
Ash | feat: add
groq2024
search strategy |13f2e48
Ash | feat(test-studio): enable
groq2024
search strategy |8c4e248
Nikas Praninskas | fix(sanity): optimise getLeafWeights to not stack overflow (#7999) |
ac2ab18
Espen Hovlandsdal | feat: use eslint 9 for new studios (#7978) |
30d8f7e
Robin Pyon | feat: switch create integration to opt-out flow (#8002) |
6b322cb
Rostislav Melkumyan | feat(cli): use
@vercel/frameworks
inbootstrapRemoteTemplate
(#8001) |60537c8
renovate[bot] | fix(deps): update dependency @sanity/ui to ^2.10.7 (#7998) |
eb5739b
renovate[bot] | fix(deps): update dependency @sanity/ui to ^2.10.7 (#8005) |
2f135f6
Cody Olsen | chore: reduce renovate double PR noise |
0528bee
ecospark[bot] | chore(prettier): fix unformatted files 🤖 ✨ (#8006) |
da526ea
v3.66.1
Compare Source
🐛 Notable bugfixes
Install or upgrade Sanity Studio
To initiate a new Sanity Studio project or upgrade an existing one, please refer to our comprehensive guide on Installing and Upgrading Sanity Studio.
If you are updating from a version earlier than 3.37.0, you should also check out this article to ensure your dependencies are up to date.
📓 Full changelog
Author | Message | Commit
------------ | ------------- | -------------
renovate[bot] | fix(deps): allow react v19 as peer dependency (#7962) |
9722cd6
Ash | fix(sanity): reset search cursor state when any parameter changes (#7889) |
4d7ae8d
Bjørge Næss | fix(core): guard against missing process variable (#7967) |
bab0e19
renovate[bot] | fix(deps): update dependency @sanity/presentation to v1.19.7 (#7966) |
c82d44c
v3.66.0
Compare Source
✨ Highlights
React Compiler for auto-updating studios
Studios that have opted in to the auto-updating feature will now use code optimized by the React Compiler. In many cases, this results in a faster user interface.
Other features
Configurable slug field weight
It's now possible to configure search weights for slug fields using the options.search.weight field option:
The slug field's weight will now be respected when using global search with "Best match" sorting selected, and when using reference search. Learn more about search weights in the Studio Search Configuration documentation.
Crop/hotspot vector format warning
When using vector formats (like SVG), any crop/hotspot defined for the image will only be applied if the image is delivered in a raster format. To make this clear, a warning is now displayed when setting a crop/hotspot on vector images.
Document links in Vision
When using the
@sanity/vision
plugin, if query results contain either_id
or_ref
attributes, a link icon is displayed next to the value making it easier to find and edit the document.Note: This is currently only displayed if the queried dataset matches the dataset of the active workspace.
Sanity v2 CLI commands removed
v2 has been end-of-life since April 2024 and the CLI commands for v2 will no longer display a removed error.
You can still use
@sanity/cli@^2
should you need to run CLI commands against the an old studio project. See the guide for more details on migrating from v2 to v3.🐛 Notable bugfixes
Install or upgrade Sanity Studio
To initiate a new Sanity Studio project or upgrade an existing one, please refer to our comprehensive guide on Installing and Upgrading Sanity Studio.
If you are updating from a version earlier than 3.37.0, you should also check out this article to ensure your dependencies are up to date.
📓 Full changelog
Author | Message | Commit
------------ | ------------- | -------------
renovate[bot] | fix(deps): update dependency @portabletext/editor to ^1.12.0 (#7883) |
1dc2a68
renovate[bot] | chore(deps): update typescript-tooling (#7882) |
aebe3ce
Ash | refactor(sanity): clarify variable name |
fcff773
Ash | chore(sanity): remove duplicate test |
ee3f331
Ash | feat: support search weight configuration for slug fields |
022c910
renovate[bot] | fix(deps): Update dev-non-major (#7893) |
3f7892e
renovate[bot] | chore(lockfile): update dependency @sanity/react-loader to v1.10.22 (#7896) |
b13265d
renovate[bot] | chore(deps): update dependency @sanity/code-input to v5 (#7901) |
a323ddd
renovate[bot] | fix(deps): update dependency @sanity/presentation to v1.19.2 (#7899) |
e432e37
renovate[bot] | fix(deps): Update dev-non-major (#7902) |
56ed6cb
renovate[bot] | fix(deps): update dependency @sanity/icons to ^3.5.0 (#7900) |
1ed427e
Pedro Bonamin | fix(core): portable text annotations slow to show (#7588) |
ef50844
renovate[bot] | fix(deps): update dependency groq-js to ^1.14.1 (#7910) |
037a2f4
renovate[bot] | fix(deps): update dependency @portabletext/editor to ^1.12.2 (#7909) |
b2f1ff2
renovate[bot] | fix(deps): update dependency @sanity/ui to ^2.8.26 (#7906) |
5b58ced
renovate[bot] | fix(deps): update dependency @sanity/presentation to v1.19.3 (#7914) |
e609391
renovate[bot] | fix(deps): update dependency @sanity/insert-menu to v1.0.15 (#7913) |
d91efd9
Cody Olsen | fix: vertically center pane header when no tabs (#7912) |
481febd
Marius Lundgård | fix(sanity): support future UI tones (#7916) |
f5e85ae
renovate[bot] | fix(deps): Update dev-non-major (#7905) |
b4c157c
renovate[bot] | fix(deps): update dependency @sanity/ui to ^2.9.0 (#7918) |
d3a4a1f
renovate[bot] | fix(deps): update dependency @sanity/ui to ^2.9.0 (#7919) |
b28b160
Rostislav Melkumyan | feat(cli): add test-template for testing
--template
flag (#7877) |52ab8b2
renovate[bot] | fix(deps): update dependency @sanity/client to ^6.23.0 (#7931) |
90f884d
renovate[bot] | chore(deps): update typescript-tooling (#7928) |
755cd44
renovate[bot] | fix(deps): update dependency @sanity/presentation to v1.19.4 (#7930) |
ee5f3b6
renovate[bot] | fix(deps): Update dev-non-major (#7920) |
5b25212
Cody Olsen | fix: support react compiler for auto updating studios (#7897) |
e40d5b6
Rostislav Melkumyan | feat(cli): remove v2 init messaging (#7887) |
2333027
RitaDias | test(e2e): add unpublish e2e test (#7927) |
079824e
Rostislav Melkumyan | feat(cli): add support for remote templates with
--template
(#7867) |1f59825
ecospark[bot] | chore(deps): dedupe pnpm-lock.yaml (#7933) |
4fff528
renovate[bot] | fix(deps): update dependency @sanity/icons to ^3.5.0 (#7929) |
8ee3384
renovate[bot] | fix(deps): update dependency [@portabletext/editor](https://r
Configuration
📅 Schedule: Branch creation - "before 3am on the first day of the month" (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 using a curated preset maintained by . View repository job log here