Skip to content

Commit 3d213d5

Browse files
chore: release main (#378)
Co-authored-by: ecospark[bot] <128108030+ecospark[bot]@users.noreply.github.com>
1 parent 9c1ad58 commit 3d213d5

File tree

7 files changed

+105
-6
lines changed

7 files changed

+105
-6
lines changed

.release-please-manifest.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"packages/core": "0.0.0-alpha.22",
3-
"packages/react": "0.0.0-alpha.22",
4-
"packages/react-internal": "0.0.0-alpha.5"
2+
"packages/core": "0.0.0-alpha.23",
3+
"packages/react": "0.0.0-alpha.23",
4+
"packages/react-internal": "0.0.0-alpha.6"
55
}

packages/core/CHANGELOG.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,37 @@
11
# Changelog
22

3+
## [0.0.0-alpha.23](https://github.com/sanity-io/sdk/compare/sdk-v0.0.0-alpha.22...sdk-v0.0.0-alpha.23) (2025-04-03)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* use hosted login for standalone apps ([#386](https://github.com/sanity-io/sdk/issues/386))
9+
* replace `sanityConfigs` prop with `config` prop in `<SanityApp />` and `<SDKProvider />`
10+
* replace `resourceId` concept with explicit `projectId` and `dataset` fields in handles
11+
* rename `_type` to `documentType` in DocumentHandle interface and related usages
12+
* rename `_id` to `documentId` in DocumentHandle interface and related usages
13+
* update document hooks and actions to expect `DocumentHandle` props
14+
* update project and dataset hooks to use `ProjectHandle` or `DatasetHandle`
15+
* remove `<SanityProvider />`, introduce `<ResourceProvider />` for configuration
16+
17+
### Features
18+
19+
* introduce consistent Handle pattern (`ProjectHandle`, `DatasetHandle`, `DocumentHandle`) across the SDK ([969d70e](https://github.com/sanity-io/sdk/commit/969d70e41f6987234323f99753f5cf937469532b))
20+
* remove `<SanityProvider />`, introduce `<ResourceProvider />` for configuration ([969d70e](https://github.com/sanity-io/sdk/commit/969d70e41f6987234323f99753f5cf937469532b))
21+
* rename `_id` to `documentId` in DocumentHandle interface and related usages ([969d70e](https://github.com/sanity-io/sdk/commit/969d70e41f6987234323f99753f5cf937469532b))
22+
* rename `_type` to `documentType` in DocumentHandle interface and related usages ([969d70e](https://github.com/sanity-io/sdk/commit/969d70e41f6987234323f99753f5cf937469532b))
23+
* replace `resourceId` concept with explicit `projectId` and `dataset` fields in handles ([969d70e](https://github.com/sanity-io/sdk/commit/969d70e41f6987234323f99753f5cf937469532b))
24+
* replace `sanityConfigs` prop with `config` prop in `<SanityApp />` and `<SDKProvider />` ([969d70e](https://github.com/sanity-io/sdk/commit/969d70e41f6987234323f99753f5cf937469532b))
25+
* update document hooks and actions to expect `DocumentHandle` props ([969d70e](https://github.com/sanity-io/sdk/commit/969d70e41f6987234323f99753f5cf937469532b))
26+
* update project and dataset hooks to use `ProjectHandle` or `DatasetHandle` ([969d70e](https://github.com/sanity-io/sdk/commit/969d70e41f6987234323f99753f5cf937469532b))
27+
* update query and list hooks to accept optional `DatasetHandle` for configuration ([969d70e](https://github.com/sanity-io/sdk/commit/969d70e41f6987234323f99753f5cf937469532b))
28+
* use hosted login for standalone apps ([#386](https://github.com/sanity-io/sdk/issues/386)) ([9c1ad58](https://github.com/sanity-io/sdk/commit/9c1ad58bc0b302073c90dd6e584f566eba3d0d17))
29+
30+
31+
### Bug Fixes
32+
33+
* **deps:** update pkg-utils to v7 ([#384](https://github.com/sanity-io/sdk/issues/384)) ([ce9a952](https://github.com/sanity-io/sdk/commit/ce9a952a295a32ec86c12cbf9b967128ba5eaf4f))
34+
335
## [0.0.0-alpha.22](https://github.com/sanity-io/sdk/compare/sdk-v0.0.0-alpha.21...sdk-v0.0.0-alpha.22) (2025-03-28)
436

537

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sanity/sdk",
3-
"version": "0.0.0-alpha.22",
3+
"version": "0.0.0-alpha.23",
44
"private": false,
55
"description": "Sanity SDK",
66
"keywords": [

packages/react-internal/CHANGELOG.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,37 @@
11
# Changelog
22

3+
## [0.0.0-alpha.6](https://github.com/sanity-io/sdk/compare/sdk-react-internal-v0.0.0-alpha.5...sdk-react-internal-v0.0.0-alpha.6) (2025-04-03)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* use hosted login for standalone apps ([#386](https://github.com/sanity-io/sdk/issues/386))
9+
* replace `sanityConfigs` prop with `config` prop in `<SanityApp />` and `<SDKProvider />`
10+
* replace `resourceId` concept with explicit `projectId` and `dataset` fields in handles
11+
* rename `_type` to `documentType` in DocumentHandle interface and related usages
12+
* rename `_id` to `documentId` in DocumentHandle interface and related usages
13+
* update document hooks and actions to expect `DocumentHandle` props
14+
* update project and dataset hooks to use `ProjectHandle` or `DatasetHandle`
15+
* remove `<SanityProvider />`, introduce `<ResourceProvider />` for configuration
16+
17+
### Features
18+
19+
* introduce consistent Handle pattern (`ProjectHandle`, `DatasetHandle`, `DocumentHandle`) across the SDK ([969d70e](https://github.com/sanity-io/sdk/commit/969d70e41f6987234323f99753f5cf937469532b))
20+
* remove `<SanityProvider />`, introduce `<ResourceProvider />` for configuration ([969d70e](https://github.com/sanity-io/sdk/commit/969d70e41f6987234323f99753f5cf937469532b))
21+
* rename `_id` to `documentId` in DocumentHandle interface and related usages ([969d70e](https://github.com/sanity-io/sdk/commit/969d70e41f6987234323f99753f5cf937469532b))
22+
* rename `_type` to `documentType` in DocumentHandle interface and related usages ([969d70e](https://github.com/sanity-io/sdk/commit/969d70e41f6987234323f99753f5cf937469532b))
23+
* replace `resourceId` concept with explicit `projectId` and `dataset` fields in handles ([969d70e](https://github.com/sanity-io/sdk/commit/969d70e41f6987234323f99753f5cf937469532b))
24+
* replace `sanityConfigs` prop with `config` prop in `<SanityApp />` and `<SDKProvider />` ([969d70e](https://github.com/sanity-io/sdk/commit/969d70e41f6987234323f99753f5cf937469532b))
25+
* update document hooks and actions to expect `DocumentHandle` props ([969d70e](https://github.com/sanity-io/sdk/commit/969d70e41f6987234323f99753f5cf937469532b))
26+
* update project and dataset hooks to use `ProjectHandle` or `DatasetHandle` ([969d70e](https://github.com/sanity-io/sdk/commit/969d70e41f6987234323f99753f5cf937469532b))
27+
* update query and list hooks to accept optional `DatasetHandle` for configuration ([969d70e](https://github.com/sanity-io/sdk/commit/969d70e41f6987234323f99753f5cf937469532b))
28+
* use hosted login for standalone apps ([#386](https://github.com/sanity-io/sdk/issues/386)) ([9c1ad58](https://github.com/sanity-io/sdk/commit/9c1ad58bc0b302073c90dd6e584f566eba3d0d17))
29+
30+
31+
### Bug Fixes
32+
33+
* **deps:** update pkg-utils to v7 ([#384](https://github.com/sanity-io/sdk/issues/384)) ([ce9a952](https://github.com/sanity-io/sdk/commit/ce9a952a295a32ec86c12cbf9b967128ba5eaf4f))
34+
335
## [0.0.0-alpha.5](https://github.com/sanity-io/sdk/compare/sdk-react-internal-v0.0.0-alpha.4...sdk-react-internal-v0.0.0-alpha.5) (2025-03-25)
436

537

packages/react-internal/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sanity/sdk-react-internal",
3-
"version": "0.0.0-alpha.5",
3+
"version": "0.0.0-alpha.6",
44
"private": false,
55
"description": "Sanity SDK React toolkit for Content OS",
66
"keywords": [

packages/react/CHANGELOG.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,40 @@
11
# Changelog
22

3+
## [0.0.0-alpha.23](https://github.com/sanity-io/sdk/compare/sdk-react-v0.0.0-alpha.22...sdk-react-v0.0.0-alpha.23) (2025-04-03)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* use hosted login for standalone apps ([#386](https://github.com/sanity-io/sdk/issues/386))
9+
* replace `sanityConfigs` prop with `config` prop in `<SanityApp />` and `<SDKProvider />`
10+
* replace `resourceId` concept with explicit `projectId` and `dataset` fields in handles
11+
* rename `_type` to `documentType` in DocumentHandle interface and related usages
12+
* rename `_id` to `documentId` in DocumentHandle interface and related usages
13+
* update document hooks and actions to expect `DocumentHandle` props
14+
* update project and dataset hooks to use `ProjectHandle` or `DatasetHandle`
15+
* remove `<SanityProvider />`, introduce `<ResourceProvider />` for configuration
16+
17+
### Features
18+
19+
* introduce consistent Handle pattern (`ProjectHandle`, `DatasetHandle`, `DocumentHandle`) across the SDK ([969d70e](https://github.com/sanity-io/sdk/commit/969d70e41f6987234323f99753f5cf937469532b))
20+
* remove `<SanityProvider />`, introduce `<ResourceProvider />` for configuration ([969d70e](https://github.com/sanity-io/sdk/commit/969d70e41f6987234323f99753f5cf937469532b))
21+
* rename `_id` to `documentId` in DocumentHandle interface and related usages ([969d70e](https://github.com/sanity-io/sdk/commit/969d70e41f6987234323f99753f5cf937469532b))
22+
* rename `_type` to `documentType` in DocumentHandle interface and related usages ([969d70e](https://github.com/sanity-io/sdk/commit/969d70e41f6987234323f99753f5cf937469532b))
23+
* replace `resourceId` concept with explicit `projectId` and `dataset` fields in handles ([969d70e](https://github.com/sanity-io/sdk/commit/969d70e41f6987234323f99753f5cf937469532b))
24+
* replace `sanityConfigs` prop with `config` prop in `<SanityApp />` and `<SDKProvider />` ([969d70e](https://github.com/sanity-io/sdk/commit/969d70e41f6987234323f99753f5cf937469532b))
25+
* update document hooks and actions to expect `DocumentHandle` props ([969d70e](https://github.com/sanity-io/sdk/commit/969d70e41f6987234323f99753f5cf937469532b))
26+
* update project and dataset hooks to use `ProjectHandle` or `DatasetHandle` ([969d70e](https://github.com/sanity-io/sdk/commit/969d70e41f6987234323f99753f5cf937469532b))
27+
* update query and list hooks to accept optional `DatasetHandle` for configuration ([969d70e](https://github.com/sanity-io/sdk/commit/969d70e41f6987234323f99753f5cf937469532b))
28+
* use hosted login for standalone apps ([#386](https://github.com/sanity-io/sdk/issues/386)) ([9c1ad58](https://github.com/sanity-io/sdk/commit/9c1ad58bc0b302073c90dd6e584f566eba3d0d17))
29+
30+
31+
### Bug Fixes
32+
33+
* **deps:** update message-protocol to 0.7.0 ([#379](https://github.com/sanity-io/sdk/issues/379)) ([553b2f5](https://github.com/sanity-io/sdk/commit/553b2f5249432773c8b0d05b6704a9f17b26137c))
34+
* **deps:** update pkg-utils to v7 ([#384](https://github.com/sanity-io/sdk/issues/384)) ([ce9a952](https://github.com/sanity-io/sdk/commit/ce9a952a295a32ec86c12cbf9b967128ba5eaf4f))
35+
* ensure usePreview and useProjection hooks subscribe if no ref is passed ([#366](https://github.com/sanity-io/sdk/issues/366)) ([6da3fd1](https://github.com/sanity-io/sdk/commit/6da3fd158de23956b5f1aa732e31be7a6f312c64))
36+
* **react:** update app redirect url to new dashboard ([#377](https://github.com/sanity-io/sdk/issues/377)) ([86ec07e](https://github.com/sanity-io/sdk/commit/86ec07e86c194a38f59f2f0f6ee80c0b0b0d0356))
37+
338
## [0.0.0-alpha.22](https://github.com/sanity-io/sdk/compare/sdk-react-v0.0.0-alpha.21...sdk-react-v0.0.0-alpha.22) (2025-03-27)
439

540

packages/react/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sanity/sdk-react",
3-
"version": "0.0.0-alpha.22",
3+
"version": "0.0.0-alpha.23",
44
"private": false,
55
"description": "Sanity SDK React toolkit for Content OS",
66
"keywords": [

0 commit comments

Comments
 (0)