diff --git a/.changeset/curly-hounds-melt.md b/.changeset/curly-hounds-melt.md deleted file mode 100644 index 82902170da4..00000000000 --- a/.changeset/curly-hounds-melt.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@arch-ui/pagination': patch ---- - -Redesigned Pagination display. diff --git a/.changeset/friendly-bees-switch.md b/.changeset/friendly-bees-switch.md deleted file mode 100644 index 340bb2c4e82..00000000000 --- a/.changeset/friendly-bees-switch.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -'@keystonejs/benchmarks': patch -'@keystonejs/fields-wysiwyg-tinymce': patch -'@keystonejs/fields': patch -'@keystonejs/test-utils': patch ---- - -Removed `name` argument from calls to `setupServer` in tests. diff --git a/.changeset/hungry-tables-taste.md b/.changeset/hungry-tables-taste.md deleted file mode 100644 index 7372711ff35..00000000000 --- a/.changeset/hungry-tables-taste.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -'@keystonejs/auth-passport': patch ---- - -Fix invalid query result destructuring. -These changes correct the regression introduced by the latest version (`5.2.2`). diff --git a/.changeset/metal-shoes-work.md b/.changeset/metal-shoes-work.md deleted file mode 100644 index 8d6dbcae9bf..00000000000 --- a/.changeset/metal-shoes-work.md +++ /dev/null @@ -1,21 +0,0 @@ ---- -'@keystonejs/api-tests': major ---- - -Removed the `name` argument to `setupServer`. This value will now be autogenerated by the test system. If you would like to use a specific name you can still pass through `{ keystoneOptions: { name: '...' } }` to retain the original behaviour. - -``` -setupServer({ name: 'foo', adapterName, createLists, ... }); -``` - -can now be written as - -``` -setupServer({ adapterName, createLists, ... }) -``` - -or, if you would like the `Keystone` instance to have a specific name, - -``` -setupServer({ adapterName, createLists, keystoneOptions: { name: 'foo' }, ... }) -``` diff --git a/.changeset/popular-suns-move.md b/.changeset/popular-suns-move.md deleted file mode 100644 index 2d091900a86..00000000000 --- a/.changeset/popular-suns-move.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@keystonejs/utils': patch ---- - -Updated doc comments. diff --git a/.changeset/red-months-lay.md b/.changeset/red-months-lay.md deleted file mode 100644 index 8e46d43587d..00000000000 --- a/.changeset/red-months-lay.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@keystonejs/keystone': minor ---- - -Support GraphQL AST input in `executeGraphQL`. This should be created with the `gql` template literal imported from `apollo-server-express`. diff --git a/.changeset/rude-cougars-rescue.md b/.changeset/rude-cougars-rescue.md deleted file mode 100644 index bc925ee300a..00000000000 --- a/.changeset/rude-cougars-rescue.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@keystonejs/session': patch ---- - -Updated express-session to 1.17.1. diff --git a/.changeset/spotty-news-carry.md b/.changeset/spotty-news-carry.md deleted file mode 100644 index 0725f298b14..00000000000 --- a/.changeset/spotty-news-carry.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@keystonejs/fields': patch ---- - -Updated docs for `Virtual` field type to show how to execute server-side GraphQL operations. diff --git a/.changeset/weak-emus-care.md b/.changeset/weak-emus-care.md deleted file mode 100644 index 58654b7ed35..00000000000 --- a/.changeset/weak-emus-care.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@keystonejs/app-graphql': patch ---- - -Updated apollo-server-express dependency to 2.15.1. diff --git a/api-tests/CHANGELOG.md b/api-tests/CHANGELOG.md index a6251f9816c..7b8e4f4bd85 100644 --- a/api-tests/CHANGELOG.md +++ b/api-tests/CHANGELOG.md @@ -1,5 +1,37 @@ # @keystonejs/api-tests +## 6.0.0 + +### Major Changes + +- [`4ddc3dc6f`](https://github.com/keystonejs/keystone/commit/4ddc3dc6f87c192627d00db85a1080411400eeb5) [#3212](https://github.com/keystonejs/keystone/pull/3212) Thanks [@timleslie](https://github.com/timleslie)! - Removed the `name` argument to `setupServer`. This value will now be autogenerated by the test system. If you would like to use a specific name you can still pass through `{ keystoneOptions: { name: '...' } }` to retain the original behaviour. + + ``` + setupServer({ name: 'foo', adapterName, createLists, ... }); + ``` + + can now be written as + + ``` + setupServer({ adapterName, createLists, ... }) + ``` + + or, if you would like the `Keystone` instance to have a specific name, + + ``` + setupServer({ adapterName, createLists, keystoneOptions: { name: 'foo' }, ... }) + ``` + +### Patch Changes + +- Updated dependencies [[`4ddc3dc6f`](https://github.com/keystonejs/keystone/commit/4ddc3dc6f87c192627d00db85a1080411400eeb5), [`69d7f2e50`](https://github.com/keystonejs/keystone/commit/69d7f2e50ef2325c0d3b02b8bb5c310590796fed), [`f296866df`](https://github.com/keystonejs/keystone/commit/f296866dfab3af54381fd527473e3dc98425b3b9), [`2806a0bdf`](https://github.com/keystonejs/keystone/commit/2806a0bdfd65429e7c44ed070983f121d6934955), [`3adb2ac2a`](https://github.com/keystonejs/keystone/commit/3adb2ac2ac4ab65636ffea1b2b1f7044410c2b8b), [`9ab6961e0`](https://github.com/keystonejs/keystone/commit/9ab6961e0202277a980bd60a323a1c599f1dd085)]: + - @keystonejs/fields@13.0.2 + - @keystonejs/test-utils@7.0.1 + - @keystonejs/utils@5.4.2 + - @keystonejs/keystone@11.2.0 + - @keystonejs/session@7.0.1 + - @keystonejs/app-graphql@5.1.9 + ## 5.4.9 ### Patch Changes diff --git a/api-tests/package.json b/api-tests/package.json index 0d25d5e3c98..b4bdf15b246 100644 --- a/api-tests/package.json +++ b/api-tests/package.json @@ -2,7 +2,7 @@ "name": "@keystonejs/api-tests", "description": "A set of tests for running against the KeystoneJS API.", "private": true, - "version": "5.4.9", + "version": "6.0.0", "author": "The KeystoneJS Development Team", "license": "MIT", "engines": { @@ -24,9 +24,9 @@ }, "dependencies": { "@keystonejs/auth-password": "^5.1.10", - "@keystonejs/fields": "^13.0.1", - "@keystonejs/test-utils": "^7.0.0", - "@keystonejs/utils": "^5.4.1", + "@keystonejs/fields": "^13.0.2", + "@keystonejs/test-utils": "^7.0.1", + "@keystonejs/utils": "^5.4.2", "date-fns": "^2.14.0", "express": "^4.17.1" } diff --git a/benchmarks/CHANGELOG.md b/benchmarks/CHANGELOG.md index 555fbeda7c2..6d873898c1a 100644 --- a/benchmarks/CHANGELOG.md +++ b/benchmarks/CHANGELOG.md @@ -1,5 +1,18 @@ # @keystonejs/benchmarks +## 5.1.14 + +### Patch Changes + +- [`4ddc3dc6f`](https://github.com/keystonejs/keystone/commit/4ddc3dc6f87c192627d00db85a1080411400eeb5) [#3212](https://github.com/keystonejs/keystone/pull/3212) Thanks [@timleslie](https://github.com/timleslie)! - Removed `name` argument from calls to `setupServer` in tests. + +- Updated dependencies [[`4ddc3dc6f`](https://github.com/keystonejs/keystone/commit/4ddc3dc6f87c192627d00db85a1080411400eeb5), [`f296866df`](https://github.com/keystonejs/keystone/commit/f296866dfab3af54381fd527473e3dc98425b3b9), [`2806a0bdf`](https://github.com/keystonejs/keystone/commit/2806a0bdfd65429e7c44ed070983f121d6934955), [`3adb2ac2a`](https://github.com/keystonejs/keystone/commit/3adb2ac2ac4ab65636ffea1b2b1f7044410c2b8b), [`9ab6961e0`](https://github.com/keystonejs/keystone/commit/9ab6961e0202277a980bd60a323a1c599f1dd085)]: + - @keystonejs/fields@13.0.2 + - @keystonejs/test-utils@7.0.1 + - @keystonejs/keystone@11.2.0 + - @keystonejs/session@7.0.1 + - @keystonejs/app-graphql@5.1.9 + ## 5.1.13 ### Patch Changes diff --git a/benchmarks/package.json b/benchmarks/package.json index 122bfd79565..a86cb5f0c03 100644 --- a/benchmarks/package.json +++ b/benchmarks/package.json @@ -2,7 +2,7 @@ "name": "@keystonejs/benchmarks", "description": "A set of benchmarks for running against the KeystoneJS API.", "private": true, - "version": "5.1.13", + "version": "5.1.14", "author": "The KeystoneJS Development Team", "license": "MIT", "engines": { @@ -16,11 +16,11 @@ "dependencies": { "@keystonejs/adapter-knex": "^10.1.0", "@keystonejs/adapter-mongoose": "^8.1.3", - "@keystonejs/app-graphql": "^5.1.8", - "@keystonejs/fields": "^13.0.1", - "@keystonejs/keystone": "^11.1.1", - "@keystonejs/session": "^7.0.0", - "@keystonejs/test-utils": "^7.0.0", + "@keystonejs/app-graphql": "^5.1.9", + "@keystonejs/fields": "^13.0.2", + "@keystonejs/keystone": "^11.2.0", + "@keystonejs/session": "^7.0.1", + "@keystonejs/test-utils": "^7.0.1", "body-parser": "^1.18.2", "cookie-signature": "^1.1.0", "supertest-light": "^1.0.3", diff --git a/packages/app-admin-ui/CHANGELOG.md b/packages/app-admin-ui/CHANGELOG.md index 7d297477195..d537d20cf4b 100644 --- a/packages/app-admin-ui/CHANGELOG.md +++ b/packages/app-admin-ui/CHANGELOG.md @@ -1,5 +1,15 @@ # @keystonejs/app-admin-ui +## 7.0.5 + +### Patch Changes + +- Updated dependencies [[`887ad8199`](https://github.com/keystonejs/keystone/commit/887ad8199aa5c32a3db8588104f4548c90aa106c), [`4ddc3dc6f`](https://github.com/keystonejs/keystone/commit/4ddc3dc6f87c192627d00db85a1080411400eeb5), [`69d7f2e50`](https://github.com/keystonejs/keystone/commit/69d7f2e50ef2325c0d3b02b8bb5c310590796fed), [`2806a0bdf`](https://github.com/keystonejs/keystone/commit/2806a0bdfd65429e7c44ed070983f121d6934955), [`3adb2ac2a`](https://github.com/keystonejs/keystone/commit/3adb2ac2ac4ab65636ffea1b2b1f7044410c2b8b)]: + - @arch-ui/pagination@0.0.23 + - @keystonejs/fields@13.0.2 + - @keystonejs/utils@5.4.2 + - @keystonejs/session@7.0.1 + ## 7.0.4 ### Patch Changes diff --git a/packages/app-admin-ui/package.json b/packages/app-admin-ui/package.json index 3cd629e9441..e82437a5e88 100644 --- a/packages/app-admin-ui/package.json +++ b/packages/app-admin-ui/package.json @@ -1,7 +1,7 @@ { "name": "@keystonejs/app-admin-ui", "description": "KeystoneJS Admin UI App.", - "version": "7.0.4", + "version": "7.0.5", "author": "The KeystoneJS Development Team", "license": "MIT", "engines": { @@ -29,7 +29,7 @@ "@arch-ui/lozenge": "^0.0.16", "@arch-ui/navbar": "^0.1.11", "@arch-ui/options": "^0.0.21", - "@arch-ui/pagination": "^0.0.22", + "@arch-ui/pagination": "^0.0.23", "@arch-ui/pill": "^0.1.15", "@arch-ui/popout": "^0.0.19", "@arch-ui/select": "^0.1.8", @@ -41,9 +41,9 @@ "@emotion/core": "^10.0.28", "@keystonejs/build-field-types": "^5.2.9", "@keystonejs/field-views-loader": "^6.0.0", - "@keystonejs/fields": "^13.0.0", - "@keystonejs/session": "^7.0.0", - "@keystonejs/utils": "^5.4.1", + "@keystonejs/fields": "^13.0.2", + "@keystonejs/session": "^7.0.1", + "@keystonejs/utils": "^5.4.2", "@types/react": "^16.8.12", "apollo-cache-inmemory": "^1.6.6", "apollo-client": "^2.6.10", diff --git a/packages/app-graphql/CHANGELOG.md b/packages/app-graphql/CHANGELOG.md index 9dfe536c5cc..ba4d47feab4 100644 --- a/packages/app-graphql/CHANGELOG.md +++ b/packages/app-graphql/CHANGELOG.md @@ -1,5 +1,15 @@ # @keystonejs/app-graphql +## 5.1.9 + +### Patch Changes + +- [`9ab6961e0`](https://github.com/keystonejs/keystone/commit/9ab6961e0202277a980bd60a323a1c599f1dd085) [#3217](https://github.com/keystonejs/keystone/pull/3217) Thanks [@Vultraz](https://github.com/Vultraz)! - Updated apollo-server-express dependency to 2.15.1. + +- Updated dependencies [[`69d7f2e50`](https://github.com/keystonejs/keystone/commit/69d7f2e50ef2325c0d3b02b8bb5c310590796fed), [`2806a0bdf`](https://github.com/keystonejs/keystone/commit/2806a0bdfd65429e7c44ed070983f121d6934955)]: + - @keystonejs/utils@5.4.2 + - @keystonejs/session@7.0.1 + ## 5.1.8 ### Patch Changes diff --git a/packages/app-graphql/package.json b/packages/app-graphql/package.json index 4d014997e00..0e6e557c25f 100644 --- a/packages/app-graphql/package.json +++ b/packages/app-graphql/package.json @@ -1,7 +1,7 @@ { "name": "@keystonejs/app-graphql", "description": "KeystoneJS GraphQL App.", - "version": "5.1.8", + "version": "5.1.9", "author": "The KeystoneJS Development Team", "license": "MIT", "engines": { @@ -10,8 +10,8 @@ "dependencies": { "@keystonejs/app-graphql-playground": "^5.1.4", "@keystonejs/logger": "^5.1.2", - "@keystonejs/session": "^7.0.0", - "@keystonejs/utils": "^5.4.1", + "@keystonejs/session": "^7.0.1", + "@keystonejs/utils": "^5.4.2", "apollo-errors": "^1.9.0", "apollo-server-express": "^2.15.1", "cuid": "^2.1.8", diff --git a/packages/arch/docs/CHANGELOG.md b/packages/arch/docs/CHANGELOG.md index 50443a23750..dc93bb31482 100644 --- a/packages/arch/docs/CHANGELOG.md +++ b/packages/arch/docs/CHANGELOG.md @@ -1,5 +1,12 @@ # @arch-ui/docs +## 1.1.24 + +### Patch Changes + +- Updated dependencies [[`887ad8199`](https://github.com/keystonejs/keystone/commit/887ad8199aa5c32a3db8588104f4548c90aa106c)]: + - @arch-ui/pagination@0.0.23 + ## 1.1.23 ### Patch Changes diff --git a/packages/arch/docs/package.json b/packages/arch/docs/package.json index 3a263e799f6..9e2876efc19 100644 --- a/packages/arch/docs/package.json +++ b/packages/arch/docs/package.json @@ -1,6 +1,6 @@ { "name": "@arch-ui/docs", - "version": "1.1.23", + "version": "1.1.24", "private": true, "license": "MIT", "dependencies": { @@ -17,7 +17,7 @@ "@arch-ui/loading": "^0.0.17", "@arch-ui/lozenge": "^0.0.16", "@arch-ui/navbar": "^0.1.11", - "@arch-ui/pagination": "^0.0.22", + "@arch-ui/pagination": "^0.0.23", "@arch-ui/pill": "^0.1.15", "@arch-ui/popout": "^0.0.19", "@arch-ui/select": "^0.1.8", diff --git a/packages/arch/packages/pagination/CHANGELOG.md b/packages/arch/packages/pagination/CHANGELOG.md index 09870aaf7cb..860d34f79c8 100644 --- a/packages/arch/packages/pagination/CHANGELOG.md +++ b/packages/arch/packages/pagination/CHANGELOG.md @@ -1,5 +1,11 @@ # @arch-ui/pagination +## 0.0.23 + +### Patch Changes + +- [`887ad8199`](https://github.com/keystonejs/keystone/commit/887ad8199aa5c32a3db8588104f4548c90aa106c) [#3178](https://github.com/keystonejs/keystone/pull/3178) Thanks [@Vultraz](https://github.com/Vultraz)! - Redesigned Pagination display. + ## 0.0.22 ### Patch Changes diff --git a/packages/arch/packages/pagination/package.json b/packages/arch/packages/pagination/package.json index 6c0b36606e6..93c7eae89b9 100644 --- a/packages/arch/packages/pagination/package.json +++ b/packages/arch/packages/pagination/package.json @@ -1,7 +1,7 @@ { "name": "@arch-ui/pagination", "description": "Pagination UI as used in @keystonejs Admin UI.", - "version": "0.0.22", + "version": "0.0.23", "author": "Jed Watson", "license": "MIT", "main": "dist/pagination.cjs.js", diff --git a/packages/auth-passport/CHANGELOG.md b/packages/auth-passport/CHANGELOG.md index d8dd62251c5..a464254c7cb 100644 --- a/packages/auth-passport/CHANGELOG.md +++ b/packages/auth-passport/CHANGELOG.md @@ -1,5 +1,15 @@ # @keystonejs/auth-passport +## 5.2.3 + +### Patch Changes + +- [`5a757119d`](https://github.com/keystonejs/keystone/commit/5a757119d7042bf13242f3a92fdde5b34ea1f71d) [#3219](https://github.com/keystonejs/keystone/pull/3219) Thanks [@rubenamorim](https://github.com/rubenamorim)! - Fix invalid query result destructuring. + These changes correct the regression introduced by the latest version (`5.2.2`). +- Updated dependencies [[`4ddc3dc6f`](https://github.com/keystonejs/keystone/commit/4ddc3dc6f87c192627d00db85a1080411400eeb5), [`2806a0bdf`](https://github.com/keystonejs/keystone/commit/2806a0bdfd65429e7c44ed070983f121d6934955), [`3adb2ac2a`](https://github.com/keystonejs/keystone/commit/3adb2ac2ac4ab65636ffea1b2b1f7044410c2b8b)]: + - @keystonejs/fields@13.0.2 + - @keystonejs/session@7.0.1 + ## 5.2.2 ### Patch Changes diff --git a/packages/auth-passport/package.json b/packages/auth-passport/package.json index 8147b7e591e..3fc30901416 100644 --- a/packages/auth-passport/package.json +++ b/packages/auth-passport/package.json @@ -1,15 +1,15 @@ { "name": "@keystonejs/auth-passport", "description": "Provides Social Authentication Strategies based on PassportJS.", - "version": "5.2.2", + "version": "5.2.3", "author": "The KeystoneJS Development Team", "license": "MIT", "engines": { "node": ">=10.0.0" }, "dependencies": { - "@keystonejs/fields": "^13.0.1", - "@keystonejs/session": "^7.0.0", + "@keystonejs/fields": "^13.0.2", + "@keystonejs/session": "^7.0.1", "express": "^4.17.1", "nanoassert": "^2.0.0", "passport": "^0.4.0", diff --git a/packages/fields-wysiwyg-tinymce/CHANGELOG.md b/packages/fields-wysiwyg-tinymce/CHANGELOG.md index a8fe6195da3..dc97ae0ff30 100644 --- a/packages/fields-wysiwyg-tinymce/CHANGELOG.md +++ b/packages/fields-wysiwyg-tinymce/CHANGELOG.md @@ -1,5 +1,14 @@ # @keystonejs/fields-wysiwyg-tinymce +## 5.3.2 + +### Patch Changes + +- [`4ddc3dc6f`](https://github.com/keystonejs/keystone/commit/4ddc3dc6f87c192627d00db85a1080411400eeb5) [#3212](https://github.com/keystonejs/keystone/pull/3212) Thanks [@timleslie](https://github.com/timleslie)! - Removed `name` argument from calls to `setupServer` in tests. + +- Updated dependencies [[`4ddc3dc6f`](https://github.com/keystonejs/keystone/commit/4ddc3dc6f87c192627d00db85a1080411400eeb5), [`3adb2ac2a`](https://github.com/keystonejs/keystone/commit/3adb2ac2ac4ab65636ffea1b2b1f7044410c2b8b)]: + - @keystonejs/fields@13.0.2 + ## 5.3.1 ### Patch Changes diff --git a/packages/fields-wysiwyg-tinymce/package.json b/packages/fields-wysiwyg-tinymce/package.json index 57455fd8711..9016a3c7c99 100644 --- a/packages/fields-wysiwyg-tinymce/package.json +++ b/packages/fields-wysiwyg-tinymce/package.json @@ -3,7 +3,7 @@ "description": "KeystoneJS WYSIWYG HTML Field Type, powered by TinyMCE", "homepage": "https://github.com/keystonejs/keystone", "repository": "https://github.com/keystonejs/keystone/tree/master/packages/fields-wysiwyg-tinymce", - "version": "5.3.1", + "version": "5.3.2", "author": "The KeystoneJS Development Team", "license": "MIT", "engines": { @@ -17,7 +17,7 @@ "@babel/runtime": "^7.8.4", "@emotion/core": "^10.0.28", "@keystonejs/build-field-types": "^5.2.8", - "@keystonejs/fields": "^13.0.0", + "@keystonejs/fields": "^13.0.2", "@tinymce/tinymce-react": "^3.5.0", "prop-types": "^15.7.2", "react": "^16.13.1", diff --git a/packages/fields/CHANGELOG.md b/packages/fields/CHANGELOG.md index 31936e8d0dd..4a8953752b8 100644 --- a/packages/fields/CHANGELOG.md +++ b/packages/fields/CHANGELOG.md @@ -1,5 +1,18 @@ # @keystonejs/fields +## 13.0.2 + +### Patch Changes + +- [`4ddc3dc6f`](https://github.com/keystonejs/keystone/commit/4ddc3dc6f87c192627d00db85a1080411400eeb5) [#3212](https://github.com/keystonejs/keystone/pull/3212) Thanks [@timleslie](https://github.com/timleslie)! - Removed `name` argument from calls to `setupServer` in tests. + +* [`3adb2ac2a`](https://github.com/keystonejs/keystone/commit/3adb2ac2ac4ab65636ffea1b2b1f7044410c2b8b) [#3176](https://github.com/keystonejs/keystone/pull/3176) Thanks [@timleslie](https://github.com/timleslie)! - Updated docs for `Virtual` field type to show how to execute server-side GraphQL operations. + +* Updated dependencies [[`4ddc3dc6f`](https://github.com/keystonejs/keystone/commit/4ddc3dc6f87c192627d00db85a1080411400eeb5), [`69d7f2e50`](https://github.com/keystonejs/keystone/commit/69d7f2e50ef2325c0d3b02b8bb5c310590796fed)]: + - @keystonejs/test-utils@7.0.1 + - @keystonejs/utils@5.4.2 + - @keystonejs/app-admin-ui@7.0.5 + ## 13.0.1 ### Patch Changes diff --git a/packages/fields/package.json b/packages/fields/package.json index 9c9c781ea1d..5b32ed7d00b 100644 --- a/packages/fields/package.json +++ b/packages/fields/package.json @@ -3,7 +3,7 @@ "description": "KeystoneJS Field Types including Text, Password, DateTime, Integer, and more.", "homepage": "https://github.com/keystonejs/keystone", "repository": "https://github.com/keystonejs/keystone/tree/master/packages/fields", - "version": "13.0.1", + "version": "13.0.2", "main": "dist/fields.cjs.js", "module": "dist/fields.esm.js", "author": "The KeystoneJS Development Team", @@ -36,10 +36,10 @@ "@keystonejs/access-control": "^6.2.0", "@keystonejs/adapter-knex": "^10.0.2", "@keystonejs/adapter-mongoose": "^8.1.2", - "@keystonejs/app-admin-ui": "^7.0.3", + "@keystonejs/app-admin-ui": "^7.0.5", "@keystonejs/build-field-types": "^5.2.8", "@keystonejs/field-content": "^7.0.1", - "@keystonejs/utils": "^5.4.1", + "@keystonejs/utils": "^5.4.2", "@sindresorhus/slugify": "^0.11.0", "apollo-errors": "^1.9.0", "bcryptjs": "^2.4.3", diff --git a/packages/keystone/CHANGELOG.md b/packages/keystone/CHANGELOG.md index a71805d7398..c98bf29f57e 100644 --- a/packages/keystone/CHANGELOG.md +++ b/packages/keystone/CHANGELOG.md @@ -1,5 +1,19 @@ # @keystonejs/keystone +## 11.2.0 + +### Minor Changes + +- [`f296866df`](https://github.com/keystonejs/keystone/commit/f296866dfab3af54381fd527473e3dc98425b3b9) [#3199](https://github.com/keystonejs/keystone/pull/3199) Thanks [@Vultraz](https://github.com/Vultraz)! - Support GraphQL AST input in `executeGraphQL`. This should be created with the `gql` template literal imported from `apollo-server-express`. + +### Patch Changes + +- Updated dependencies [[`4ddc3dc6f`](https://github.com/keystonejs/keystone/commit/4ddc3dc6f87c192627d00db85a1080411400eeb5), [`69d7f2e50`](https://github.com/keystonejs/keystone/commit/69d7f2e50ef2325c0d3b02b8bb5c310590796fed), [`2806a0bdf`](https://github.com/keystonejs/keystone/commit/2806a0bdfd65429e7c44ed070983f121d6934955), [`3adb2ac2a`](https://github.com/keystonejs/keystone/commit/3adb2ac2ac4ab65636ffea1b2b1f7044410c2b8b)]: + - @keystonejs/fields@13.0.2 + - @keystonejs/test-utils@7.0.1 + - @keystonejs/utils@5.4.2 + - @keystonejs/session@7.0.1 + ## 11.1.3 ### Patch Changes diff --git a/packages/keystone/package.json b/packages/keystone/package.json index 1f5207ca906..8bc32ce5eaa 100644 --- a/packages/keystone/package.json +++ b/packages/keystone/package.json @@ -1,7 +1,7 @@ { "name": "@keystonejs/keystone", "description": "The main @keystonejs class & CLI. This is where the magic happens.", - "version": "11.1.3", + "version": "11.2.0", "author": "The KeystoneJS Development Team", "license": "MIT", "engines": { @@ -13,10 +13,10 @@ "dependencies": { "@keystonejs/access-control": "^6.2.0", "@keystonejs/app-version": "^1.0.2", - "@keystonejs/fields": "^13.0.1", + "@keystonejs/fields": "^13.0.2", "@keystonejs/logger": "^5.1.2", - "@keystonejs/session": "^7.0.0", - "@keystonejs/utils": "^5.4.1", + "@keystonejs/session": "^7.0.1", + "@keystonejs/utils": "^5.4.2", "apollo-errors": "^1.9.0", "arg": "^4.1.1", "chalk": "^2.4.2", diff --git a/packages/session/CHANGELOG.md b/packages/session/CHANGELOG.md index 0656b4cad98..e49a751526a 100644 --- a/packages/session/CHANGELOG.md +++ b/packages/session/CHANGELOG.md @@ -1,5 +1,11 @@ # @keystonejs/session +## 7.0.1 + +### Patch Changes + +- [`2806a0bdf`](https://github.com/keystonejs/keystone/commit/2806a0bdfd65429e7c44ed070983f121d6934955) [#3182](https://github.com/keystonejs/keystone/pull/3182) Thanks [@Vultraz](https://github.com/Vultraz)! - Updated express-session to 1.17.1. + ## 7.0.0 ### Major Changes diff --git a/packages/session/package.json b/packages/session/package.json index 4a763101234..2d02ea76c17 100644 --- a/packages/session/package.json +++ b/packages/session/package.json @@ -1,7 +1,7 @@ { "name": "@keystonejs/session", "description": "Tools to assist with setting up session management in your Keystone system.", - "version": "7.0.0", + "version": "7.0.1", "author": "The KeystoneJS Development Team", "license": "MIT", "engines": { diff --git a/packages/test-utils/CHANGELOG.md b/packages/test-utils/CHANGELOG.md index ccd68ef71c6..87855f12366 100644 --- a/packages/test-utils/CHANGELOG.md +++ b/packages/test-utils/CHANGELOG.md @@ -1,5 +1,15 @@ # @keystonejs/test-utils +## 7.0.1 + +### Patch Changes + +- [`4ddc3dc6f`](https://github.com/keystonejs/keystone/commit/4ddc3dc6f87c192627d00db85a1080411400eeb5) [#3212](https://github.com/keystonejs/keystone/pull/3212) Thanks [@timleslie](https://github.com/timleslie)! - Removed `name` argument from calls to `setupServer` in tests. + +- Updated dependencies [[`f296866df`](https://github.com/keystonejs/keystone/commit/f296866dfab3af54381fd527473e3dc98425b3b9), [`9ab6961e0`](https://github.com/keystonejs/keystone/commit/9ab6961e0202277a980bd60a323a1c599f1dd085)]: + - @keystonejs/keystone@11.2.0 + - @keystonejs/app-graphql@5.1.9 + ## 7.0.0 ### Major Changes diff --git a/packages/test-utils/package.json b/packages/test-utils/package.json index 9c58f46c7b5..6c5db431dd6 100644 --- a/packages/test-utils/package.json +++ b/packages/test-utils/package.json @@ -1,7 +1,7 @@ { "name": "@keystonejs/test-utils", "description": "Common utilities used while testing @keystonejs/* packages.", - "version": "7.0.0", + "version": "7.0.1", "author": "The KeystoneJS Development Team", "license": "MIT", "engines": { @@ -10,8 +10,8 @@ "dependencies": { "@keystonejs/adapter-knex": "^10.1.0", "@keystonejs/adapter-mongoose": "^8.1.3", - "@keystonejs/app-graphql": "^5.1.8", - "@keystonejs/keystone": "^11.1.1", + "@keystonejs/app-graphql": "^5.1.9", + "@keystonejs/keystone": "^11.2.0", "express": "^4.17.1", "mongodb-memory-server-core": "^6.5.2", "p-finally": "^2.0.1", diff --git a/packages/utils/CHANGELOG.md b/packages/utils/CHANGELOG.md index e942e1b88f5..f70d661ccd0 100644 --- a/packages/utils/CHANGELOG.md +++ b/packages/utils/CHANGELOG.md @@ -1,5 +1,11 @@ # @keystonejs/utils +## 5.4.2 + +### Patch Changes + +- [`69d7f2e50`](https://github.com/keystonejs/keystone/commit/69d7f2e50ef2325c0d3b02b8bb5c310590796fed) [#3183](https://github.com/keystonejs/keystone/pull/3183) Thanks [@Vultraz](https://github.com/Vultraz)! - Updated doc comments. + ## 5.4.1 ### Patch Changes diff --git a/packages/utils/package.json b/packages/utils/package.json index 78c29fea2d4..b4abd9463a8 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -1,7 +1,7 @@ { "name": "@keystonejs/utils", "description": "Common utility functions used throughout @keystonejs packages.", - "version": "5.4.1", + "version": "5.4.2", "author": "The KeystoneJS Development Team", "license": "MIT", "homepage": "https://github.com/keystonejs/keystone",