From aa2ed2ec5cb4479d1d68882fec340f8ba8096676 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Mon, 11 Oct 2021 23:42:50 +0000 Subject: [PATCH] Version Packages --- .changeset/happy-beds-hope.md | 5 ----- .changeset/tiny-chairs-beg.md | 5 ----- docs/CHANGELOG.md | 7 +++++++ docs/package.json | 4 ++-- examples-staging/assets-cloud/CHANGELOG.md | 7 +++++++ examples-staging/assets-cloud/package.json | 4 ++-- examples-staging/assets-local/CHANGELOG.md | 7 +++++++ examples-staging/assets-local/package.json | 4 ++-- examples-staging/auth/CHANGELOG.md | 8 ++++++++ examples-staging/auth/package.json | 6 +++--- examples-staging/basic/CHANGELOG.md | 9 +++++++++ examples-staging/basic/package.json | 8 ++++---- examples-staging/ecommerce/CHANGELOG.md | 9 +++++++++ examples-staging/ecommerce/package.json | 8 ++++---- examples-staging/embedded-nextjs/CHANGELOG.md | 7 +++++++ examples-staging/embedded-nextjs/package.json | 4 ++-- examples-staging/graphql-api-endpoint/CHANGELOG.md | 9 +++++++++ examples-staging/graphql-api-endpoint/package.json | 8 ++++---- examples-staging/roles/CHANGELOG.md | 8 ++++++++ examples-staging/roles/package.json | 6 +++--- examples-staging/sandbox/CHANGELOG.md | 8 ++++++++ examples-staging/sandbox/package.json | 6 +++--- examples/blog/CHANGELOG.md | 7 +++++++ examples/blog/package.json | 4 ++-- examples/custom-admin-ui-logo/CHANGELOG.md | 7 +++++++ examples/custom-admin-ui-logo/package.json | 4 ++-- examples/custom-admin-ui-navigation/CHANGELOG.md | 7 +++++++ examples/custom-admin-ui-navigation/package.json | 4 ++-- examples/custom-admin-ui-pages/CHANGELOG.md | 7 +++++++ examples/custom-admin-ui-pages/package.json | 4 ++-- examples/custom-field-view/CHANGELOG.md | 7 +++++++ examples/custom-field-view/package.json | 4 ++-- examples/custom-field/CHANGELOG.md | 7 +++++++ examples/custom-field/package.json | 4 ++-- examples/default-values/CHANGELOG.md | 7 +++++++ examples/default-values/package.json | 4 ++-- examples/document-field/CHANGELOG.md | 8 ++++++++ examples/document-field/package.json | 6 +++--- examples/extend-graphql-schema/CHANGELOG.md | 7 +++++++ examples/extend-graphql-schema/package.json | 4 ++-- examples/json/CHANGELOG.md | 7 +++++++ examples/json/package.json | 4 ++-- examples/rest-api/CHANGELOG.md | 7 +++++++ examples/rest-api/package.json | 4 ++-- examples/task-manager/CHANGELOG.md | 7 +++++++ examples/task-manager/package.json | 4 ++-- examples/testing/CHANGELOG.md | 8 ++++++++ examples/testing/package.json | 6 +++--- examples/virtual-field/CHANGELOG.md | 7 +++++++ examples/virtual-field/package.json | 4 ++-- examples/with-auth/CHANGELOG.md | 8 ++++++++ examples/with-auth/package.json | 6 +++--- packages/auth/CHANGELOG.md | 7 +++++++ packages/auth/package.json | 6 +++--- packages/cloudinary/CHANGELOG.md | 7 +++++++ packages/cloudinary/package.json | 6 +++--- packages/fields-document/CHANGELOG.md | 7 +++++++ packages/fields-document/package.json | 4 ++-- packages/keystone/CHANGELOG.md | 10 ++++++++++ packages/keystone/package.json | 2 +- packages/session-store-redis/CHANGELOG.md | 7 +++++++ packages/session-store-redis/package.json | 6 +++--- tests/benchmarks/CHANGELOG.md | 7 +++++++ tests/benchmarks/package.json | 4 ++-- tests/test-projects/basic/CHANGELOG.md | 7 +++++++ tests/test-projects/basic/package.json | 4 ++-- tests/test-projects/crud-notifications/CHANGELOG.md | 7 +++++++ tests/test-projects/crud-notifications/package.json | 4 ++-- 68 files changed, 326 insertions(+), 90 deletions(-) delete mode 100644 .changeset/happy-beds-hope.md delete mode 100644 .changeset/tiny-chairs-beg.md diff --git a/.changeset/happy-beds-hope.md b/.changeset/happy-beds-hope.md deleted file mode 100644 index 6270c088ad9..00000000000 --- a/.changeset/happy-beds-hope.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@keystone-next/keystone': patch ---- - -Fixed `text`, `integer`, `float` and `decimal` on the item view when using `ui.itemView.fieldMode: 'read'`. diff --git a/.changeset/tiny-chairs-beg.md b/.changeset/tiny-chairs-beg.md deleted file mode 100644 index 374a7199b5c..00000000000 --- a/.changeset/tiny-chairs-beg.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@keystone-next/keystone': major ---- - -Updated the way the `endSession` field on the `Mutation` type and the `keystone` field on the `Query` type are added to the GraphQL schema. This may result in re-ordering in your generated `schema.graphql` file. The `sessionSchema` export of `@keystone-next/keystone/session` has also been removed. diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 5023bf4f2da..0d21f5d9b7e 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,5 +1,12 @@ # @keystone-next/website +## 3.1.8 + +### Patch Changes + +- Updated dependencies []: + - @keystone-next/fields-document@12.0.0 + ## 3.1.7 ### Patch Changes diff --git a/docs/package.json b/docs/package.json index a2850d3559a..c2ab0fad8d1 100644 --- a/docs/package.json +++ b/docs/package.json @@ -1,6 +1,6 @@ { "name": "@keystone-next/website", - "version": "3.1.7", + "version": "3.1.8", "private": true, "license": "MIT", "scripts": { @@ -18,7 +18,7 @@ "@emotion/react": "^11.4.1", "@emotion/server": "11.4.0", "@emotion/weak-memoize": "^0.2.5", - "@keystone-next/fields-document": "^11.0.0", + "@keystone-next/fields-document": "^12.0.0", "@mdx-js/loader": "next", "@mdx-js/react": "^1.6.22", "@next/mdx": "^11.1.0", diff --git a/examples-staging/assets-cloud/CHANGELOG.md b/examples-staging/assets-cloud/CHANGELOG.md index 7e92967e35d..5af191b9dd3 100644 --- a/examples-staging/assets-cloud/CHANGELOG.md +++ b/examples-staging/assets-cloud/CHANGELOG.md @@ -1,5 +1,12 @@ # @keystone-next/example-assets-cloud +## 1.0.8 + +### Patch Changes + +- Updated dependencies [[`f38772b27`](https://github.com/keystonejs/keystone/commit/f38772b27d3e9d157127dabfa40036462c235a9f), [`dcf5241d8`](https://github.com/keystonejs/keystone/commit/dcf5241d8e3e62b080842a5d4bfd47a7f2cce5ca)]: + - @keystone-next/keystone@27.0.0 + ## 1.0.7 ### Patch Changes diff --git a/examples-staging/assets-cloud/package.json b/examples-staging/assets-cloud/package.json index 4199aede34d..9d6fc28cfc5 100644 --- a/examples-staging/assets-cloud/package.json +++ b/examples-staging/assets-cloud/package.json @@ -1,6 +1,6 @@ { "name": "@keystone-next/example-assets-cloud", - "version": "1.0.7", + "version": "1.0.8", "private": true, "license": "MIT", "scripts": { @@ -9,7 +9,7 @@ "build": "keystone-next build" }, "dependencies": { - "@keystone-next/keystone": "^26.1.0", + "@keystone-next/keystone": "^27.0.0", "dotenv": "^10.0.0" }, "devDependencies": { diff --git a/examples-staging/assets-local/CHANGELOG.md b/examples-staging/assets-local/CHANGELOG.md index fbb562bf339..d8bc4312ee1 100644 --- a/examples-staging/assets-local/CHANGELOG.md +++ b/examples-staging/assets-local/CHANGELOG.md @@ -1,5 +1,12 @@ # @keystone-next/example-assets-local +## 1.0.8 + +### Patch Changes + +- Updated dependencies [[`f38772b27`](https://github.com/keystonejs/keystone/commit/f38772b27d3e9d157127dabfa40036462c235a9f), [`dcf5241d8`](https://github.com/keystonejs/keystone/commit/dcf5241d8e3e62b080842a5d4bfd47a7f2cce5ca)]: + - @keystone-next/keystone@27.0.0 + ## 1.0.7 ### Patch Changes diff --git a/examples-staging/assets-local/package.json b/examples-staging/assets-local/package.json index 892a08b578b..100a3e58ea6 100644 --- a/examples-staging/assets-local/package.json +++ b/examples-staging/assets-local/package.json @@ -1,6 +1,6 @@ { "name": "@keystone-next/example-assets-local", - "version": "1.0.7", + "version": "1.0.8", "private": true, "license": "MIT", "scripts": { @@ -9,7 +9,7 @@ "build": "keystone-next build" }, "dependencies": { - "@keystone-next/keystone": "^26.1.0" + "@keystone-next/keystone": "^27.0.0" }, "devDependencies": { "typescript": "^4.4.3" diff --git a/examples-staging/auth/CHANGELOG.md b/examples-staging/auth/CHANGELOG.md index 69a20f5918c..27af23d6a7f 100644 --- a/examples-staging/auth/CHANGELOG.md +++ b/examples-staging/auth/CHANGELOG.md @@ -1,5 +1,13 @@ # @keystone-next/example-auth +## 4.0.10 + +### Patch Changes + +- Updated dependencies [[`f38772b27`](https://github.com/keystonejs/keystone/commit/f38772b27d3e9d157127dabfa40036462c235a9f), [`dcf5241d8`](https://github.com/keystonejs/keystone/commit/dcf5241d8e3e62b080842a5d4bfd47a7f2cce5ca)]: + - @keystone-next/keystone@27.0.0 + - @keystone-next/auth@35.0.0 + ## 4.0.9 ### Patch Changes diff --git a/examples-staging/auth/package.json b/examples-staging/auth/package.json index c6a1a7da6da..2a2c7d89f8d 100644 --- a/examples-staging/auth/package.json +++ b/examples-staging/auth/package.json @@ -1,6 +1,6 @@ { "name": "@keystone-next/example-auth", - "version": "4.0.9", + "version": "4.0.10", "private": true, "license": "MIT", "scripts": { @@ -9,8 +9,8 @@ "build": "keystone-next build" }, "dependencies": { - "@keystone-next/auth": "^34.0.0", - "@keystone-next/keystone": "^26.1.0", + "@keystone-next/auth": "^35.0.0", + "@keystone-next/keystone": "^27.0.0", "next": "^11.1.0", "react": "^17.0.2", "react-dom": "^17.0.2" diff --git a/examples-staging/basic/CHANGELOG.md b/examples-staging/basic/CHANGELOG.md index 332a1a839e2..6f69e620de4 100644 --- a/examples-staging/basic/CHANGELOG.md +++ b/examples-staging/basic/CHANGELOG.md @@ -1,5 +1,14 @@ # @keystone-next/example-app-basic +## 4.0.10 + +### Patch Changes + +- Updated dependencies [[`f38772b27`](https://github.com/keystonejs/keystone/commit/f38772b27d3e9d157127dabfa40036462c235a9f), [`dcf5241d8`](https://github.com/keystonejs/keystone/commit/dcf5241d8e3e62b080842a5d4bfd47a7f2cce5ca)]: + - @keystone-next/keystone@27.0.0 + - @keystone-next/auth@35.0.0 + - @keystone-next/fields-document@12.0.0 + ## 4.0.9 ### Patch Changes diff --git a/examples-staging/basic/package.json b/examples-staging/basic/package.json index 9b896027463..a29f8f2f707 100644 --- a/examples-staging/basic/package.json +++ b/examples-staging/basic/package.json @@ -1,6 +1,6 @@ { "name": "@keystone-next/examples-app-basic", - "version": "4.0.9", + "version": "4.0.10", "private": true, "license": "MIT", "scripts": { @@ -10,10 +10,10 @@ }, "dependencies": { "@babel/runtime": "^7.15.4", - "@keystone-next/auth": "^34.0.0", + "@keystone-next/auth": "^35.0.0", "@keystone-next/document-renderer": "^4.0.1", - "@keystone-next/fields-document": "^11.0.0", - "@keystone-next/keystone": "^26.1.0", + "@keystone-next/fields-document": "^12.0.0", + "@keystone-next/keystone": "^27.0.0", "@keystone-ui/core": "^3.2.1", "@keystone-ui/fields": "^5.0.1", "@keystone-ui/icons": "^4.0.2", diff --git a/examples-staging/ecommerce/CHANGELOG.md b/examples-staging/ecommerce/CHANGELOG.md index d41dc4a8d58..0745be0adb2 100644 --- a/examples-staging/ecommerce/CHANGELOG.md +++ b/examples-staging/ecommerce/CHANGELOG.md @@ -1,5 +1,14 @@ # @keystone-next/example-ecommerce +## 4.0.11 + +### Patch Changes + +- Updated dependencies [[`f38772b27`](https://github.com/keystonejs/keystone/commit/f38772b27d3e9d157127dabfa40036462c235a9f), [`dcf5241d8`](https://github.com/keystonejs/keystone/commit/dcf5241d8e3e62b080842a5d4bfd47a7f2cce5ca)]: + - @keystone-next/keystone@27.0.0 + - @keystone-next/auth@35.0.0 + - @keystone-next/cloudinary@10.0.0 + ## 4.0.10 ### Patch Changes diff --git a/examples-staging/ecommerce/package.json b/examples-staging/ecommerce/package.json index 74d2b351a45..d06b3542086 100644 --- a/examples-staging/ecommerce/package.json +++ b/examples-staging/ecommerce/package.json @@ -1,6 +1,6 @@ { "name": "@keystone-next/example-ecommerce", - "version": "4.0.10", + "version": "4.0.11", "private": true, "author": "Wes Bos & Jed Watson", "license": "MIT", @@ -16,9 +16,9 @@ "@babel/preset-react": "^7.14.5", "@babel/preset-typescript": "^7.15.0", "@babel/runtime": "^7.15.4", - "@keystone-next/auth": "^34.0.0", - "@keystone-next/cloudinary": "^9.0.0", - "@keystone-next/keystone": "^26.1.0", + "@keystone-next/auth": "^35.0.0", + "@keystone-next/cloudinary": "^10.0.0", + "@keystone-next/keystone": "^27.0.0", "@types/nodemailer": "^6.4.4", "dotenv": "^10.0.0", "next": "^11.1.0", diff --git a/examples-staging/embedded-nextjs/CHANGELOG.md b/examples-staging/embedded-nextjs/CHANGELOG.md index d7a3c603ddc..7d16c3bb5b6 100644 --- a/examples-staging/embedded-nextjs/CHANGELOG.md +++ b/examples-staging/embedded-nextjs/CHANGELOG.md @@ -1,5 +1,12 @@ # @keystone-next/example-next-lite +## 3.0.10 + +### Patch Changes + +- Updated dependencies [[`f38772b27`](https://github.com/keystonejs/keystone/commit/f38772b27d3e9d157127dabfa40036462c235a9f), [`dcf5241d8`](https://github.com/keystonejs/keystone/commit/dcf5241d8e3e62b080842a5d4bfd47a7f2cce5ca)]: + - @keystone-next/keystone@27.0.0 + ## 3.0.9 ### Patch Changes diff --git a/examples-staging/embedded-nextjs/package.json b/examples-staging/embedded-nextjs/package.json index 54c26e09bfb..0b297ec6287 100644 --- a/examples-staging/embedded-nextjs/package.json +++ b/examples-staging/embedded-nextjs/package.json @@ -1,6 +1,6 @@ { "name": "@keystone-next/example-embedded-nextjs", - "version": "3.0.9", + "version": "3.0.10", "private": true, "license": "MIT", "scripts": { @@ -9,7 +9,7 @@ "build": "next build" }, "dependencies": { - "@keystone-next/keystone": "^26.1.0", + "@keystone-next/keystone": "^27.0.0", "dotenv": "^10.0.0", "next": "^11.1.0", "react": "^17.0.2", diff --git a/examples-staging/graphql-api-endpoint/CHANGELOG.md b/examples-staging/graphql-api-endpoint/CHANGELOG.md index b037dc7728a..1ce56d28c59 100644 --- a/examples-staging/graphql-api-endpoint/CHANGELOG.md +++ b/examples-staging/graphql-api-endpoint/CHANGELOG.md @@ -1,5 +1,14 @@ # keystone-next-app +## 1.0.10 + +### Patch Changes + +- Updated dependencies [[`f38772b27`](https://github.com/keystonejs/keystone/commit/f38772b27d3e9d157127dabfa40036462c235a9f), [`dcf5241d8`](https://github.com/keystonejs/keystone/commit/dcf5241d8e3e62b080842a5d4bfd47a7f2cce5ca)]: + - @keystone-next/keystone@27.0.0 + - @keystone-next/auth@35.0.0 + - @keystone-next/fields-document@12.0.0 + ## 1.0.9 ### Patch Changes diff --git a/examples-staging/graphql-api-endpoint/package.json b/examples-staging/graphql-api-endpoint/package.json index 7e53ac6ce0c..c6c3114e013 100644 --- a/examples-staging/graphql-api-endpoint/package.json +++ b/examples-staging/graphql-api-endpoint/package.json @@ -1,6 +1,6 @@ { "name": "keystone-next-app", - "version": "1.0.9", + "version": "1.0.10", "private": true, "scripts": { "dev": "keystone-next dev", @@ -12,9 +12,9 @@ }, "dependencies": { "@babel/runtime": "^7.15.4", - "@keystone-next/auth": "^34.0.0", - "@keystone-next/fields-document": "^11.0.0", - "@keystone-next/keystone": "^26.1.0" + "@keystone-next/auth": "^35.0.0", + "@keystone-next/fields-document": "^12.0.0", + "@keystone-next/keystone": "^27.0.0" }, "repository": "https://github.com/keystonejs/keystone/tree/main/examples-staging/graphql-api-endpoint" } diff --git a/examples-staging/roles/CHANGELOG.md b/examples-staging/roles/CHANGELOG.md index 33895fc4950..34ab567c537 100644 --- a/examples-staging/roles/CHANGELOG.md +++ b/examples-staging/roles/CHANGELOG.md @@ -1,5 +1,13 @@ # @keystone-next/example-roles +## 4.0.10 + +### Patch Changes + +- Updated dependencies [[`f38772b27`](https://github.com/keystonejs/keystone/commit/f38772b27d3e9d157127dabfa40036462c235a9f), [`dcf5241d8`](https://github.com/keystonejs/keystone/commit/dcf5241d8e3e62b080842a5d4bfd47a7f2cce5ca)]: + - @keystone-next/keystone@27.0.0 + - @keystone-next/auth@35.0.0 + ## 4.0.9 ### Patch Changes diff --git a/examples-staging/roles/package.json b/examples-staging/roles/package.json index 8fd0c665918..3f8a376dda5 100644 --- a/examples-staging/roles/package.json +++ b/examples-staging/roles/package.json @@ -1,6 +1,6 @@ { "name": "@keystone-next/example-roles", - "version": "4.0.9", + "version": "4.0.10", "private": true, "license": "MIT", "scripts": { @@ -9,8 +9,8 @@ "build": "keystone-next build" }, "dependencies": { - "@keystone-next/auth": "^34.0.0", - "@keystone-next/keystone": "^26.1.0", + "@keystone-next/auth": "^35.0.0", + "@keystone-next/keystone": "^27.0.0", "next": "^11.1.0", "react": "^17.0.2", "react-dom": "^17.0.2" diff --git a/examples-staging/sandbox/CHANGELOG.md b/examples-staging/sandbox/CHANGELOG.md index 903dd8afbea..f1acc5f28d2 100644 --- a/examples-staging/sandbox/CHANGELOG.md +++ b/examples-staging/sandbox/CHANGELOG.md @@ -1,5 +1,13 @@ # @keystone-next/example-sandbox +## 3.0.10 + +### Patch Changes + +- Updated dependencies [[`f38772b27`](https://github.com/keystonejs/keystone/commit/f38772b27d3e9d157127dabfa40036462c235a9f), [`dcf5241d8`](https://github.com/keystonejs/keystone/commit/dcf5241d8e3e62b080842a5d4bfd47a7f2cce5ca)]: + - @keystone-next/keystone@27.0.0 + - @keystone-next/auth@35.0.0 + ## 3.0.9 ### Patch Changes diff --git a/examples-staging/sandbox/package.json b/examples-staging/sandbox/package.json index 3e7c466292a..39f97c17b61 100644 --- a/examples-staging/sandbox/package.json +++ b/examples-staging/sandbox/package.json @@ -1,6 +1,6 @@ { "name": "@keystone-next/example-sandbox", - "version": "3.0.9", + "version": "3.0.10", "private": true, "license": "MIT", "scripts": { @@ -8,8 +8,8 @@ "sandbox": "yarn && yarn dev" }, "dependencies": { - "@keystone-next/auth": "^34.0.0", - "@keystone-next/keystone": "^26.1.0" + "@keystone-next/auth": "^35.0.0", + "@keystone-next/keystone": "^27.0.0" }, "engines": { "node": "^12.20 || >= 14.13" diff --git a/examples/blog/CHANGELOG.md b/examples/blog/CHANGELOG.md index 44aa4b5cee2..1c22d897fd1 100644 --- a/examples/blog/CHANGELOG.md +++ b/examples/blog/CHANGELOG.md @@ -1,5 +1,12 @@ # @keystone-next/example-blog +## 2.0.10 + +### Patch Changes + +- Updated dependencies [[`f38772b27`](https://github.com/keystonejs/keystone/commit/f38772b27d3e9d157127dabfa40036462c235a9f), [`dcf5241d8`](https://github.com/keystonejs/keystone/commit/dcf5241d8e3e62b080842a5d4bfd47a7f2cce5ca)]: + - @keystone-next/keystone@27.0.0 + ## 2.0.9 ### Patch Changes diff --git a/examples/blog/package.json b/examples/blog/package.json index 8988acf38ac..1d3f1a6efa8 100644 --- a/examples/blog/package.json +++ b/examples/blog/package.json @@ -1,6 +1,6 @@ { "name": "@keystone-next/example-blog", - "version": "2.0.9", + "version": "2.0.10", "private": true, "license": "MIT", "scripts": { @@ -10,7 +10,7 @@ "seed-data": "keystone-next --seed-data" }, "dependencies": { - "@keystone-next/keystone": "^26.1.0" + "@keystone-next/keystone": "^27.0.0" }, "devDependencies": { "typescript": "^4.4.3" diff --git a/examples/custom-admin-ui-logo/CHANGELOG.md b/examples/custom-admin-ui-logo/CHANGELOG.md index 2ad534494a1..d67128ae7e8 100644 --- a/examples/custom-admin-ui-logo/CHANGELOG.md +++ b/examples/custom-admin-ui-logo/CHANGELOG.md @@ -1,5 +1,12 @@ # @keystone-next/example-custom-admin-ui-logo +## 1.0.5 + +### Patch Changes + +- Updated dependencies [[`f38772b27`](https://github.com/keystonejs/keystone/commit/f38772b27d3e9d157127dabfa40036462c235a9f), [`dcf5241d8`](https://github.com/keystonejs/keystone/commit/dcf5241d8e3e62b080842a5d4bfd47a7f2cce5ca)]: + - @keystone-next/keystone@27.0.0 + ## 1.0.4 ### Patch Changes diff --git a/examples/custom-admin-ui-logo/package.json b/examples/custom-admin-ui-logo/package.json index 8b8ffea8dd6..91eaaa8edf0 100644 --- a/examples/custom-admin-ui-logo/package.json +++ b/examples/custom-admin-ui-logo/package.json @@ -1,6 +1,6 @@ { "name": "@keystone-next/example-custom-admin-ui-logo", - "version": "1.0.4", + "version": "1.0.5", "private": true, "license": "MIT", "scripts": { @@ -9,7 +9,7 @@ "build": "keystone-next build" }, "dependencies": { - "@keystone-next/keystone": "^26.1.0", + "@keystone-next/keystone": "^27.0.0", "@keystone-ui/core": "^3.2.1", "next": "^11.1.0", "react": "^17.0.2" diff --git a/examples/custom-admin-ui-navigation/CHANGELOG.md b/examples/custom-admin-ui-navigation/CHANGELOG.md index a8e9fc92bfc..8ec1b14e684 100644 --- a/examples/custom-admin-ui-navigation/CHANGELOG.md +++ b/examples/custom-admin-ui-navigation/CHANGELOG.md @@ -1,5 +1,12 @@ # @keystone-next/example-custom-navigation-component +## 5.0.4 + +### Patch Changes + +- Updated dependencies [[`f38772b27`](https://github.com/keystonejs/keystone/commit/f38772b27d3e9d157127dabfa40036462c235a9f), [`dcf5241d8`](https://github.com/keystonejs/keystone/commit/dcf5241d8e3e62b080842a5d4bfd47a7f2cce5ca)]: + - @keystone-next/keystone@27.0.0 + ## 5.0.3 ### Patch Changes diff --git a/examples/custom-admin-ui-navigation/package.json b/examples/custom-admin-ui-navigation/package.json index fccd8e8e488..bcde412a595 100644 --- a/examples/custom-admin-ui-navigation/package.json +++ b/examples/custom-admin-ui-navigation/package.json @@ -1,6 +1,6 @@ { "name": "@keystone-next/example-custom-admin-ui-navigation", - "version": "5.0.3", + "version": "5.0.4", "private": true, "license": "MIT", "scripts": { @@ -9,7 +9,7 @@ "build": "keystone-next build" }, "dependencies": { - "@keystone-next/keystone": "^26.1.0", + "@keystone-next/keystone": "^27.0.0", "react": "^17.0.2" }, "devDependencies": { diff --git a/examples/custom-admin-ui-pages/CHANGELOG.md b/examples/custom-admin-ui-pages/CHANGELOG.md index f8d0e6dda0d..91c7f93755d 100644 --- a/examples/custom-admin-ui-pages/CHANGELOG.md +++ b/examples/custom-admin-ui-pages/CHANGELOG.md @@ -1,5 +1,12 @@ # @keystone-next/example-custom-admin-ui-pages +## 1.0.4 + +### Patch Changes + +- Updated dependencies [[`f38772b27`](https://github.com/keystonejs/keystone/commit/f38772b27d3e9d157127dabfa40036462c235a9f), [`dcf5241d8`](https://github.com/keystonejs/keystone/commit/dcf5241d8e3e62b080842a5d4bfd47a7f2cce5ca)]: + - @keystone-next/keystone@27.0.0 + ## 1.0.3 ### Patch Changes diff --git a/examples/custom-admin-ui-pages/package.json b/examples/custom-admin-ui-pages/package.json index eb19ab0a801..f37516eb3df 100644 --- a/examples/custom-admin-ui-pages/package.json +++ b/examples/custom-admin-ui-pages/package.json @@ -1,6 +1,6 @@ { "name": "@keystone-next/example-custom-admin-ui-pages", - "version": "1.0.3", + "version": "1.0.4", "private": true, "license": "MIT", "scripts": { @@ -9,7 +9,7 @@ "build": "keystone-next build" }, "dependencies": { - "@keystone-next/keystone": "^26.1.0", + "@keystone-next/keystone": "^27.0.0", "@keystone-ui/core": "^3.2.1", "react": "^17.0.2" }, diff --git a/examples/custom-field-view/CHANGELOG.md b/examples/custom-field-view/CHANGELOG.md index 675da56bbf9..caa8223f399 100644 --- a/examples/custom-field-view/CHANGELOG.md +++ b/examples/custom-field-view/CHANGELOG.md @@ -1,5 +1,12 @@ # @keystone-next/example-custom-field-view +## 1.0.6 + +### Patch Changes + +- Updated dependencies [[`f38772b27`](https://github.com/keystonejs/keystone/commit/f38772b27d3e9d157127dabfa40036462c235a9f), [`dcf5241d8`](https://github.com/keystonejs/keystone/commit/dcf5241d8e3e62b080842a5d4bfd47a7f2cce5ca)]: + - @keystone-next/keystone@27.0.0 + ## 1.0.5 ### Patch Changes diff --git a/examples/custom-field-view/package.json b/examples/custom-field-view/package.json index 084e4e3aae0..d8263c00917 100644 --- a/examples/custom-field-view/package.json +++ b/examples/custom-field-view/package.json @@ -1,6 +1,6 @@ { "name": "@keystone-next/example-custom-field-view", - "version": "1.0.5", + "version": "1.0.6", "private": true, "license": "MIT", "scripts": { @@ -10,7 +10,7 @@ }, "dependencies": { "@emotion/css": "^11.1.3", - "@keystone-next/keystone": "^26.1.0", + "@keystone-next/keystone": "^27.0.0", "@keystone-ui/button": "^5.0.2", "@keystone-ui/core": "^3.2.1", "@keystone-ui/fields": "^5.0.1", diff --git a/examples/custom-field/CHANGELOG.md b/examples/custom-field/CHANGELOG.md index e5c2c919810..b9f49cbfcaf 100644 --- a/examples/custom-field/CHANGELOG.md +++ b/examples/custom-field/CHANGELOG.md @@ -1,5 +1,12 @@ # @keystone-next/example-custom-field +## 0.0.7 + +### Patch Changes + +- Updated dependencies [[`f38772b27`](https://github.com/keystonejs/keystone/commit/f38772b27d3e9d157127dabfa40036462c235a9f), [`dcf5241d8`](https://github.com/keystonejs/keystone/commit/dcf5241d8e3e62b080842a5d4bfd47a7f2cce5ca)]: + - @keystone-next/keystone@27.0.0 + ## 0.0.6 ### Patch Changes diff --git a/examples/custom-field/package.json b/examples/custom-field/package.json index 9008b729136..80baa989a9e 100644 --- a/examples/custom-field/package.json +++ b/examples/custom-field/package.json @@ -1,6 +1,6 @@ { "name": "@keystone-next/example-custom-field", - "version": "0.0.6", + "version": "0.0.7", "private": true, "license": "MIT", "scripts": { @@ -9,7 +9,7 @@ "build": "keystone-next build" }, "dependencies": { - "@keystone-next/keystone": "^26.1.0", + "@keystone-next/keystone": "^27.0.0", "@keystone-ui/fields": "^5.0.1", "react": "^17.0.2" }, diff --git a/examples/default-values/CHANGELOG.md b/examples/default-values/CHANGELOG.md index 487abef30af..638455f1bd1 100644 --- a/examples/default-values/CHANGELOG.md +++ b/examples/default-values/CHANGELOG.md @@ -1,5 +1,12 @@ # @keystone-next/example-default-values +## 1.0.10 + +### Patch Changes + +- Updated dependencies [[`f38772b27`](https://github.com/keystonejs/keystone/commit/f38772b27d3e9d157127dabfa40036462c235a9f), [`dcf5241d8`](https://github.com/keystonejs/keystone/commit/dcf5241d8e3e62b080842a5d4bfd47a7f2cce5ca)]: + - @keystone-next/keystone@27.0.0 + ## 1.0.9 ### Patch Changes diff --git a/examples/default-values/package.json b/examples/default-values/package.json index 07fbf4db745..cc7e97624c3 100644 --- a/examples/default-values/package.json +++ b/examples/default-values/package.json @@ -1,6 +1,6 @@ { "name": "@keystone-next/example-default-values", - "version": "1.0.9", + "version": "1.0.10", "private": true, "license": "MIT", "scripts": { @@ -9,7 +9,7 @@ "build": "keystone-next build" }, "dependencies": { - "@keystone-next/keystone": "^26.1.0" + "@keystone-next/keystone": "^27.0.0" }, "devDependencies": { "typescript": "^4.4.3" diff --git a/examples/document-field/CHANGELOG.md b/examples/document-field/CHANGELOG.md index c7501021731..c983a2715e6 100644 --- a/examples/document-field/CHANGELOG.md +++ b/examples/document-field/CHANGELOG.md @@ -1,5 +1,13 @@ # @keystone-next/example-document-field +## 1.1.6 + +### Patch Changes + +- Updated dependencies [[`f38772b27`](https://github.com/keystonejs/keystone/commit/f38772b27d3e9d157127dabfa40036462c235a9f), [`dcf5241d8`](https://github.com/keystonejs/keystone/commit/dcf5241d8e3e62b080842a5d4bfd47a7f2cce5ca)]: + - @keystone-next/keystone@27.0.0 + - @keystone-next/fields-document@12.0.0 + ## 1.1.5 ### Patch Changes diff --git a/examples/document-field/package.json b/examples/document-field/package.json index 40219b7098b..2d7a83fea1a 100644 --- a/examples/document-field/package.json +++ b/examples/document-field/package.json @@ -1,6 +1,6 @@ { "name": "@keystone-next/example-document-field", - "version": "1.1.5", + "version": "1.1.6", "private": true, "license": "MIT", "scripts": { @@ -11,8 +11,8 @@ }, "dependencies": { "@keystone-next/document-renderer": "^4.0.1", - "@keystone-next/fields-document": "^11.0.0", - "@keystone-next/keystone": "^26.1.0", + "@keystone-next/fields-document": "^12.0.0", + "@keystone-next/keystone": "^27.0.0", "@preconstruct/next": "^3.0.0", "next": "^11.1.0", "react": "^17.0.2" diff --git a/examples/extend-graphql-schema/CHANGELOG.md b/examples/extend-graphql-schema/CHANGELOG.md index 2d38af0ebc9..5d27b86efed 100644 --- a/examples/extend-graphql-schema/CHANGELOG.md +++ b/examples/extend-graphql-schema/CHANGELOG.md @@ -1,5 +1,12 @@ # @keystone-next/example-extend-graphql-schema +## 1.0.10 + +### Patch Changes + +- Updated dependencies [[`f38772b27`](https://github.com/keystonejs/keystone/commit/f38772b27d3e9d157127dabfa40036462c235a9f), [`dcf5241d8`](https://github.com/keystonejs/keystone/commit/dcf5241d8e3e62b080842a5d4bfd47a7f2cce5ca)]: + - @keystone-next/keystone@27.0.0 + ## 1.0.9 ### Patch Changes diff --git a/examples/extend-graphql-schema/package.json b/examples/extend-graphql-schema/package.json index 6d6bd4cfadd..38e6a4a86a9 100644 --- a/examples/extend-graphql-schema/package.json +++ b/examples/extend-graphql-schema/package.json @@ -1,6 +1,6 @@ { "name": "@keystone-next/example-extend-graphql-schema", - "version": "1.0.9", + "version": "1.0.10", "private": true, "license": "MIT", "scripts": { @@ -9,7 +9,7 @@ "build": "keystone-next build" }, "dependencies": { - "@keystone-next/keystone": "^26.1.0" + "@keystone-next/keystone": "^27.0.0" }, "devDependencies": { "typescript": "^4.4.3" diff --git a/examples/json/CHANGELOG.md b/examples/json/CHANGELOG.md index e6a194e6529..e2376c9cc04 100644 --- a/examples/json/CHANGELOG.md +++ b/examples/json/CHANGELOG.md @@ -1,5 +1,12 @@ # @keystone-next/example-json +## 4.0.11 + +### Patch Changes + +- Updated dependencies [[`f38772b27`](https://github.com/keystonejs/keystone/commit/f38772b27d3e9d157127dabfa40036462c235a9f), [`dcf5241d8`](https://github.com/keystonejs/keystone/commit/dcf5241d8e3e62b080842a5d4bfd47a7f2cce5ca)]: + - @keystone-next/keystone@27.0.0 + ## 4.0.10 ### Patch Changes diff --git a/examples/json/package.json b/examples/json/package.json index ab0c01b37d3..7531e833166 100644 --- a/examples/json/package.json +++ b/examples/json/package.json @@ -1,6 +1,6 @@ { "name": "@keystone-next/example-json-field", - "version": "4.0.10", + "version": "4.0.11", "private": true, "license": "MIT", "scripts": { @@ -9,7 +9,7 @@ "build": "keystone-next build" }, "dependencies": { - "@keystone-next/keystone": "^26.1.0" + "@keystone-next/keystone": "^27.0.0" }, "devDependencies": { "typescript": "^4.4.3" diff --git a/examples/rest-api/CHANGELOG.md b/examples/rest-api/CHANGELOG.md index 48bcd1018f5..7a7c6a4d717 100644 --- a/examples/rest-api/CHANGELOG.md +++ b/examples/rest-api/CHANGELOG.md @@ -1,5 +1,12 @@ # @keystone-next/example-rest-api +## 1.0.2 + +### Patch Changes + +- Updated dependencies [[`f38772b27`](https://github.com/keystonejs/keystone/commit/f38772b27d3e9d157127dabfa40036462c235a9f), [`dcf5241d8`](https://github.com/keystonejs/keystone/commit/dcf5241d8e3e62b080842a5d4bfd47a7f2cce5ca)]: + - @keystone-next/keystone@27.0.0 + ## 1.0.1 ### Patch Changes diff --git a/examples/rest-api/package.json b/examples/rest-api/package.json index c3017bffce4..a8394b75bac 100644 --- a/examples/rest-api/package.json +++ b/examples/rest-api/package.json @@ -1,6 +1,6 @@ { "name": "@keystone-next/example-rest-api", - "version": "1.0.1", + "version": "1.0.2", "private": true, "license": "MIT", "scripts": { @@ -10,7 +10,7 @@ "seed-data": "keystone-next --seed-data" }, "dependencies": { - "@keystone-next/keystone": "^26.1.0", + "@keystone-next/keystone": "^27.0.0", "express": "^4.17.1" }, "devDependencies": { diff --git a/examples/task-manager/CHANGELOG.md b/examples/task-manager/CHANGELOG.md index 275f7309b63..ae06e077d3b 100644 --- a/examples/task-manager/CHANGELOG.md +++ b/examples/task-manager/CHANGELOG.md @@ -1,5 +1,12 @@ # @keystone-next/example-task-manager +## 4.0.10 + +### Patch Changes + +- Updated dependencies [[`f38772b27`](https://github.com/keystonejs/keystone/commit/f38772b27d3e9d157127dabfa40036462c235a9f), [`dcf5241d8`](https://github.com/keystonejs/keystone/commit/dcf5241d8e3e62b080842a5d4bfd47a7f2cce5ca)]: + - @keystone-next/keystone@27.0.0 + ## 4.0.9 ### Patch Changes diff --git a/examples/task-manager/package.json b/examples/task-manager/package.json index 0ad6e8a4c56..11cb0d8394a 100644 --- a/examples/task-manager/package.json +++ b/examples/task-manager/package.json @@ -1,6 +1,6 @@ { "name": "@keystone-next/example-task-manager", - "version": "4.0.9", + "version": "4.0.10", "private": true, "license": "MIT", "scripts": { @@ -10,7 +10,7 @@ "seed-data": "keystone-next --seed-data" }, "dependencies": { - "@keystone-next/keystone": "^26.1.0" + "@keystone-next/keystone": "^27.0.0" }, "devDependencies": { "typescript": "^4.4.3" diff --git a/examples/testing/CHANGELOG.md b/examples/testing/CHANGELOG.md index 3efd406dd8b..6d57a3a822d 100644 --- a/examples/testing/CHANGELOG.md +++ b/examples/testing/CHANGELOG.md @@ -1,5 +1,13 @@ # @keystone-next/example-testing +## 0.0.10 + +### Patch Changes + +- Updated dependencies [[`f38772b27`](https://github.com/keystonejs/keystone/commit/f38772b27d3e9d157127dabfa40036462c235a9f), [`dcf5241d8`](https://github.com/keystonejs/keystone/commit/dcf5241d8e3e62b080842a5d4bfd47a7f2cce5ca)]: + - @keystone-next/keystone@27.0.0 + - @keystone-next/auth@35.0.0 + ## 0.0.9 ### Patch Changes diff --git a/examples/testing/package.json b/examples/testing/package.json index 55fb848e467..b8980450e2d 100644 --- a/examples/testing/package.json +++ b/examples/testing/package.json @@ -1,6 +1,6 @@ { "name": "@keystone-next/example-testing", - "version": "0.0.9", + "version": "0.0.10", "private": true, "license": "MIT", "scripts": { @@ -13,8 +13,8 @@ "@babel/core": "^7.15.8", "@babel/preset-env": "^7.15.8", "@babel/preset-typescript": "^7.15.0", - "@keystone-next/auth": "^34.0.0", - "@keystone-next/keystone": "^26.1.0" + "@keystone-next/auth": "^35.0.0", + "@keystone-next/keystone": "^27.0.0" }, "devDependencies": { "babel-jest": "^27.2.5", diff --git a/examples/virtual-field/CHANGELOG.md b/examples/virtual-field/CHANGELOG.md index 295fa9f72f4..22e1a06238d 100644 --- a/examples/virtual-field/CHANGELOG.md +++ b/examples/virtual-field/CHANGELOG.md @@ -1,5 +1,12 @@ # @keystone-next/example-virtual-field +## 0.1.8 + +### Patch Changes + +- Updated dependencies [[`f38772b27`](https://github.com/keystonejs/keystone/commit/f38772b27d3e9d157127dabfa40036462c235a9f), [`dcf5241d8`](https://github.com/keystonejs/keystone/commit/dcf5241d8e3e62b080842a5d4bfd47a7f2cce5ca)]: + - @keystone-next/keystone@27.0.0 + ## 0.1.7 ### Patch Changes diff --git a/examples/virtual-field/package.json b/examples/virtual-field/package.json index 0ee2fdd7f00..8bab702385d 100644 --- a/examples/virtual-field/package.json +++ b/examples/virtual-field/package.json @@ -1,6 +1,6 @@ { "name": "@keystone-next/example-virtual-field", - "version": "0.1.7", + "version": "0.1.8", "private": true, "license": "MIT", "scripts": { @@ -9,7 +9,7 @@ "build": "keystone-next build" }, "dependencies": { - "@keystone-next/keystone": "^26.1.0" + "@keystone-next/keystone": "^27.0.0" }, "devDependencies": { "typescript": "^4.4.3" diff --git a/examples/with-auth/CHANGELOG.md b/examples/with-auth/CHANGELOG.md index 280ad2dc785..f8d4cc6d17b 100644 --- a/examples/with-auth/CHANGELOG.md +++ b/examples/with-auth/CHANGELOG.md @@ -1,5 +1,13 @@ # @keystone-next/example-with-auth +## 2.0.11 + +### Patch Changes + +- Updated dependencies [[`f38772b27`](https://github.com/keystonejs/keystone/commit/f38772b27d3e9d157127dabfa40036462c235a9f), [`dcf5241d8`](https://github.com/keystonejs/keystone/commit/dcf5241d8e3e62b080842a5d4bfd47a7f2cce5ca)]: + - @keystone-next/keystone@27.0.0 + - @keystone-next/auth@35.0.0 + ## 2.0.10 ### Patch Changes diff --git a/examples/with-auth/package.json b/examples/with-auth/package.json index 31878d53399..0deb2adf506 100644 --- a/examples/with-auth/package.json +++ b/examples/with-auth/package.json @@ -1,6 +1,6 @@ { "name": "@keystone-next/example-with-auth", - "version": "2.0.10", + "version": "2.0.11", "private": true, "license": "MIT", "scripts": { @@ -9,8 +9,8 @@ "build": "keystone-next build" }, "dependencies": { - "@keystone-next/auth": "^34.0.0", - "@keystone-next/keystone": "^26.1.0" + "@keystone-next/auth": "^35.0.0", + "@keystone-next/keystone": "^27.0.0" }, "devDependencies": { "typescript": "^4.4.3" diff --git a/packages/auth/CHANGELOG.md b/packages/auth/CHANGELOG.md index a93ba5bea71..29f4c670289 100644 --- a/packages/auth/CHANGELOG.md +++ b/packages/auth/CHANGELOG.md @@ -1,5 +1,12 @@ # @keystone-next/auth +## 35.0.0 + +### Patch Changes + +- Updated dependencies [[`f38772b27`](https://github.com/keystonejs/keystone/commit/f38772b27d3e9d157127dabfa40036462c235a9f), [`dcf5241d8`](https://github.com/keystonejs/keystone/commit/dcf5241d8e3e62b080842a5d4bfd47a7f2cce5ca)]: + - @keystone-next/keystone@27.0.0 + ## 34.0.0 ### Patch Changes diff --git a/packages/auth/package.json b/packages/auth/package.json index 89c82ce3b35..7560ecc5b34 100644 --- a/packages/auth/package.json +++ b/packages/auth/package.json @@ -1,6 +1,6 @@ { "name": "@keystone-next/auth", - "version": "34.0.0", + "version": "35.0.0", "license": "MIT", "main": "dist/keystone-next-auth.cjs.js", "module": "dist/keystone-next-auth.esm.js", @@ -19,11 +19,11 @@ "graphql": "^15.6.1" }, "devDependencies": { - "@keystone-next/keystone": "^26.1.0", + "@keystone-next/keystone": "^27.0.0", "react": "^17.0.2" }, "peerDependencies": { - "@keystone-next/keystone": "^26.1.0", + "@keystone-next/keystone": "^27.0.0", "react": "^17.0.2" }, "preconstruct": { diff --git a/packages/cloudinary/CHANGELOG.md b/packages/cloudinary/CHANGELOG.md index 10a06ebe829..dc7bd550a46 100644 --- a/packages/cloudinary/CHANGELOG.md +++ b/packages/cloudinary/CHANGELOG.md @@ -1,5 +1,12 @@ # @keystone-next/cloudinary +## 10.0.0 + +### Patch Changes + +- Updated dependencies [[`f38772b27`](https://github.com/keystonejs/keystone/commit/f38772b27d3e9d157127dabfa40036462c235a9f), [`dcf5241d8`](https://github.com/keystonejs/keystone/commit/dcf5241d8e3e62b080842a5d4bfd47a7f2cce5ca)]: + - @keystone-next/keystone@27.0.0 + ## 9.0.0 ### Patch Changes diff --git a/packages/cloudinary/package.json b/packages/cloudinary/package.json index a6eeeb7dcf6..b66744ddc37 100644 --- a/packages/cloudinary/package.json +++ b/packages/cloudinary/package.json @@ -1,6 +1,6 @@ { "name": "@keystone-next/cloudinary", - "version": "9.0.0", + "version": "10.0.0", "license": "MIT", "main": "dist/keystone-next-cloudinary.cjs.js", "module": "dist/keystone-next-cloudinary.esm.js", @@ -17,10 +17,10 @@ "react": "^17.0.2" }, "peerDependencies": { - "@keystone-next/keystone": "^26.1.0" + "@keystone-next/keystone": "^27.0.0" }, "devDependencies": { - "@keystone-next/keystone": "^26.1.0", + "@keystone-next/keystone": "^27.0.0", "mime": "^2.5.2" }, "engines": { diff --git a/packages/fields-document/CHANGELOG.md b/packages/fields-document/CHANGELOG.md index a962ee001b2..d80ca143609 100644 --- a/packages/fields-document/CHANGELOG.md +++ b/packages/fields-document/CHANGELOG.md @@ -1,5 +1,12 @@ # @keystone-next/fields-document +## 12.0.0 + +### Patch Changes + +- Updated dependencies [[`f38772b27`](https://github.com/keystonejs/keystone/commit/f38772b27d3e9d157127dabfa40036462c235a9f), [`dcf5241d8`](https://github.com/keystonejs/keystone/commit/dcf5241d8e3e62b080842a5d4bfd47a7f2cce5ca)]: + - @keystone-next/keystone@27.0.0 + ## 11.0.0 ### Patch Changes diff --git a/packages/fields-document/package.json b/packages/fields-document/package.json index eb5497b6bc2..e990bce5aa1 100644 --- a/packages/fields-document/package.json +++ b/packages/fields-document/package.json @@ -1,7 +1,7 @@ { "name": "@keystone-next/fields-document", "description": "KeystoneJS Document Field Type", - "version": "11.0.0", + "version": "12.0.0", "main": "dist/keystone-next-fields-document.cjs.js", "module": "dist/keystone-next-fields-document.esm.js", "files": [ @@ -19,7 +19,7 @@ ] }, "peerDependencies": { - "@keystone-next/keystone": "^26.1.0" + "@keystone-next/keystone": "^27.0.0" }, "dependencies": { "@babel/runtime": "^7.15.4", diff --git a/packages/keystone/CHANGELOG.md b/packages/keystone/CHANGELOG.md index 1f64751528f..d96b7e86a75 100644 --- a/packages/keystone/CHANGELOG.md +++ b/packages/keystone/CHANGELOG.md @@ -1,5 +1,15 @@ # @keystone-next/keystone +## 27.0.0 + +### Major Changes + +- [#6755](https://github.com/keystonejs/keystone/pull/6755) [`dcf5241d8`](https://github.com/keystonejs/keystone/commit/dcf5241d8e3e62b080842a5d4bfd47a7f2cce5ca) Thanks [@mitchellhamilton](https://github.com/mitchellhamilton)! - Updated the way the `endSession` field on the `Mutation` type and the `keystone` field on the `Query` type are added to the GraphQL schema. This may result in re-ordering in your generated `schema.graphql` file. The `sessionSchema` export of `@keystone-next/keystone/session` has also been removed. + +### Patch Changes + +- [#6758](https://github.com/keystonejs/keystone/pull/6758) [`f38772b27`](https://github.com/keystonejs/keystone/commit/f38772b27d3e9d157127dabfa40036462c235a9f) Thanks [@mitchellhamilton](https://github.com/mitchellhamilton)! - Fixed `text`, `integer`, `float` and `decimal` on the item view when using `ui.itemView.fieldMode: 'read'`. + ## 26.1.0 ### Minor Changes diff --git a/packages/keystone/package.json b/packages/keystone/package.json index 27161ce8c2d..e922ade6b0f 100644 --- a/packages/keystone/package.json +++ b/packages/keystone/package.json @@ -1,6 +1,6 @@ { "name": "@keystone-next/keystone", - "version": "26.1.0", + "version": "27.0.0", "license": "MIT", "main": "dist/keystone-next-keystone.cjs.js", "module": "dist/keystone-next-keystone.esm.js", diff --git a/packages/session-store-redis/CHANGELOG.md b/packages/session-store-redis/CHANGELOG.md index 08bea83be7f..20ca274930f 100644 --- a/packages/session-store-redis/CHANGELOG.md +++ b/packages/session-store-redis/CHANGELOG.md @@ -1,5 +1,12 @@ # @keystone-next/session-store-redis +## 7.0.0 + +### Patch Changes + +- Updated dependencies [[`f38772b27`](https://github.com/keystonejs/keystone/commit/f38772b27d3e9d157127dabfa40036462c235a9f), [`dcf5241d8`](https://github.com/keystonejs/keystone/commit/dcf5241d8e3e62b080842a5d4bfd47a7f2cce5ca)]: + - @keystone-next/keystone@27.0.0 + ## 6.0.0 ### Patch Changes diff --git a/packages/session-store-redis/package.json b/packages/session-store-redis/package.json index 3aea6999f06..02a2041a9c2 100644 --- a/packages/session-store-redis/package.json +++ b/packages/session-store-redis/package.json @@ -1,6 +1,6 @@ { "name": "@keystone-next/session-store-redis", - "version": "6.0.0", + "version": "7.0.0", "license": "MIT", "main": "dist/keystone-next-session-store-redis.cjs.js", "module": "dist/keystone-next-session-store-redis.esm.js", @@ -12,10 +12,10 @@ "@types/redis": "^2.8.32" }, "peerDependencies": { - "@keystone-next/keystone": "^26.1.0" + "@keystone-next/keystone": "^27.0.0" }, "devDependencies": { - "@keystone-next/keystone": "^26.1.0", + "@keystone-next/keystone": "^27.0.0", "redis": "^3.1.2" }, "repository": "https://github.com/keystonejs/keystone/tree/main/packages/session-store-redis" diff --git a/tests/benchmarks/CHANGELOG.md b/tests/benchmarks/CHANGELOG.md index c50f91c4cc1..a07ba9402b8 100644 --- a/tests/benchmarks/CHANGELOG.md +++ b/tests/benchmarks/CHANGELOG.md @@ -1,5 +1,12 @@ # @keystonejs/benchmarks +## 7.0.11 + +### Patch Changes + +- Updated dependencies [[`f38772b27`](https://github.com/keystonejs/keystone/commit/f38772b27d3e9d157127dabfa40036462c235a9f), [`dcf5241d8`](https://github.com/keystonejs/keystone/commit/dcf5241d8e3e62b080842a5d4bfd47a7f2cce5ca)]: + - @keystone-next/keystone@27.0.0 + ## 7.0.10 ### Patch Changes diff --git a/tests/benchmarks/package.json b/tests/benchmarks/package.json index 8119cfe260a..272f9923b5f 100644 --- a/tests/benchmarks/package.json +++ b/tests/benchmarks/package.json @@ -2,7 +2,7 @@ "name": "@keystone-next/benchmarks-legacy", "description": "A set of benchmarks for running against the KeystoneJS API.", "private": true, - "version": "7.0.10", + "version": "7.0.11", "author": "The KeystoneJS Development Team", "license": "MIT", "engines": { @@ -14,7 +14,7 @@ "repository": "https://github.com/keystonejs/keystone/tree/main/tests/benchmarks", "homepage": "https://github.com/keystonejs/keystone", "dependencies": { - "@keystone-next/keystone": "^26.1.0", + "@keystone-next/keystone": "^27.0.0", "cookie-signature": "^1.1.0", "testcheck": "^1.0.0-rc.2" } diff --git a/tests/test-projects/basic/CHANGELOG.md b/tests/test-projects/basic/CHANGELOG.md index 7083927a3ad..01ce312d70e 100644 --- a/tests/test-projects/basic/CHANGELOG.md +++ b/tests/test-projects/basic/CHANGELOG.md @@ -1,5 +1,12 @@ # @keystone-next/test-projects-basic +## 0.0.7 + +### Patch Changes + +- Updated dependencies [[`f38772b27`](https://github.com/keystonejs/keystone/commit/f38772b27d3e9d157127dabfa40036462c235a9f), [`dcf5241d8`](https://github.com/keystonejs/keystone/commit/dcf5241d8e3e62b080842a5d4bfd47a7f2cce5ca)]: + - @keystone-next/keystone@27.0.0 + ## 0.0.6 ### Patch Changes diff --git a/tests/test-projects/basic/package.json b/tests/test-projects/basic/package.json index 1e92c9467a3..754c19ee065 100644 --- a/tests/test-projects/basic/package.json +++ b/tests/test-projects/basic/package.json @@ -1,6 +1,6 @@ { "name": "@keystone-next/test-projects-basic", - "version": "0.0.6", + "version": "0.0.7", "private": true, "license": "MIT", "scripts": { @@ -9,7 +9,7 @@ "build": "keystone-next build" }, "dependencies": { - "@keystone-next/keystone": "^26.1.0" + "@keystone-next/keystone": "^27.0.0" }, "devDependencies": { "typescript": "^4.4.3" diff --git a/tests/test-projects/crud-notifications/CHANGELOG.md b/tests/test-projects/crud-notifications/CHANGELOG.md index 14327b7c5b9..5fc9ffa6021 100644 --- a/tests/test-projects/crud-notifications/CHANGELOG.md +++ b/tests/test-projects/crud-notifications/CHANGELOG.md @@ -1,5 +1,12 @@ # @keystone-next/test-projects-crud-notifications +## 0.0.7 + +### Patch Changes + +- Updated dependencies [[`f38772b27`](https://github.com/keystonejs/keystone/commit/f38772b27d3e9d157127dabfa40036462c235a9f), [`dcf5241d8`](https://github.com/keystonejs/keystone/commit/dcf5241d8e3e62b080842a5d4bfd47a7f2cce5ca)]: + - @keystone-next/keystone@27.0.0 + ## 0.0.6 ### Patch Changes diff --git a/tests/test-projects/crud-notifications/package.json b/tests/test-projects/crud-notifications/package.json index 9e32ab0d92a..72e22e78c0e 100644 --- a/tests/test-projects/crud-notifications/package.json +++ b/tests/test-projects/crud-notifications/package.json @@ -1,6 +1,6 @@ { "name": "@keystone-next/test-projects-crud-notifications", - "version": "0.0.6", + "version": "0.0.7", "private": true, "license": "MIT", "scripts": { @@ -9,7 +9,7 @@ "build": "keystone-next build" }, "dependencies": { - "@keystone-next/keystone": "^26.1.0" + "@keystone-next/keystone": "^27.0.0" }, "devDependencies": { "typescript": "^4.4.3"