sanity 3.71.3-cli-validate.41 → 3.72.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,4 +1,4 @@
1
- const SANITY_VERSION = "3.71.3-cli-validate.41+8183e72990";
1
+ const SANITY_VERSION = "3.72.0";
2
2
  export {
3
3
  SANITY_VERSION
4
4
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sanity",
3
- "version": "3.71.3-cli-validate.41+8183e72990",
3
+ "version": "3.72.0",
4
4
  "description": "Sanity is a real-time content infrastructure with a scalable, hosted backend featuring a Graph Oriented Query Language (GROQ), asset pipelines and fast edge caches",
5
5
  "keywords": [
6
6
  "sanity",
@@ -160,11 +160,11 @@
160
160
  "@rexxars/react-json-inspector": "^9.0.1",
161
161
  "@sanity/asset-utils": "^2.0.6",
162
162
  "@sanity/bifur-client": "^0.4.1",
163
- "@sanity/cli": "3.71.3-cli-validate.41+8183e72990",
164
- "@sanity/client": "^6.27.1",
163
+ "@sanity/cli": "3.72.0",
164
+ "@sanity/client": "^6.27.2",
165
165
  "@sanity/color": "^3.0.0",
166
166
  "@sanity/comlink": "^3.0.1",
167
- "@sanity/diff": "3.71.3-cli-validate.41+8183e72990",
167
+ "@sanity/diff": "3.72.0",
168
168
  "@sanity/diff-match-patch": "^3.1.1",
169
169
  "@sanity/eventsource": "^5.0.0",
170
170
  "@sanity/export": "^3.42.2",
@@ -173,15 +173,15 @@
173
173
  "@sanity/import": "^3.37.9",
174
174
  "@sanity/insert-menu": "1.0.20",
175
175
  "@sanity/logos": "^2.1.13",
176
- "@sanity/migrate": "3.71.3-cli-validate.41+8183e72990",
177
- "@sanity/mutator": "3.71.3-cli-validate.41+8183e72990",
178
- "@sanity/presentation-comlink": "^1.0.3",
179
- "@sanity/preview-url-secret": "^2.1.3",
180
- "@sanity/schema": "3.71.3-cli-validate.41+8183e72990",
176
+ "@sanity/migrate": "3.72.0",
177
+ "@sanity/mutator": "3.72.0",
178
+ "@sanity/presentation-comlink": "^1.0.4",
179
+ "@sanity/preview-url-secret": "^2.1.4",
180
+ "@sanity/schema": "3.72.0",
181
181
  "@sanity/telemetry": "^0.7.7",
182
- "@sanity/types": "3.71.3-cli-validate.41+8183e72990",
182
+ "@sanity/types": "3.72.0",
183
183
  "@sanity/ui": "^2.11.6",
184
- "@sanity/util": "3.71.3-cli-validate.41+8183e72990",
184
+ "@sanity/util": "3.72.0",
185
185
  "@sanity/uuid": "^3.0.2",
186
186
  "@sentry/react": "^8.33.0",
187
187
  "@tanstack/react-table": "^8.16.0",
@@ -211,7 +211,7 @@
211
211
  "fast-deep-equal": "3.1.3",
212
212
  "form-data": "^4.0.0",
213
213
  "framer-motion": "^11.15.0",
214
- "get-it": "^8.6.6",
214
+ "get-it": "^8.6.7",
215
215
  "get-random-values-esm": "1.0.2",
216
216
  "groq-js": "^1.14.2",
217
217
  "history": "^5.3.0",
@@ -278,15 +278,15 @@
278
278
  "devDependencies": {
279
279
  "@playwright/experimental-ct-react": "1.49.1",
280
280
  "@playwright/test": "1.49.1",
281
- "@repo/dev-aliases": "3.71.2",
282
- "@repo/package.config": "3.71.2",
283
- "@repo/test-config": "workspace:*",
284
- "@sanity/codegen": "3.71.3-cli-validate.41+8183e72990",
281
+ "@repo/dev-aliases": "3.72.0",
282
+ "@repo/package.config": "3.72.0",
283
+ "@repo/test-config": "3.72.0",
284
+ "@sanity/codegen": "3.72.0",
285
285
  "@sanity/generate-help-url": "^3.0.0",
286
286
  "@sanity/pkg-utils": "6.13.4",
287
287
  "@sanity/tsdoc": "1.0.169",
288
288
  "@sanity/ui-workshop": "^1.2.11",
289
- "@sanity/visual-editing-csm": "^2.0.1",
289
+ "@sanity/visual-editing-csm": "^2.0.2",
290
290
  "@sentry/types": "^8.12.0",
291
291
  "@testing-library/jest-dom": "^6.4.8",
292
292
  "@testing-library/react": "^16.1.0",
@@ -325,5 +325,5 @@
325
325
  "engines": {
326
326
  "node": ">=18"
327
327
  },
328
- "gitHead": "8183e7299003002644024e2a304845c9ce6ab8fc"
328
+ "gitHead": "ec4abea4ac5da0f4466ecd5168fadc63e25b9b9a"
329
329
  }
@@ -117,8 +117,8 @@ const idRegex = /^[^-][A-Z0-9._-]*$/i
117
117
  // during testing, the `doc` endpoint 502'ed if given an invalid ID
118
118
  const isValidId = (id: unknown) => typeof id === 'string' && idRegex.test(id)
119
119
  const shouldIncludeDocument = (document: SanityDocument) => {
120
- // Filter out system documents and sanity documents
121
- return !document._type.startsWith('system.') && !document._type.startsWith('sanity.')
120
+ // Filter out system documents
121
+ return !document._type.startsWith('system.')
122
122
  }
123
123
 
124
124
  async function* readerToGenerator(reader: ReadableStreamDefaultReader<Uint8Array>) {