fix(deps): update apps dependencies #108
Open
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:
^3.67.1
->^3.75.0
^18.3.17
->^18.3.18
^3.4.2
->^3.5.1
^3.67.1
->^3.75.0
^6.1.13
->^6.1.15
^5.7.2
->^5.7.3
Release Notes
sanity-io/sanity (@sanity/vision)
v3.75.0
Compare Source
v3.74.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): update dependency @portabletext/editor to ^1.30.3 (#8508) |
3d25456
v3.74.0
Compare Source
✨ Highlights
UI improvements in studio and structure
1. Switch between
drafts
andpublished
perspectives in the editorPreviously, your drafted changes to an already published document would always be present when viewing that document in the studio, and there was no simple way of viewing the document in its published state. As of this release, the studio editor pane supports switching between the
![01](https://camo.githubusercontent.com/e825cabde72726da2cac9c5f230927da10e45357ab2710b1dac5f6efddccba42/68747470733a2f2f72656469726563742e6769746875622e636f6d2f757365722d6174746163686d656e74732f6173736574732f62626632363466392d336362352d343233352d393832372d643864363466663037326131)
published
anddrafts
perspectives, to quickly eyeball what’s changed.2. Browse your studio in
published
perspectiveThe default mode in the studio is unchanged - all existing drafts appear alongside published documents. When working on a single document, you’ll see your drafted changes rather than the last published version. This is the
drafts
perspective.Switching to the
published
perspective (via the perspective switcher at the top of the editor pane) updates the studio’s top navigation bar to green, indicating that you are now viewing only published documents in their last published state. Please note that while thepublished
perspective is active, your documents will be in read-only mode, unless they are configured to be live-editable.You can continue navigating the studio in this mode, ensuring you see only content that is currently live, or switch back to the default
![02](https://camo.githubusercontent.com/7897c57c0b1b3c6aab95079fdfacc7111ec8c052ff98f4bf539fd305ba4e1132/68747470733a2f2f72656469726563742e6769746875622e636f6d2f757365722d6174746163686d656e74732f6173736574732f37383631303566612d333462652d343931362d396239662d343061343636323430323364)
drafts
perspective to see all pending changes.3. Global perspective switcher
You can also change between the
published
ordrafts
perspective from the switcher at the right side of the studio top navigation bar.This will also be used by Presentation when previewing content inside the studio, the built in picker has been removed
4. Click document footer status bar to open history pane
The document History pane has always been available by accessing the ellipsis menu at the top of the document editor pane. From now on, you can also access this view by clicking the document status in the footer of the editor pane.
![04](https://camo.githubusercontent.com/8bc8beb57f91360682a70008e2512efffe4c91d2c48cee636c49c37b13fae00d/68747470733a2f2f72656469726563742e6769746875622e636f6d2f757365722d6174746163686d656e74732f6173736574732f36313563373333302d353338382d343566382d613863622d643534363639313337623137)
5 Perspective-aware History pane
The History pane now adapts to show information about the relevant document in the currently selected perspective. While in
published
mode, any changes since the last published state are omitted.To see all pending changes in the History pane, toggle back to the
drafts
perspective.📓 Full changelog
Author | Message | Commit
------------ | ------------- | -------------
Jordan Lawrence, Rita Dias, Pedro Bonamin, Ash Stevens, Cody Olsen, Robin Neatherway, Marius Lundgård, Bjørge Næss | feat: content releases (#8454) |
e485525
renovate[bot] | chore(deps): update dependency turbo to ^2.4.0 (#8500) |
2d2df51
Pedro Bonamin | fix(core): show accurate history for live-edit documents (#8497) |
ccb2a4f
v3.73.0
Compare Source
✨ Highlights
Presentation tool is now using Sanity Live Content API
The Presentation tool is now using Sanity Live Content API to drive Live Mode in integrations like
@sanity/react-loader
,@sanity/svelte-loader
,@nuxtjs/sanity
and@sanity/core-loader
.The new setup allows query refetching to only happen when actually needed, as opposed to every two seconds.
Why was fetching happening every two seconds before?
This aggressive polling was in place to capture changes that couldn’t be reliably predicted client-side using Content Source Maps/CSM. The goal was to ensure that such changes were detected and that eventual consistency was maintained in the live preview.
count(*[_type == "person" && isPublished])
For the client to know when this query count will change it would need to monitor every person document and if
isPublished
is true. This doesn't scale.*[slug.current == "discounted"]
If any document is given the slug
discounted
, the query needs to refetch. The client would need to monitor every single document mutation in the dataset and check if a new document now has the slug, as well as check if any fields on the current matching document has changed, or if the matching document got deleted and there's a fallback match, or none at all.The gist of it is the client can't predict everything, and if it tries, it winds up using a lot of memory and perform work, just in case anything has changed.
While this over-fetching never counted towards your Sanity API hit quota, the intention has always been to move over to a better architecture.
Enter the new Sanity Live API; it's built to solve "when should a query refetch?" and it allows Presentation to rely on the backend for telling it when it needs to refetch, thus using far less memory, less network resources, and less work on the main thread.
🐛 Notable bugfixes
\n
) in the Portable Text input would not work as expected in SafariInstall 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] | chore(lockfile): update dependency @tanstack/react-virtual to v3.11.3 (#8432) |
ee48358
renovate[bot] | chore(deps): update pnpm to v9.15.4 (#8435) |
b544969
renovate[bot] | fix(deps): update dependency @sanity/ui to ^2.11.7 (#8434) |
ac0f20c
renovate[bot] | chore(deps): update dependency framer-motion to v12 (#8438) |
465d9f2
ecospark[bot] | chore(prettier): fix unformatted files 🤖 ✨ (#8439) |
ca0adf9
Rostislav Melkumyan | fix(cli): apply write token (#8450) |
11dff40
RitaDias | fix(cli): fix issue where core sanity types were appearing in the validation for schemas and documents (#8445) |
81a3bc6
Bjørge Næss | fix: set strictRequires to auto when building auto updating studios (#8367) |
01a9cd9
Bjørge Næss | chore(deps): upgrade vite (back) to v6 (#8370) |
fdca354
Cody Olsen | fix(presentation): use live content API for loaders (#8429) |
86e5af8
renovate[bot] | fix(deps): Update dev-non-major (#8461) |
53b8009
Bjørge Næss | fix(migrate): always use raw perspective for migrations (#8467) |
c317461
renovate[bot] | fix(deps): update dependency @portabletext/editor to ^1.28.0 (#8448) |
8e7c346
renovate[bot] | fix(deps): update dependency @portabletext/editor to ^1.30.1 (#8479) |
b6ebfb7
renovate[bot] | fix(deps): update dependency @portabletext/editor to ^1.30.2 (#8485) |
f4600d7
ecospark[bot] | fix(deps): update React Compiler dependencies 🤖 ✨ (#8477) |
e5c8951
renovate[bot] | fix(deps): update dependency @portabletext/block-tools to ^1.1.4 (#8446) |
29a712c
renovate[bot] | fix(deps): update dependency groq-js to ^1.15.0 (#8481) |
763561c
ecospark[bot] | chore(deps): dedupe pnpm-lock.yaml (#8486) |
5891966
renovate[bot] | fix(deps): update dependency react-rx to ^4.1.18 (#8487) |
0e51cbe
renovate[bot] | fix(deps): update dependency @sanity/ui to ^2.11.8 (#8488) |
5cf7afc
renovate[bot] | chore(deps): update dependency vitest to v2.1.9 (#8489) |
60f2503
renovate[bot] | chore(deps): update dependency @sanity/visual-editing to v2.12.12 (#8493) |
8f6f088
v3.72.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
------------ | ------------- | -------------
Carolina Gonzalez | fix: remove references array from GraphQL union references generation (#8436) |
b5b5b6e
v3.72.0
Compare Source
✨ Highlights
Improved content serialization for copy-pasting in the Portable Text Editor
We’ve enhanced the way content is serialized to text/html when copying from a Portable Text input. Advanced formatting, such as lists and links, is now more reliably preserved when pasting into other applications like Notion or Word.
Additionally, copy-pasting between Portable Text fields in different documents is now more consistent. When pasting, Portable Text Editor (PTE) will intelligently filter out unsupported object types and annotations, ensuring that the rest of the content is pasted seamlessly.
🐛 Notable bugfixes
env
onundefined
.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
------------ | ------------- | -------------
Jordan Lawrence | refactor: moving calendar inputs from scheduled pub. to
core/components
(#8338) |2bb3a89
Pedro Bonamin | chore(structure): remove
TimelineStore
from<DocumentPaneProvider/>
(#8271) |ba00f34
Ash | feat(test-studio): add Cross Dataset Reference error replication |
4eb7fa1
Ash | fix(@sanity/schema): allow Cross Dataset References in Portable Text blocks |
23b2b6a
RitaDias | test(e2e): make e2e sturdier (#8348) |
70b6497
renovate[bot] | fix(deps): update dependency @sanity/ui to ^2.11.4 (#8334) |
576bf44
renovate[bot] | fix(deps): update dependency @portabletext/editor to ^1.24.0 (#8337) |
4a9a29a
renovate[bot] | fix(deps): update dependency @sanity/insert-menu to v1.0.20 (#8353) |
7418d2e
renovate[bot] | fix(deps): update dependency @sanity/presentation-comlink to ^1.0.2 (#8354) |
1828497
renovate[bot] | fix(deps): update dependency @sanity/client to ^6.27.0 (#8357) |
7f934e5
renovate[bot] | chore(deps): update dependency @sanity/visual-editing-csm to v2 (#8358) |
5df6759
renovate[bot] | fix(deps): update dependency @portabletext/block-tools to ^1.1.2 (#8360) |
d924950
renovate[bot] | fix(deps): update dependency @portabletext/editor to ^1.25.0 (#8368) |
c367854
renovate[bot] | fix(deps): update dependency @sanity/preview-url-secret to ^2.1.1 (#8356) |
eb13847
renovate[bot] | chore(deps): update react monorepo (#8375) |
8eb32e2
renovate[bot] | chore(deps): update dev-non-major (#8374) |
067ace2
renovate[bot] | chore(deps): update dependency @sanity/visual-editing-csm to ^2.0.1 (#8373) |
5daded1
renovate[bot] | fix(deps): update dependency @sanity/client to ^6.27.1 (#8376) |
7eebb60
renovate[bot] | fix(deps): update dependency @sanity/presentation-comlink to ^1.0.3 (#8377) |
3dc4058
renovate[bot] | fix(deps): update dependency @sanity/preview-url-secret to ^2.1.2 (#8378) |
6019bb7
Cody Olsen | fix(presentation): support
pt::text
in live queries (#8380) |691aad1
Knut Melvær | Update Studio photo (#8389) |
5dc4a6b
Carolina Gonzalez | fix(graphql): add custom logic for reference unions (#8350) |
cdeeae6
renovate[bot] | fix(deps): update dependency @sanity/preview-url-secret to ^2.1.3 (#8385) |
ef41c78
renovate[bot] | fix(deps): update dependency @portabletext/editor to ^1.26.0 (#8386) |
be47ff9
renovate[bot] | chore(deps): update dependency turbo to ^2.3.4 (#8396) |
af88596
renovate[bot] | chore(deps): update dev-non-major (#8397) |
3c3d645
renovate[bot] | fix(deps): update dependency @sanity/template-validator to ^2.4.0 (#8390) |
645db7b
Jordan Lawrence | feat: support for sticky params and intent operations (#8256) |
1269760
Snorre Eskeland Brekke | chore(comments): exposes more comment details as internal exports (#8336) |
25a3a2e
Pedro Bonamin | feat(core): add unstable
useObserveDocument
hook (#8407) |b693819
ecospark[bot] | fix(deps): update React Compiler dependencies 🤖 ✨ (#8414) |
bd53c3a
ecospark[bot] | chore(deps): dedupe pnpm-lock.yaml (#8415) |
623550d
renovate[bot] | fix(deps): update dependency react-rx to ^4.1.17 (#8416) |
17911eb
renovate[bot] | fix(deps): update dependency @portabletext/block-tools to ^1.1.3 (#8399) |
6780bcb
renovate[bot] | fix(deps): update dependency @portabletext/editor to ^1.26.2 (#8400) |
287dfa4
renovate[bot] | fix(deps): update dependency @sanity/ui to ^2.11.5 (#8417) |
2d28402
renovate[bot] | fix(deps): update dependency @sanity/ui to ^2.11.6 (#8420) |
1ebb974
Pedro Bonamin | fix(structure): do not set history inspector height to 0 (#8421) |
abb0b2e
Cody Olsen | fix: remove
process.env.SANITY_STUDIO_PRESENTATION_ENABLE_LIVE_DRAFT_EVENTS
(#8401) |68b7fa3
renovate[bot] | fix(deps): update dependency @portabletext/editor to ^1.26.3 (#8423) |
0fe8d70
renovate[bot] | fix(deps): update dependency get-it to ^8.6.7 (#8424) |
1f0777e
renovate[bot] | fix(deps): update dependency @sanity/client to ^6.27.2 (#8426) |
a2df043
renovate[bot] | chore(deps): update dependency @sanity/visual-editing-csm to ^2.0.2 (#8427) |
32b5ce9
renovate[bot] | fix(deps): update dependency @sanity/preview-url-secret to ^2.1.4 (#8431) |
b8497c3
renovate[bot] | fix(deps): update dependency @sanity/presentation-comlink to ^1.0.4 (#8428) |
24a74e9
renovate[bot] | fix(deps): Update dev-non-major (#8430) |
2092b7e
v3.71.2
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
------------ | ------------- | -------------
Cody Olsen | fix(presentation): perspective switching regression (#8383) |
9caf5d8
v3.71.1
Compare Source
🐛 Notable bugfixes
react
module import error affecting production builds of auto-updating studios.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
------------ | ------------- | -------------
Bjørge Næss | fix: revert back to vite v5 (#8362) |
03fa6f1
v3.71.0
Compare Source
✨ Highlights
The
@sanity/presentation
codebase has been migrated into thesanity
codebaseThe
@sanity/presentation
codebase has been migrated into thesanity
codebase. We've always recommended using Presentation Tool by importing it fromsanity/presentation
, like so:If you've been following this pattern then this change won't impact you in any way.
If you've been installing
@sanity/presentation
and are using it directly (we've sometimes suggested this to let folks try out bugfixes before they ship in the next release ofsanity
):Then you need to search/replace all
from '@​sanity/presentation'
statements in your codebase withfrom 'sanity/presentation'
, and uninstall@sanity/presentation
, as it'll no longer receive updates.Other features
disableActions
option to array fields for disabling various array input capabilities.🐛 Notable bugfixes
readOnly
document by callingonChange
.sanity dev
with React Strict Mode, or embedded studios on Next.js App Router.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
------------ | ------------- | -------------
Christian Grøngaard | fix(core): replace
@sanity/block-tools
with@portabletext/block-tools
(#8260) |0ff7c7f
Pedro Bonamin | chore(core): update
<Resizable/>
, accept a position prop and remove duped and export fromsanity
(#8250) |4bca7b9
Pedro Bonamin | chore(core): use displayed value for document title (#8268) |
9a5fee3
Pedro Bonamin | chore(core): update
diffValue
to accept a genericMeta
property (#8269) |cef5237
Pedro Bonamin | chore(core): add
getTransactionLogs
helper (#8261) |03e7760
Rostislav Melkumyan | chore(renovate): add
@sanity/template-validator
(#8280) |d351c5f
Pedro Bonamin | fix(core): cannot find namespace 'vi' (#8282) |
3a3cc58
Jordan Lawrence | chore: playwright test wrapper creates router context (#8258) |
a1a80a8
RitaDias | test(e2e): add checks for properties in reference tests (#8279) |
21aba08
renovate[bot] | fix(deps): update dependency @sanity/presentation to v1.22.0 (#8295) |
847f30e
renovate[bot] | chore(deps): update dev-non-major (#8267) |
c094eb3
Per-Kristian Nordnes | fix(core/form/inputs): fix issue with tabbing to popover toolbar buttons in PT-input (#5057) |
6c61c9c
renovate[bot] | chore(deps): update github artifact actions to v4 (major) (#8298) |
a7f5230
Jordan Lawrence | feat: Updated Navbar link for Tasks tool (#8257) |
498b05e
Espen Hovlandsdal | fix(deps): upgrade
vite
to v6 |532eb63
Espen Hovlandsdal | chore: temporary override to make vitest use vite 6 |
995eeba
Christian Grøngaard | fix(types): make
ObjectSchemaType['__experimental_search']
optional (#8289) |7f5c037
Jordan Lawrence | chore: explicitly setting all navbar dropdowns and menu popovers as having default tone (#8301) |
c0d26c0
ecospark[bot] | chore(deps): dedupe pnpm-lock.yaml (#8305) |
8d3ac75
renovate[bot] | fix(deps): update dependency @sanity/presentation to v1.22.1 (#8308) |
3a49a11
renovate[bot] | fix(deps): update dependency @sanity/client to ^6.24.4 (#8307) |
ee29383
Bjørge Næss | feat(preview): add experimental support for observing full documents (#7397) |
56bcd0a
Jordan Lawrence | fix: patching a readOnly document is blocked (#8292) |
49cc66f
Jordan Lawrence | fix: readOnly pane overrides patch (#8313) |
ad3fd48
renovate[bot] | fix(deps): update dependency @sanity/client to ^6.25.0 (#8315) |
d4175f9
Cody Olsen | refactor: migrate
@sanity/presentation
codebase (#8312) |680930c
renovate[bot] | fix(deps): update dependency @sanity/mutate to ^0.12.1 (#8239) |
b53b164
renovate[bot] | fix(deps): update dependency @sanity/preview-url-secret to ^2.1.0 (#8316) |
e8faa3a
Cody Olsen | fix(presentation): always show all documents in use (#8320) |
cbbebd5
Cody Olsen | fix(presentation): avoid duplicate key warning (#8319) |
48f3e68
ecospark[bot] | fix(deps): update React Compiler dependencies 🤖 ✨ (#8327) |
2e1f58e
ecospark[bot] | chore(deps): dedupe pnpm-lock.yaml (#8328) |
698d609
renovate[bot] | chore(deps): update dev-non-major (#8321) |
4e4dc8f
renovate[bot] | fix(deps): update dependency react-rx to ^4.1.16 (#8329) |
76609d2
renovate[bot] | fix(deps): update dependency @portabletext/editor to ^1.22.0 (#8252) |
5379e4f
renovate[bot] | fix(deps): update dependency @portabletext/block-tools to ^1.1.0 (#8285) |
ba61226
Rostislav Melkumyan | feat(cli): remote template bootstrapper to support write token (#8277) |
b5e5e9d
renovate[bot] | fix(deps): update dependency @sanity/ui to ^2.11.3 (#8330) |
148c1ec
renovate[bot] | chore(lockfile): update dependency framer-motion to v11.18.1 (#8331) |
b99d808
Bjørge Næss | feat(form): add support for disabling array input capabilities (#7615) |
9ce399c
Simeon Griggs | fix: add defineField helper to alt field (#8333) |
fc456ea
Christian Grøngaard | test: fix PTE copy/paste test case (#8344) |
044f24c
Bjørge Næss | feat(preview): add experimental support for live document id sets (#7398) |
d1dc5b5
v3.70.0
Compare Source
✨ Highlights
Improvements to Visual Editing
This release includes several changes across the
@sanity/astro
and@sanity/visual-editing
packages, resulting in a more stable Visual Editing experience with Astro and a smoother initial setup:@sanity/astro
version3.1.9
that caused errors in new projects setup using Astro’s CLI tool.Other features
sanity
package now exports an experimentalEditPortal
component, which allows users to createDialog
orPopover
components that include Presence and scroll virtualization out of the box, like so:🐛 Notable bugfixes
schema extract
,manifest extract
,graphql deploy
,documents validate
orschema validate
would never complete.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 @sanity/presentation to v1.20.2 (#8219) |
5ddfe63
renovate[bot] | chore(deps): update typescript-tooling (#8210) |
fb1cf5b
renovate[bot] | fix(deps): update dependency get-it to ^8.6.6 (#8221) |
17e10ca
renovate[bot] | fix(deps): update dependency @sanity/insert-menu to v1.0.19 (#8222) |
07651a5
renovate[bot] | fix(deps): update dependency @sanity/presentation to v1.20.3 (#8223) |
a363bba
renovate[bot] | fix(deps): update dependency @sanity/client to ^6.24.3 (#8213) |
47577ea
renovate[bot] | fix(deps): update dependency @portabletext/editor to ^1.21.0 (#8227) |
5c28f4f
Rostislav Melkumyan | feat(cli): skip directories without .env.example when bootstrapping remote template (#8216) |
86c6ab1
Snorre Eskeland Brekke | fix: ensures singleworkspace falls back to the name 'default' as expected in all contexts (#8228) |
fe708e8
renovate[bot] | fix(deps): update dependency @portabletext/editor to ^1.21.1 (#8234) |
26b64c7
Pedro Bonamin | chore(core): export EditPortal from sanity (#8229) |
ab31417
renovate[bot] | fix(deps): update dependency @sanity/presentation to v1.21.1 (#8230) |
9e624fa
Bjørge Næss | fix(ci): pin ubuntu version for e2e component tests to 22.04 (#8245) |
b3cce81
Pedro Bonamin | fix(core): support serverDocumentActions flag in plugins (#8247) |
78318f3
Rostislav Melkumyan | feat(cli): slim down remote test template (#8224) |
41580c4
ecospark[bot] | fix(deps): update React Compiler dependencies 🤖 ✨ (#8244) |
256ffac
renovate[bot] | fix(deps): update dependency react-rx to ^4.1.14 (#8246) |
2664f0f
renovate[bot] | fix(deps): update dependency @sanity/ui to ^2.11.2 (#8248) |
f3151c3
Magnus Holm | fix(cli): explicitly exit workers when they're done (#8226) |
104b74c
Christian Grøngaard | fix(block-tools): "soft" deprecate in favour of @portabletext/block-tools (#8254) |
885cfe0
Pedro Bonamin | chore(core): add
<AvatarSkeleton />
component (#8249) |0ab9c5b
Pedro Bonamin | fix(vision): debounce type setState to fix cursor jump (#8238) |
15cba9a
Ash | feat(sanity): include
_id
field ingroq2024
searches (#8237) |e0a2b6d
renovate[bot] | fix(deps): update dependency @sanity/presentation to v1.21.2 (#8253) |
39f8900
renovate[bot] | fix(deps): update dependency react-rx to ^4.1.15 (#8259) |
9d362e1
renovate[bot] | chore(deps): update dev-non-major (#8240) |
8299462
Christian Grøngaard | test: fix @portabletext/block-tools alias (#8262) |
7c2a68b
ecospark[bot] | chore(prettier): fix unformatted files 🤖 ✨ (#8263) |
5505240
renovate[bot] | fix(deps): update dependency @sanity/presentation to v1.21.3 ([#8265](https://redirect.github.com/sanity-i
Configuration
📅 Schedule: Branch creation - "before 4am on monday" in timezone America/Los_Angeles, 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 was generated by Mend Renovate. View the repository job log.