From 5cd94b2a32b3eddaf00ad77229f7e9664899c3b9 Mon Sep 17 00:00:00 2001 From: Mitchell Hamilton Date: Wed, 31 Mar 2021 08:05:10 +1000 Subject: [PATCH 1/2] Remove dropDatabase method and config option (#5285) * Remove dropDatabase method and config option * ESLint --- .changeset/strong-keys-smoke.md | 6 +++ packages/adapter-prisma/README.md | 6 --- packages/adapter-prisma/src/adapter-prisma.js | 40 ------------------- 3 files changed, 6 insertions(+), 46 deletions(-) create mode 100644 .changeset/strong-keys-smoke.md diff --git a/.changeset/strong-keys-smoke.md b/.changeset/strong-keys-smoke.md new file mode 100644 index 00000000000..c3fad6f954b --- /dev/null +++ b/.changeset/strong-keys-smoke.md @@ -0,0 +1,6 @@ +--- +'@keystone-next/adapter-prisma-legacy': major +'@keystone-next/keystone': major +--- + +Removed `dropDatabase` method and config option diff --git a/packages/adapter-prisma/README.md b/packages/adapter-prisma/README.md index 290a1ef91af..370be64edd8 100644 --- a/packages/adapter-prisma/README.md +++ b/packages/adapter-prisma/README.md @@ -55,12 +55,6 @@ _**Default:**_ `false` Enables logging at the [`query`](https://www.prisma.io/docs/reference/tools-and-interfaces/prisma-client/logging#overview) level in the Prisma client. -### `dropDatabase` - -_**Default:**_ `false` - -Allow the adapter to drop the entire database and recreate the tables / foreign keys based on the list schema in your application. This option is ignored in production, i.e. when the environment variable NODE_ENV === 'production'. - ### `migrationMode` _**Default:**_ `'dev'` diff --git a/packages/adapter-prisma/src/adapter-prisma.js b/packages/adapter-prisma/src/adapter-prisma.js index 9ea98ffd782..0f53299ddff 100644 --- a/packages/adapter-prisma/src/adapter-prisma.js +++ b/packages/adapter-prisma/src/adapter-prisma.js @@ -7,7 +7,6 @@ import { runPrototypeMigrations, devMigrations, deployMigrations, - resetDatabaseWithMigrations, // eslint-disable-next-line import/no-unresolved } from './migrations'; @@ -277,48 +276,9 @@ class PrismaAdapter { listAdapter._postConnect({ rels, prisma: this.prisma }); }); - if (this.config.dropDatabase && process.env.NODE_ENV !== 'production') { - await this.dropDatabase(); - } return []; } - // This will drop all the tables in the backing database. Use wisely. - async dropDatabase() { - if (this.migrationMode === 'prototype') { - if (this.provider === 'postgresql') { - // Special fast path to drop data from a postgres database. - // This is an optimization which is particularly crucial in a unit testing context. - // This code path takes milliseconds, vs ~7 seconds for a migrate reset + db push - for (const { tablename } of await this.prisma.$queryRaw( - `SELECT tablename FROM pg_tables WHERE schemaname='${this.dbSchemaName}'` - )) { - await this.prisma.$queryRaw( - `TRUNCATE TABLE \"${this.dbSchemaName}\".\"${tablename}\" CASCADE;` - ); - } - for (const { relname } of await this.prisma.$queryRaw( - `SELECT c.relname FROM pg_class AS c JOIN pg_namespace AS n ON c.relnamespace = n.oid WHERE c.relkind='S' AND n.nspname='${this.dbSchemaName}';` - )) { - await this.prisma.$queryRaw( - `ALTER SEQUENCE \"${this.dbSchemaName}\".\"${relname}\" RESTART WITH 1;` - ); - } - } else if (this.provider === 'sqlite') { - const tables = await this.prisma.$queryRaw( - "SELECT name FROM sqlite_master WHERE type='table';" - ); - for (const { name } of tables) { - await this.prisma.$queryRaw(`DELETE FROM "${name}";`); - } - } else { - throw new Error('Only "postgresql" and "sqlite" providers are supported'); - } - } else { - resetDatabaseWithMigrations(this._url(), path.resolve(this.schemaPath)); - } - } - disconnect() { return this.prisma.$disconnect(); } From 4784ec8221495cd0d7ebdfdaa08e04fa77668e45 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Tue, 30 Mar 2021 22:07:42 +0000 Subject: [PATCH 2/2] Version Packages --- .changeset/eighty-news-swim.md | 5 --- .changeset/flat-beds-help.md | 9 ---- .changeset/gentle-flies-invent.md | 6 --- .changeset/gentle-garlics-learn.md | 5 --- .changeset/giant-buses-sip.md | 5 --- .changeset/grumpy-needles-give.md | 5 --- .changeset/happy-mugs-reply.md | 5 --- .changeset/modern-cycles-rule.md | 6 --- .changeset/plenty-jars-swim.md | 5 --- .changeset/purple-gifts-accept.md | 5 --- .changeset/rare-avocados-mate.md | 5 --- .changeset/real-ears-cheat.md | 6 --- .changeset/silly-cows-sit.md | 8 ---- .changeset/smart-lizards-mate.md | 8 ---- .changeset/strong-keys-smoke.md | 6 --- .changeset/tame-points-provide.md | 13 ------ .changeset/thin-geese-worry.md | 6 --- .changeset/tiny-impalas-grab.md | 5 --- docs-next/CHANGELOG.md | 7 ++++ docs-next/package.json | 4 +- examples-next/auth/CHANGELOG.md | 10 +++++ examples-next/auth/package.json | 10 ++--- examples-next/basic/CHANGELOG.md | 12 ++++++ examples-next/basic/package.json | 14 +++---- examples-next/ecommerce/CHANGELOG.md | 15 +++++++ examples-next/ecommerce/package.json | 18 ++++---- .../graphql-api-endpoint/CHANGELOG.md | 10 +++++ .../graphql-api-endpoint/package.json | 10 ++--- examples-next/roles/CHANGELOG.md | 13 ++++++ examples-next/roles/package.json | 12 +++--- examples-next/sandbox/CHANGELOG.md | 10 +++++ examples-next/sandbox/package.json | 10 ++--- examples-next/todo/CHANGELOG.md | 10 +++++ examples-next/todo/package.json | 10 ++--- packages-next/admin-ui-utils/CHANGELOG.md | 7 ++++ packages-next/admin-ui-utils/package.json | 4 +- packages-next/admin-ui/CHANGELOG.md | 15 +++++++ packages-next/admin-ui/package.json | 8 ++-- packages-next/auth/CHANGELOG.md | 11 +++++ packages-next/auth/package.json | 16 +++---- packages-next/cloudinary/CHANGELOG.md | 9 ++++ packages-next/cloudinary/package.json | 8 ++-- packages-next/fields-document/CHANGELOG.md | 16 +++++++ packages-next/fields-document/package.json | 14 +++---- packages-next/fields/CHANGELOG.md | 21 ++++++++++ packages-next/fields/package.json | 16 +++---- packages-next/keystone/CHANGELOG.md | 42 +++++++++++++++++++ packages-next/keystone/package.json | 14 +++---- packages-next/types/CHANGELOG.md | 8 ++++ packages-next/types/package.json | 2 +- packages/adapter-prisma/CHANGELOG.md | 18 ++++++++ packages/adapter-prisma/package.json | 6 +-- packages/fields-auto-increment/CHANGELOG.md | 12 ++++++ packages/fields-auto-increment/package.json | 6 +-- packages/fields-cloudinary-image/CHANGELOG.md | 11 +++++ packages/fields-cloudinary-image/package.json | 4 +- packages/fields/CHANGELOG.md | 16 +++++++ packages/fields/package.json | 6 +-- packages/keystone/CHANGELOG.md | 6 +++ packages/keystone/package.json | 4 +- .../server-side-graphql-client/CHANGELOG.md | 7 ++++ .../server-side-graphql-client/package.json | 4 +- packages/test-utils/CHANGELOG.md | 19 +++++++++ packages/test-utils/package.json | 8 ++-- tests/api-tests/CHANGELOG.md | 11 +++++ tests/api-tests/package.json | 8 ++-- tests/benchmarks/CHANGELOG.md | 14 +++++++ tests/benchmarks/package.json | 14 +++---- 68 files changed, 445 insertions(+), 228 deletions(-) delete mode 100644 .changeset/eighty-news-swim.md delete mode 100644 .changeset/flat-beds-help.md delete mode 100644 .changeset/gentle-flies-invent.md delete mode 100644 .changeset/gentle-garlics-learn.md delete mode 100644 .changeset/giant-buses-sip.md delete mode 100644 .changeset/grumpy-needles-give.md delete mode 100644 .changeset/happy-mugs-reply.md delete mode 100644 .changeset/modern-cycles-rule.md delete mode 100644 .changeset/plenty-jars-swim.md delete mode 100644 .changeset/purple-gifts-accept.md delete mode 100644 .changeset/rare-avocados-mate.md delete mode 100644 .changeset/real-ears-cheat.md delete mode 100644 .changeset/silly-cows-sit.md delete mode 100644 .changeset/smart-lizards-mate.md delete mode 100644 .changeset/strong-keys-smoke.md delete mode 100644 .changeset/tame-points-provide.md delete mode 100644 .changeset/thin-geese-worry.md delete mode 100644 .changeset/tiny-impalas-grab.md diff --git a/.changeset/eighty-news-swim.md b/.changeset/eighty-news-swim.md deleted file mode 100644 index b679b201dfc..00000000000 --- a/.changeset/eighty-news-swim.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@keystone-next/test-utils-legacy': major ---- - -Removed usage of `getDbSchemaName`, `getPrismaPath`, `migrationMode` and `dropDatabase` adapter options. Note this means that dropping the database and running migrations will now only happen when creating a keystone instance from `setupFromConfig` rather than on every `keystone.connect` diff --git a/.changeset/flat-beds-help.md b/.changeset/flat-beds-help.md deleted file mode 100644 index ed0459871a5..00000000000 --- a/.changeset/flat-beds-help.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -'@keystone-next/keystone': major ---- - -Replaced `deploy`, `reset` and `generate` commands with `keystone-next prisma`. You can use these commands as replacements for the old commands: - -- `keystone-next deploy` -> `keystone-next prisma migrate deploy` -- `keystone-next reset` -> `keystone-next prisma migrate reset` -- `keystone-next generate` -> `keystone-next prisma migrate dev` diff --git a/.changeset/gentle-flies-invent.md b/.changeset/gentle-flies-invent.md deleted file mode 100644 index 83245fdaafd..00000000000 --- a/.changeset/gentle-flies-invent.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -'@keystone-next/keystone': major -'@keystone-next/types': major ---- - -Removed the `none` case in `MigrationAction` and require that the PrismaClient is passed to be able to connect to the database for the `none-skip-client-generation` case. diff --git a/.changeset/gentle-garlics-learn.md b/.changeset/gentle-garlics-learn.md deleted file mode 100644 index 6c65fe9b5fa..00000000000 --- a/.changeset/gentle-garlics-learn.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@keystone-next/keystone': major ---- - -Updated `keystone-next build` command to validate that the GraphQL and Prisma schemas are up to date. diff --git a/.changeset/giant-buses-sip.md b/.changeset/giant-buses-sip.md deleted file mode 100644 index 7bd987ab2b9..00000000000 --- a/.changeset/giant-buses-sip.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@keystone-next/adapter-prisma-legacy': minor ---- - -Added `devMigrations` and `runPrototypeMigrations` exports. diff --git a/.changeset/grumpy-needles-give.md b/.changeset/grumpy-needles-give.md deleted file mode 100644 index fca290c0a16..00000000000 --- a/.changeset/grumpy-needles-give.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@keystone-next/keystone': major ---- - -Moved generated `schema.prisma` to the root of the project directory. Note that this also moves the location of migrations from `.keystone/prisma/migrations` to `migrations` at the root of the project. diff --git a/.changeset/happy-mugs-reply.md b/.changeset/happy-mugs-reply.md deleted file mode 100644 index 87a728ec48a..00000000000 --- a/.changeset/happy-mugs-reply.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@keystone-next/keystone': minor ---- - -Added `artifacts` entrypoint. diff --git a/.changeset/modern-cycles-rule.md b/.changeset/modern-cycles-rule.md deleted file mode 100644 index 4d2c30cc741..00000000000 --- a/.changeset/modern-cycles-rule.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -'@keystone-next/keystone': major -'@keystone-next/test-utils-legacy': patch ---- - -Removed `dotKeystonePath` argument from `createSystem` diff --git a/.changeset/plenty-jars-swim.md b/.changeset/plenty-jars-swim.md deleted file mode 100644 index dda55caa2b2..00000000000 --- a/.changeset/plenty-jars-swim.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@keystone-next/admin-ui': major ---- - -Updated Next API route template to use `createSystem` without the `dotKeystonePath` argument and import from the new Prisma Client location. diff --git a/.changeset/purple-gifts-accept.md b/.changeset/purple-gifts-accept.md deleted file mode 100644 index f0e8a548040..00000000000 --- a/.changeset/purple-gifts-accept.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@keystone-next/keystone': minor ---- - -Added `keystone-next postinstall` command which verifies that the Prisma and GraphQL schemas are up to date with a `--fix` flag to automatically update them without a prompt. diff --git a/.changeset/rare-avocados-mate.md b/.changeset/rare-avocados-mate.md deleted file mode 100644 index a73d86d686c..00000000000 --- a/.changeset/rare-avocados-mate.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@keystone-next/fields': major ---- - -Removed support for the `mongoId` field type. diff --git a/.changeset/real-ears-cheat.md b/.changeset/real-ears-cheat.md deleted file mode 100644 index ef1dc9d4646..00000000000 --- a/.changeset/real-ears-cheat.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -'@keystone-next/fields': major -'@keystone-next/fields-legacy': major ---- - -Removed the `mongoId` field type. diff --git a/.changeset/silly-cows-sit.md b/.changeset/silly-cows-sit.md deleted file mode 100644 index 429d8d74ea1..00000000000 --- a/.changeset/silly-cows-sit.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -'@keystone-next/fields-document': major -'@keystone-next/fields-legacy': major -'@keystone-next/fields-auto-increment-legacy': major -'@keystone-next/fields-cloudinary-image-legacy': major ---- - -Removed support for the `knex` and `mongoose` field adapters. diff --git a/.changeset/smart-lizards-mate.md b/.changeset/smart-lizards-mate.md deleted file mode 100644 index f8eec5a54f1..00000000000 --- a/.changeset/smart-lizards-mate.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -'@keystone-next/fields': major -'@keystone-next/keystone': major -'@keystone-next/types': major -'@keystone-next/test-utils-legacy': major ---- - -Removed support for the `knex` and `mongoose` database adapters. We now only support `prisma_postgresql` and `prisma_sqlite`. diff --git a/.changeset/strong-keys-smoke.md b/.changeset/strong-keys-smoke.md deleted file mode 100644 index c3fad6f954b..00000000000 --- a/.changeset/strong-keys-smoke.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -'@keystone-next/adapter-prisma-legacy': major -'@keystone-next/keystone': major ---- - -Removed `dropDatabase` method and config option diff --git a/.changeset/tame-points-provide.md b/.changeset/tame-points-provide.md deleted file mode 100644 index 524e1174449..00000000000 --- a/.changeset/tame-points-provide.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -'@keystone-next/example-ecommerce': patch -'@keystone-next/example-roles': patch -'@keystone-next/admin-ui': patch -'@keystone-next/fields': patch -'@keystone-next/keystone': patch -'@keystone-next/fields-legacy': patch -'@keystone-next/test-utils-legacy': patch -'@keystone-next/api-tests-legacy': patch -'@keystone-next/benchmarks-legacy': patch ---- - -Removed the `adapters-mongoose-legacy` packages dependency. diff --git a/.changeset/thin-geese-worry.md b/.changeset/thin-geese-worry.md deleted file mode 100644 index bb66d031c1e..00000000000 --- a/.changeset/thin-geese-worry.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -'@keystone-next/keystone-legacy': major -'@keystone-next/adapter-prisma-legacy': patch ---- - -Removed the legacy `BaseKeystoneAdapter`, `BaseListAdapter`, and `BaseFieldAdapter` exports. diff --git a/.changeset/tiny-impalas-grab.md b/.changeset/tiny-impalas-grab.md deleted file mode 100644 index a609b92855c..00000000000 --- a/.changeset/tiny-impalas-grab.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@keystone-next/keystone': major ---- - -Moved generated GraphQL schema to `schema.graphql` to the root of the project. We recommend that you commit this file to your repo. diff --git a/docs-next/CHANGELOG.md b/docs-next/CHANGELOG.md index 7a815636699..04324228746 100644 --- a/docs-next/CHANGELOG.md +++ b/docs-next/CHANGELOG.md @@ -1,5 +1,12 @@ # @keystone-next/website +## 1.2.1 + +### Patch Changes + +- Updated dependencies [[`4fa66ac1f`](https://github.com/keystonejs/keystone/commit/4fa66ac1fc6fd0a43da17dd90797733e8c958785)]: + - @keystone-next/fields-document@4.0.0 + ## 1.2.0 ### Minor Changes diff --git a/docs-next/package.json b/docs-next/package.json index 287d3ebdd6f..812afabd129 100644 --- a/docs-next/package.json +++ b/docs-next/package.json @@ -1,6 +1,6 @@ { "name": "@keystone-next/website", - "version": "1.2.0", + "version": "1.2.1", "private": true, "license": "MIT", "scripts": { @@ -13,7 +13,7 @@ }, "dependencies": { "@babel/runtime": "^7.13.10", - "@keystone-next/fields-document": "^3.1.0", + "@keystone-next/fields-document": "^4.0.0", "@keystone-ui/button": "^3.0.1", "@keystone-ui/core": "^2.0.2", "@keystone-ui/fields": "^2.0.2", diff --git a/examples-next/auth/CHANGELOG.md b/examples-next/auth/CHANGELOG.md index b61eb52a1d6..5ef7723504f 100644 --- a/examples-next/auth/CHANGELOG.md +++ b/examples-next/auth/CHANGELOG.md @@ -1,5 +1,15 @@ # @keystone-next/example-auth +## 2.0.1 + +### Patch Changes + +- Updated dependencies [[`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6), [`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6), [`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6), [`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6), [`1a4db6c87`](https://github.com/keystonejs/keystone/commit/1a4db6c87c17706c8e5db2816e0a6b1b8f79e217), [`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6), [`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6), [`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6), [`399e6db39`](https://github.com/keystonejs/keystone/commit/399e6db39c51cf9e8bbf3dde0887e5bf55dd1c4d), [`8665cfe66`](https://github.com/keystonejs/keystone/commit/8665cfe66016e0356681413e31f80a6d5586d364), [`399e6db39`](https://github.com/keystonejs/keystone/commit/399e6db39c51cf9e8bbf3dde0887e5bf55dd1c4d), [`5cd94b2a3`](https://github.com/keystonejs/keystone/commit/5cd94b2a32b3eddaf00ad77229f7e9664899c3b9), [`9e450d6b3`](https://github.com/keystonejs/keystone/commit/9e450d6b326e2ba5f46e49ecf53b6bd7a627e9ca), [`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6)]: + - @keystone-next/keystone@15.0.0 + - @keystone-next/admin-ui@13.0.0 + - @keystone-next/fields@6.0.0 + - @keystone-next/auth@20.0.0 + ## 2.0.0 ### Major Changes diff --git a/examples-next/auth/package.json b/examples-next/auth/package.json index 9d07e51c1ed..33c68908279 100644 --- a/examples-next/auth/package.json +++ b/examples-next/auth/package.json @@ -1,6 +1,6 @@ { "name": "@keystone-next/example-auth", - "version": "2.0.0", + "version": "2.0.1", "private": true, "license": "MIT", "scripts": { @@ -9,10 +9,10 @@ "build": "keystone-next build" }, "dependencies": { - "@keystone-next/admin-ui": "^12.0.1", - "@keystone-next/auth": "^19.0.0", - "@keystone-next/fields": "^5.4.0", - "@keystone-next/keystone": "^14.0.1", + "@keystone-next/admin-ui": "^13.0.0", + "@keystone-next/auth": "^20.0.0", + "@keystone-next/fields": "^6.0.0", + "@keystone-next/keystone": "^15.0.0", "next": "^10.0.9", "react": "^17.0.2", "react-dom": "^17.0.2" diff --git a/examples-next/basic/CHANGELOG.md b/examples-next/basic/CHANGELOG.md index 97f9b092972..38f67700d1c 100644 --- a/examples-next/basic/CHANGELOG.md +++ b/examples-next/basic/CHANGELOG.md @@ -1,5 +1,17 @@ # @keystone-next/app-basic +## 2.0.1 + +### Patch Changes + +- Updated dependencies [[`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6), [`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6), [`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6), [`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6), [`1a4db6c87`](https://github.com/keystonejs/keystone/commit/1a4db6c87c17706c8e5db2816e0a6b1b8f79e217), [`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6), [`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6), [`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6), [`399e6db39`](https://github.com/keystonejs/keystone/commit/399e6db39c51cf9e8bbf3dde0887e5bf55dd1c4d), [`8665cfe66`](https://github.com/keystonejs/keystone/commit/8665cfe66016e0356681413e31f80a6d5586d364), [`4fa66ac1f`](https://github.com/keystonejs/keystone/commit/4fa66ac1fc6fd0a43da17dd90797733e8c958785), [`399e6db39`](https://github.com/keystonejs/keystone/commit/399e6db39c51cf9e8bbf3dde0887e5bf55dd1c4d), [`5cd94b2a3`](https://github.com/keystonejs/keystone/commit/5cd94b2a32b3eddaf00ad77229f7e9664899c3b9), [`9e450d6b3`](https://github.com/keystonejs/keystone/commit/9e450d6b326e2ba5f46e49ecf53b6bd7a627e9ca), [`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6)]: + - @keystone-next/keystone@15.0.0 + - @keystone-next/types@16.0.0 + - @keystone-next/admin-ui@13.0.0 + - @keystone-next/fields@6.0.0 + - @keystone-next/fields-document@4.0.0 + - @keystone-next/auth@20.0.0 + ## 2.0.0 ### Major Changes diff --git a/examples-next/basic/package.json b/examples-next/basic/package.json index b5b81c351c2..1f28242aec0 100644 --- a/examples-next/basic/package.json +++ b/examples-next/basic/package.json @@ -1,6 +1,6 @@ { "name": "@keystone-next/app-basic", - "version": "2.0.0", + "version": "2.0.1", "private": true, "license": "MIT", "scripts": { @@ -11,13 +11,13 @@ "dependencies": { "@babel/runtime": "^7.13.10", "@graphql-tools/merge": "^6.2.11", - "@keystone-next/admin-ui": "^12.0.1", - "@keystone-next/auth": "^19.0.0", + "@keystone-next/admin-ui": "^13.0.0", + "@keystone-next/auth": "^20.0.0", "@keystone-next/document-renderer": "^2.0.2", - "@keystone-next/fields": "^5.4.0", - "@keystone-next/fields-document": "^3.2.1", - "@keystone-next/keystone": "^14.0.1", - "@keystone-next/types": "^15.0.1", + "@keystone-next/fields": "^6.0.0", + "@keystone-next/fields-document": "^4.0.0", + "@keystone-next/keystone": "^15.0.0", + "@keystone-next/types": "^16.0.0", "@keystone-ui/core": "^2.0.2", "@keystone-ui/fields": "^2.0.2", "@keystone-ui/icons": "^2.0.1", diff --git a/examples-next/ecommerce/CHANGELOG.md b/examples-next/ecommerce/CHANGELOG.md index 32403693605..c3db693ab9c 100644 --- a/examples-next/ecommerce/CHANGELOG.md +++ b/examples-next/ecommerce/CHANGELOG.md @@ -1,5 +1,20 @@ # @keystone-next/example-ecommerce +## 2.0.1 + +### Patch Changes + +- [#5280](https://github.com/keystonejs/keystone/pull/5280) [`9e450d6b3`](https://github.com/keystonejs/keystone/commit/9e450d6b326e2ba5f46e49ecf53b6bd7a627e9ca) Thanks [@timleslie](https://github.com/timleslie)! - Removed the `adapters-mongoose-legacy` packages dependency. + +- Updated dependencies [[`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6), [`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6), [`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6), [`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6), [`1a4db6c87`](https://github.com/keystonejs/keystone/commit/1a4db6c87c17706c8e5db2816e0a6b1b8f79e217), [`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6), [`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6), [`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6), [`399e6db39`](https://github.com/keystonejs/keystone/commit/399e6db39c51cf9e8bbf3dde0887e5bf55dd1c4d), [`8665cfe66`](https://github.com/keystonejs/keystone/commit/8665cfe66016e0356681413e31f80a6d5586d364), [`399e6db39`](https://github.com/keystonejs/keystone/commit/399e6db39c51cf9e8bbf3dde0887e5bf55dd1c4d), [`5cd94b2a3`](https://github.com/keystonejs/keystone/commit/5cd94b2a32b3eddaf00ad77229f7e9664899c3b9), [`9e450d6b3`](https://github.com/keystonejs/keystone/commit/9e450d6b326e2ba5f46e49ecf53b6bd7a627e9ca), [`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6)]: + - @keystone-next/keystone@15.0.0 + - @keystone-next/types@16.0.0 + - @keystone-next/admin-ui@13.0.0 + - @keystone-next/fields@6.0.0 + - @keystone-next/auth@20.0.0 + - @keystone-next/cloudinary@3.0.6 + - @keystone-next/server-side-graphql-client-legacy@3.0.1 + ## 2.0.0 ### Major Changes diff --git a/examples-next/ecommerce/package.json b/examples-next/ecommerce/package.json index 5ad123a1df2..11972a27b1a 100644 --- a/examples-next/ecommerce/package.json +++ b/examples-next/ecommerce/package.json @@ -1,6 +1,6 @@ { "name": "@keystone-next/example-ecommerce", - "version": "2.0.0", + "version": "2.0.1", "private": true, "author": "Wes Bos & Jed Watson", "license": "MIT", @@ -16,13 +16,13 @@ "@babel/preset-react": "^7.12.13", "@babel/preset-typescript": "^7.13.0", "@babel/runtime": "^7.13.10", - "@keystone-next/admin-ui": "^12.0.1", - "@keystone-next/auth": "^19.0.0", - "@keystone-next/cloudinary": "^3.0.5", - "@keystone-next/fields": "^5.4.0", - "@keystone-next/keystone": "^14.0.1", - "@keystone-next/server-side-graphql-client-legacy": "^3.0.0", - "@keystone-next/types": "^15.0.1", + "@keystone-next/admin-ui": "^13.0.0", + "@keystone-next/auth": "^20.0.0", + "@keystone-next/cloudinary": "^3.0.6", + "@keystone-next/fields": "^6.0.0", + "@keystone-next/keystone": "^15.0.0", + "@keystone-next/server-side-graphql-client-legacy": "^3.0.1", + "@keystone-next/types": "^16.0.0", "@types/nodemailer": "^6.4.1", "dotenv": "^8.2.0", "next": "^10.0.9", @@ -32,7 +32,7 @@ "stripe": "^8.139.0" }, "devDependencies": { - "@keystone-next/test-utils-legacy": "^15.0.0", + "@keystone-next/test-utils-legacy": "^16.0.0", "typescript": "^4.2.3" }, "engines": { diff --git a/examples-next/graphql-api-endpoint/CHANGELOG.md b/examples-next/graphql-api-endpoint/CHANGELOG.md index 6b5f9a59189..a06b29987d0 100644 --- a/examples-next/graphql-api-endpoint/CHANGELOG.md +++ b/examples-next/graphql-api-endpoint/CHANGELOG.md @@ -1,5 +1,15 @@ # keystone-next-app +## 0.0.5 + +### Patch Changes + +- Updated dependencies [[`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6), [`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6), [`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6), [`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6), [`1a4db6c87`](https://github.com/keystonejs/keystone/commit/1a4db6c87c17706c8e5db2816e0a6b1b8f79e217), [`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6), [`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6), [`399e6db39`](https://github.com/keystonejs/keystone/commit/399e6db39c51cf9e8bbf3dde0887e5bf55dd1c4d), [`8665cfe66`](https://github.com/keystonejs/keystone/commit/8665cfe66016e0356681413e31f80a6d5586d364), [`4fa66ac1f`](https://github.com/keystonejs/keystone/commit/4fa66ac1fc6fd0a43da17dd90797733e8c958785), [`399e6db39`](https://github.com/keystonejs/keystone/commit/399e6db39c51cf9e8bbf3dde0887e5bf55dd1c4d), [`5cd94b2a3`](https://github.com/keystonejs/keystone/commit/5cd94b2a32b3eddaf00ad77229f7e9664899c3b9), [`9e450d6b3`](https://github.com/keystonejs/keystone/commit/9e450d6b326e2ba5f46e49ecf53b6bd7a627e9ca), [`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6)]: + - @keystone-next/keystone@15.0.0 + - @keystone-next/fields@6.0.0 + - @keystone-next/fields-document@4.0.0 + - @keystone-next/auth@20.0.0 + ## 0.0.4 ### Patch Changes diff --git a/examples-next/graphql-api-endpoint/package.json b/examples-next/graphql-api-endpoint/package.json index a5debcce8ee..388bcb70354 100644 --- a/examples-next/graphql-api-endpoint/package.json +++ b/examples-next/graphql-api-endpoint/package.json @@ -1,6 +1,6 @@ { "name": "keystone-next-app", - "version": "0.0.4", + "version": "0.0.5", "private": true, "scripts": { "dev": "keystone-next dev", @@ -9,10 +9,10 @@ }, "dependencies": { "@babel/runtime": "^7.13.10", - "@keystone-next/auth": "^19.0.0", - "@keystone-next/fields": "^5.3.0", - "@keystone-next/fields-document": "^3.2.0", - "@keystone-next/keystone": "^14.0.0", + "@keystone-next/auth": "^20.0.0", + "@keystone-next/fields": "^6.0.0", + "@keystone-next/fields-document": "^4.0.0", + "@keystone-next/keystone": "^15.0.0", "apollo-server-micro": "^2.22.2" }, "prisma": { diff --git a/examples-next/roles/CHANGELOG.md b/examples-next/roles/CHANGELOG.md index 3b380538e33..cb0842aa4b0 100644 --- a/examples-next/roles/CHANGELOG.md +++ b/examples-next/roles/CHANGELOG.md @@ -1,5 +1,18 @@ # @keystone-next/example-roles +## 2.0.1 + +### Patch Changes + +- [#5280](https://github.com/keystonejs/keystone/pull/5280) [`9e450d6b3`](https://github.com/keystonejs/keystone/commit/9e450d6b326e2ba5f46e49ecf53b6bd7a627e9ca) Thanks [@timleslie](https://github.com/timleslie)! - Removed the `adapters-mongoose-legacy` packages dependency. + +- Updated dependencies [[`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6), [`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6), [`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6), [`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6), [`1a4db6c87`](https://github.com/keystonejs/keystone/commit/1a4db6c87c17706c8e5db2816e0a6b1b8f79e217), [`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6), [`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6), [`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6), [`399e6db39`](https://github.com/keystonejs/keystone/commit/399e6db39c51cf9e8bbf3dde0887e5bf55dd1c4d), [`8665cfe66`](https://github.com/keystonejs/keystone/commit/8665cfe66016e0356681413e31f80a6d5586d364), [`399e6db39`](https://github.com/keystonejs/keystone/commit/399e6db39c51cf9e8bbf3dde0887e5bf55dd1c4d), [`5cd94b2a3`](https://github.com/keystonejs/keystone/commit/5cd94b2a32b3eddaf00ad77229f7e9664899c3b9), [`9e450d6b3`](https://github.com/keystonejs/keystone/commit/9e450d6b326e2ba5f46e49ecf53b6bd7a627e9ca), [`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6)]: + - @keystone-next/keystone@15.0.0 + - @keystone-next/types@16.0.0 + - @keystone-next/admin-ui@13.0.0 + - @keystone-next/fields@6.0.0 + - @keystone-next/auth@20.0.0 + ## 2.0.0 ### Major Changes diff --git a/examples-next/roles/package.json b/examples-next/roles/package.json index 450a12e0793..eeceb45e18e 100644 --- a/examples-next/roles/package.json +++ b/examples-next/roles/package.json @@ -1,6 +1,6 @@ { "name": "@keystone-next/example-roles", - "version": "2.0.0", + "version": "2.0.1", "private": true, "license": "MIT", "scripts": { @@ -9,11 +9,11 @@ "build": "keystone-next build" }, "dependencies": { - "@keystone-next/admin-ui": "^12.0.1", - "@keystone-next/auth": "^19.0.0", - "@keystone-next/fields": "^5.4.0", - "@keystone-next/keystone": "^14.0.1", - "@keystone-next/types": "^15.0.1", + "@keystone-next/admin-ui": "^13.0.0", + "@keystone-next/auth": "^20.0.0", + "@keystone-next/fields": "^6.0.0", + "@keystone-next/keystone": "^15.0.0", + "@keystone-next/types": "^16.0.0", "next": "^10.0.9", "react": "^17.0.2", "react-dom": "^17.0.2" diff --git a/examples-next/sandbox/CHANGELOG.md b/examples-next/sandbox/CHANGELOG.md index c86dfcbe2fb..4b05969e576 100644 --- a/examples-next/sandbox/CHANGELOG.md +++ b/examples-next/sandbox/CHANGELOG.md @@ -1,5 +1,15 @@ # @keystone-next/example-sandbox +## 1.0.5 + +### Patch Changes + +- Updated dependencies [[`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6), [`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6), [`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6), [`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6), [`1a4db6c87`](https://github.com/keystonejs/keystone/commit/1a4db6c87c17706c8e5db2816e0a6b1b8f79e217), [`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6), [`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6), [`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6), [`399e6db39`](https://github.com/keystonejs/keystone/commit/399e6db39c51cf9e8bbf3dde0887e5bf55dd1c4d), [`8665cfe66`](https://github.com/keystonejs/keystone/commit/8665cfe66016e0356681413e31f80a6d5586d364), [`399e6db39`](https://github.com/keystonejs/keystone/commit/399e6db39c51cf9e8bbf3dde0887e5bf55dd1c4d), [`5cd94b2a3`](https://github.com/keystonejs/keystone/commit/5cd94b2a32b3eddaf00ad77229f7e9664899c3b9), [`9e450d6b3`](https://github.com/keystonejs/keystone/commit/9e450d6b326e2ba5f46e49ecf53b6bd7a627e9ca), [`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6)]: + - @keystone-next/keystone@15.0.0 + - @keystone-next/admin-ui@13.0.0 + - @keystone-next/fields@6.0.0 + - @keystone-next/auth@20.0.0 + ## 1.0.4 ### Patch Changes diff --git a/examples-next/sandbox/package.json b/examples-next/sandbox/package.json index 9406a2b2248..4ee80e69812 100644 --- a/examples-next/sandbox/package.json +++ b/examples-next/sandbox/package.json @@ -1,6 +1,6 @@ { "name": "@keystone-next/example-sandbox", - "version": "1.0.4", + "version": "1.0.5", "private": true, "license": "MIT", "scripts": { @@ -8,10 +8,10 @@ "sandbox": "yarn && yarn dev" }, "dependencies": { - "@keystone-next/admin-ui": "^12.0.1", - "@keystone-next/auth": "^19.0.0", - "@keystone-next/fields": "^5.3.0", - "@keystone-next/keystone": "^14.0.0" + "@keystone-next/admin-ui": "^13.0.0", + "@keystone-next/auth": "^20.0.0", + "@keystone-next/fields": "^6.0.0", + "@keystone-next/keystone": "^15.0.0" }, "engines": { "node": ">=10.0.0" diff --git a/examples-next/todo/CHANGELOG.md b/examples-next/todo/CHANGELOG.md index 6a3aaf883db..cd848a0e496 100644 --- a/examples-next/todo/CHANGELOG.md +++ b/examples-next/todo/CHANGELOG.md @@ -1,5 +1,15 @@ # @keystone-next/example-todo +## 1.0.5 + +### Patch Changes + +- Updated dependencies [[`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6), [`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6), [`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6), [`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6), [`1a4db6c87`](https://github.com/keystonejs/keystone/commit/1a4db6c87c17706c8e5db2816e0a6b1b8f79e217), [`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6), [`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6), [`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6), [`399e6db39`](https://github.com/keystonejs/keystone/commit/399e6db39c51cf9e8bbf3dde0887e5bf55dd1c4d), [`8665cfe66`](https://github.com/keystonejs/keystone/commit/8665cfe66016e0356681413e31f80a6d5586d364), [`399e6db39`](https://github.com/keystonejs/keystone/commit/399e6db39c51cf9e8bbf3dde0887e5bf55dd1c4d), [`5cd94b2a3`](https://github.com/keystonejs/keystone/commit/5cd94b2a32b3eddaf00ad77229f7e9664899c3b9), [`9e450d6b3`](https://github.com/keystonejs/keystone/commit/9e450d6b326e2ba5f46e49ecf53b6bd7a627e9ca), [`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6)]: + - @keystone-next/keystone@15.0.0 + - @keystone-next/admin-ui@13.0.0 + - @keystone-next/fields@6.0.0 + - @keystone-next/auth@20.0.0 + ## 1.0.4 ### Patch Changes diff --git a/examples-next/todo/package.json b/examples-next/todo/package.json index b01a615e319..4076c182260 100644 --- a/examples-next/todo/package.json +++ b/examples-next/todo/package.json @@ -1,6 +1,6 @@ { "name": "@keystone-next/example-todo", - "version": "1.0.4", + "version": "1.0.5", "private": true, "license": "MIT", "scripts": { @@ -12,10 +12,10 @@ "deploy": "keystone-next deploy" }, "dependencies": { - "@keystone-next/admin-ui": "^12.0.1", - "@keystone-next/auth": "^19.0.0", - "@keystone-next/fields": "^5.3.0", - "@keystone-next/keystone": "^14.0.0", + "@keystone-next/admin-ui": "^13.0.0", + "@keystone-next/auth": "^20.0.0", + "@keystone-next/fields": "^6.0.0", + "@keystone-next/keystone": "^15.0.0", "dotenv": "^8.2.0", "next": "^10.0.9", "react": "^17.0.2", diff --git a/packages-next/admin-ui-utils/CHANGELOG.md b/packages-next/admin-ui-utils/CHANGELOG.md index 6333bc0ce27..279e09cdebd 100644 --- a/packages-next/admin-ui-utils/CHANGELOG.md +++ b/packages-next/admin-ui-utils/CHANGELOG.md @@ -1,5 +1,12 @@ # @keystone-next/admin-ui-utils +## 3.0.3 + +### Patch Changes + +- Updated dependencies [[`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6), [`399e6db39`](https://github.com/keystonejs/keystone/commit/399e6db39c51cf9e8bbf3dde0887e5bf55dd1c4d)]: + - @keystone-next/types@16.0.0 + ## 3.0.2 ### Patch Changes diff --git a/packages-next/admin-ui-utils/package.json b/packages-next/admin-ui-utils/package.json index 9075df00353..c74974e716a 100644 --- a/packages-next/admin-ui-utils/package.json +++ b/packages-next/admin-ui-utils/package.json @@ -1,13 +1,13 @@ { "name": "@keystone-next/admin-ui-utils", - "version": "3.0.2", + "version": "3.0.3", "main": "dist/admin-ui-utils.cjs.js", "module": "dist/admin-ui-utils.esm.js", "license": "MIT", "dependencies": { "@babel/runtime": "^7.13.10", "@emotion/weak-memoize": "^0.2.5", - "@keystone-next/types": "^15.0.0", + "@keystone-next/types": "^16.0.0", "@keystone-ui/core": "^2.0.2", "@types/react": "^17.0.3", "fast-deep-equal": "^3.1.3", diff --git a/packages-next/admin-ui/CHANGELOG.md b/packages-next/admin-ui/CHANGELOG.md index 19f39e8e616..5d6d995a74d 100644 --- a/packages-next/admin-ui/CHANGELOG.md +++ b/packages-next/admin-ui/CHANGELOG.md @@ -1,5 +1,20 @@ # @keystone-next/admin-ui +## 13.0.0 + +### Major Changes + +- [#5266](https://github.com/keystonejs/keystone/pull/5266) [`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6) Thanks [@mitchellhamilton](https://github.com/mitchellhamilton)! - Updated Next API route template to use `createSystem` without the `dotKeystonePath` argument and import from the new Prisma Client location. + +### Patch Changes + +- [#5280](https://github.com/keystonejs/keystone/pull/5280) [`9e450d6b3`](https://github.com/keystonejs/keystone/commit/9e450d6b326e2ba5f46e49ecf53b6bd7a627e9ca) Thanks [@timleslie](https://github.com/timleslie)! - Removed the `adapters-mongoose-legacy` packages dependency. + +- Updated dependencies [[`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6), [`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6), [`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6), [`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6), [`1a4db6c87`](https://github.com/keystonejs/keystone/commit/1a4db6c87c17706c8e5db2816e0a6b1b8f79e217), [`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6), [`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6), [`399e6db39`](https://github.com/keystonejs/keystone/commit/399e6db39c51cf9e8bbf3dde0887e5bf55dd1c4d), [`5cd94b2a3`](https://github.com/keystonejs/keystone/commit/5cd94b2a32b3eddaf00ad77229f7e9664899c3b9), [`9e450d6b3`](https://github.com/keystonejs/keystone/commit/9e450d6b326e2ba5f46e49ecf53b6bd7a627e9ca), [`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6)]: + - @keystone-next/keystone@15.0.0 + - @keystone-next/types@16.0.0 + - @keystone-next/admin-ui-utils@3.0.3 + ## 12.0.1 ### Patch Changes diff --git a/packages-next/admin-ui/package.json b/packages-next/admin-ui/package.json index 7ccc621da75..70accd8a3bc 100644 --- a/packages-next/admin-ui/package.json +++ b/packages-next/admin-ui/package.json @@ -1,15 +1,15 @@ { "name": "@keystone-next/admin-ui", - "version": "12.0.1", + "version": "13.0.0", "license": "MIT", "dependencies": { "@apollo/client": "^3.3.13", "@babel/runtime": "^7.13.10", "@emotion/hash": "^0.8.0", "@emotion/weak-memoize": "^0.2.5", - "@keystone-next/admin-ui-utils": "^3.0.2", - "@keystone-next/keystone": "^14.0.0", - "@keystone-next/types": "^15.0.0", + "@keystone-next/admin-ui-utils": "^3.0.3", + "@keystone-next/keystone": "^15.0.0", + "@keystone-next/types": "^16.0.0", "@keystone-ui/button": "^3.0.1", "@keystone-ui/core": "^2.0.2", "@keystone-ui/fields": "^2.0.2", diff --git a/packages-next/auth/CHANGELOG.md b/packages-next/auth/CHANGELOG.md index ba821903100..c104623e8c6 100644 --- a/packages-next/auth/CHANGELOG.md +++ b/packages-next/auth/CHANGELOG.md @@ -1,5 +1,16 @@ # @keystone-next/auth +## 20.0.0 + +### Patch Changes + +- Updated dependencies [[`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6), [`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6), [`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6), [`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6), [`1a4db6c87`](https://github.com/keystonejs/keystone/commit/1a4db6c87c17706c8e5db2816e0a6b1b8f79e217), [`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6), [`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6), [`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6), [`399e6db39`](https://github.com/keystonejs/keystone/commit/399e6db39c51cf9e8bbf3dde0887e5bf55dd1c4d), [`8665cfe66`](https://github.com/keystonejs/keystone/commit/8665cfe66016e0356681413e31f80a6d5586d364), [`399e6db39`](https://github.com/keystonejs/keystone/commit/399e6db39c51cf9e8bbf3dde0887e5bf55dd1c4d), [`5cd94b2a3`](https://github.com/keystonejs/keystone/commit/5cd94b2a32b3eddaf00ad77229f7e9664899c3b9), [`9e450d6b3`](https://github.com/keystonejs/keystone/commit/9e450d6b326e2ba5f46e49ecf53b6bd7a627e9ca), [`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6)]: + - @keystone-next/keystone@15.0.0 + - @keystone-next/types@16.0.0 + - @keystone-next/admin-ui@13.0.0 + - @keystone-next/fields@6.0.0 + - @keystone-next/admin-ui-utils@3.0.3 + ## 19.0.0 ### Patch Changes diff --git a/packages-next/auth/package.json b/packages-next/auth/package.json index 987d969ba74..85712f40b8c 100644 --- a/packages-next/auth/package.json +++ b/packages-next/auth/package.json @@ -1,6 +1,6 @@ { "name": "@keystone-next/auth", - "version": "19.0.0", + "version": "20.0.0", "license": "MIT", "main": "dist/auth.cjs.js", "module": "dist/auth.esm.js", @@ -10,9 +10,9 @@ "dependencies": { "@babel/runtime": "^7.13.10", "@graphql-tools/merge": "^6.2.11", - "@keystone-next/admin-ui-utils": "^3.0.2", - "@keystone-next/fields": "^5.3.0", - "@keystone-next/types": "^15.0.0", + "@keystone-next/admin-ui-utils": "^3.0.3", + "@keystone-next/fields": "^6.0.0", + "@keystone-next/types": "^16.0.0", "@keystone-ui/button": "^3.0.1", "@keystone-ui/core": "^2.0.2", "@keystone-ui/fields": "^2.0.2", @@ -22,13 +22,13 @@ "graphql": "^15.5.0" }, "devDependencies": { - "@keystone-next/admin-ui": "^12.0.1", - "@keystone-next/keystone": "^14.0.0", + "@keystone-next/admin-ui": "^13.0.0", + "@keystone-next/keystone": "^15.0.0", "react": "^17.0.2" }, "peerDependencies": { - "@keystone-next/admin-ui": "^12.0.1", - "@keystone-next/keystone": "^14.0.0", + "@keystone-next/admin-ui": "^13.0.0", + "@keystone-next/keystone": "^15.0.0", "react": "^17.0.2" }, "preconstruct": { diff --git a/packages-next/cloudinary/CHANGELOG.md b/packages-next/cloudinary/CHANGELOG.md index eeeb36b5df2..72a7b72a8df 100644 --- a/packages-next/cloudinary/CHANGELOG.md +++ b/packages-next/cloudinary/CHANGELOG.md @@ -1,5 +1,14 @@ # @keystone-next/cloudinary +## 3.0.6 + +### Patch Changes + +- Updated dependencies [[`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6), [`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6), [`4fa66ac1f`](https://github.com/keystonejs/keystone/commit/4fa66ac1fc6fd0a43da17dd90797733e8c958785), [`399e6db39`](https://github.com/keystonejs/keystone/commit/399e6db39c51cf9e8bbf3dde0887e5bf55dd1c4d), [`9e450d6b3`](https://github.com/keystonejs/keystone/commit/9e450d6b326e2ba5f46e49ecf53b6bd7a627e9ca)]: + - @keystone-next/types@16.0.0 + - @keystone-next/admin-ui@13.0.0 + - @keystone-next/fields-cloudinary-image-legacy@5.0.0 + ## 3.0.5 ### Patch Changes diff --git a/packages-next/cloudinary/package.json b/packages-next/cloudinary/package.json index a29a627c245..5e5ce344e42 100644 --- a/packages-next/cloudinary/package.json +++ b/packages-next/cloudinary/package.json @@ -1,15 +1,15 @@ { "name": "@keystone-next/cloudinary", - "version": "3.0.5", + "version": "3.0.6", "license": "MIT", "main": "dist/cloudinary.cjs.js", "module": "dist/cloudinary.esm.js", "dependencies": { "@babel/runtime": "^7.13.10", - "@keystone-next/admin-ui": "^12.0.0", - "@keystone-next/fields-cloudinary-image-legacy": "^4.0.0", + "@keystone-next/admin-ui": "^13.0.0", + "@keystone-next/fields-cloudinary-image-legacy": "^5.0.0", "@keystone-next/file-adapters-legacy": "^8.0.0", - "@keystone-next/types": "^15.0.1", + "@keystone-next/types": "^16.0.0", "@keystone-ui/button": "^3.0.1", "@keystone-ui/core": "^2.0.2", "@keystone-ui/fields": "^2.0.2", diff --git a/packages-next/fields-document/CHANGELOG.md b/packages-next/fields-document/CHANGELOG.md index cd4386e69dc..4651e67ffb5 100644 --- a/packages-next/fields-document/CHANGELOG.md +++ b/packages-next/fields-document/CHANGELOG.md @@ -1,5 +1,21 @@ # @keystone-next/fields-document +## 4.0.0 + +### Major Changes + +- [#5273](https://github.com/keystonejs/keystone/pull/5273) [`4fa66ac1f`](https://github.com/keystonejs/keystone/commit/4fa66ac1fc6fd0a43da17dd90797733e8c958785) Thanks [@timleslie](https://github.com/timleslie)! - Removed support for the `knex` and `mongoose` field adapters. + +### Patch Changes + +- Updated dependencies [[`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6), [`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6), [`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6), [`399e6db39`](https://github.com/keystonejs/keystone/commit/399e6db39c51cf9e8bbf3dde0887e5bf55dd1c4d), [`8665cfe66`](https://github.com/keystonejs/keystone/commit/8665cfe66016e0356681413e31f80a6d5586d364), [`4fa66ac1f`](https://github.com/keystonejs/keystone/commit/4fa66ac1fc6fd0a43da17dd90797733e8c958785), [`399e6db39`](https://github.com/keystonejs/keystone/commit/399e6db39c51cf9e8bbf3dde0887e5bf55dd1c4d), [`5cd94b2a3`](https://github.com/keystonejs/keystone/commit/5cd94b2a32b3eddaf00ad77229f7e9664899c3b9), [`9e450d6b3`](https://github.com/keystonejs/keystone/commit/9e450d6b326e2ba5f46e49ecf53b6bd7a627e9ca), [`4f0abec0b`](https://github.com/keystonejs/keystone/commit/4f0abec0b19c3495c1ae6d7dac49fb46253cf7b3)]: + - @keystone-next/types@16.0.0 + - @keystone-next/adapter-prisma-legacy@5.0.0 + - @keystone-next/admin-ui@13.0.0 + - @keystone-next/fields@6.0.0 + - @keystone-next/fields-legacy@25.0.0 + - @keystone-next/admin-ui-utils@3.0.3 + ## 3.2.1 ### Patch Changes diff --git a/packages-next/fields-document/package.json b/packages-next/fields-document/package.json index ae03e5a1406..5d9a058d517 100644 --- a/packages-next/fields-document/package.json +++ b/packages-next/fields-document/package.json @@ -1,7 +1,7 @@ { "name": "@keystone-next/fields-document", "description": "KeystoneJS Document Field Type", - "version": "3.2.1", + "version": "4.0.0", "main": "dist/fields-document.cjs.js", "module": "dist/fields-document.esm.js", "files": [ @@ -22,12 +22,12 @@ "@babel/runtime": "^7.13.10", "@braintree/sanitize-url": "^5.0.0", "@emotion/weak-memoize": "^0.2.5", - "@keystone-next/adapter-prisma-legacy": "^4.0.1", - "@keystone-next/admin-ui": "^12.0.1", - "@keystone-next/admin-ui-utils": "^3.0.2", - "@keystone-next/fields": "^5.4.0", - "@keystone-next/fields-legacy": "^24.0.0", - "@keystone-next/types": "^15.0.1", + "@keystone-next/adapter-prisma-legacy": "^5.0.0", + "@keystone-next/admin-ui": "^13.0.0", + "@keystone-next/admin-ui-utils": "^3.0.3", + "@keystone-next/fields": "^6.0.0", + "@keystone-next/fields-legacy": "^25.0.0", + "@keystone-next/types": "^16.0.0", "@keystone-ui/button": "^3.0.1", "@keystone-ui/core": "^2.0.2", "@keystone-ui/fields": "^2.0.2", diff --git a/packages-next/fields/CHANGELOG.md b/packages-next/fields/CHANGELOG.md index 38936d2d46a..0e58d408a8b 100644 --- a/packages-next/fields/CHANGELOG.md +++ b/packages-next/fields/CHANGELOG.md @@ -1,5 +1,26 @@ # @keystone-next/fields +## 6.0.0 + +### Major Changes + +- [#5256](https://github.com/keystonejs/keystone/pull/5256) [`399e6db39`](https://github.com/keystonejs/keystone/commit/399e6db39c51cf9e8bbf3dde0887e5bf55dd1c4d) Thanks [@timleslie](https://github.com/timleslie)! - Removed support for the `mongoId` field type. + +* [#5275](https://github.com/keystonejs/keystone/pull/5275) [`8665cfe66`](https://github.com/keystonejs/keystone/commit/8665cfe66016e0356681413e31f80a6d5586d364) Thanks [@timleslie](https://github.com/timleslie)! - Removed the `mongoId` field type. + +- [#5256](https://github.com/keystonejs/keystone/pull/5256) [`399e6db39`](https://github.com/keystonejs/keystone/commit/399e6db39c51cf9e8bbf3dde0887e5bf55dd1c4d) Thanks [@timleslie](https://github.com/timleslie)! - Removed support for the `knex` and `mongoose` database adapters. We now only support `prisma_postgresql` and `prisma_sqlite`. + +### Patch Changes + +- [#5280](https://github.com/keystonejs/keystone/pull/5280) [`9e450d6b3`](https://github.com/keystonejs/keystone/commit/9e450d6b326e2ba5f46e49ecf53b6bd7a627e9ca) Thanks [@timleslie](https://github.com/timleslie)! - Removed the `adapters-mongoose-legacy` packages dependency. + +- Updated dependencies [[`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6), [`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6), [`8665cfe66`](https://github.com/keystonejs/keystone/commit/8665cfe66016e0356681413e31f80a6d5586d364), [`4fa66ac1f`](https://github.com/keystonejs/keystone/commit/4fa66ac1fc6fd0a43da17dd90797733e8c958785), [`399e6db39`](https://github.com/keystonejs/keystone/commit/399e6db39c51cf9e8bbf3dde0887e5bf55dd1c4d), [`9e450d6b3`](https://github.com/keystonejs/keystone/commit/9e450d6b326e2ba5f46e49ecf53b6bd7a627e9ca)]: + - @keystone-next/types@16.0.0 + - @keystone-next/admin-ui@13.0.0 + - @keystone-next/fields-legacy@25.0.0 + - @keystone-next/fields-auto-increment-legacy@10.0.0 + - @keystone-next/admin-ui-utils@3.0.3 + ## 5.4.0 ### Minor Changes diff --git a/packages-next/fields/package.json b/packages-next/fields/package.json index 7762d4415b1..9a5df400395 100644 --- a/packages-next/fields/package.json +++ b/packages-next/fields/package.json @@ -1,21 +1,21 @@ { "name": "@keystone-next/fields", - "version": "5.4.0", + "version": "6.0.0", "license": "MIT", "main": "dist/fields.cjs.js", "module": "dist/fields.esm.js", "devDependencies": { - "@keystone-next/server-side-graphql-client-legacy": "3.0.0", - "@keystone-next/test-utils-legacy": "15.0.0", + "@keystone-next/server-side-graphql-client-legacy": "3.0.1", + "@keystone-next/test-utils-legacy": "16.0.0", "typescript": "^4.2.3" }, "dependencies": { "@babel/runtime": "^7.13.10", - "@keystone-next/admin-ui": "^12.0.0", - "@keystone-next/admin-ui-utils": "^3.0.2", - "@keystone-next/fields-auto-increment-legacy": "^9.0.0", - "@keystone-next/fields-legacy": "^24.0.0", - "@keystone-next/types": "^15.0.1", + "@keystone-next/admin-ui": "^13.0.0", + "@keystone-next/admin-ui-utils": "^3.0.3", + "@keystone-next/fields-auto-increment-legacy": "^10.0.0", + "@keystone-next/fields-legacy": "^25.0.0", + "@keystone-next/types": "^16.0.0", "@keystone-ui/button": "^3.0.1", "@keystone-ui/core": "^2.0.2", "@keystone-ui/fields": "^2.0.2", diff --git a/packages-next/keystone/CHANGELOG.md b/packages-next/keystone/CHANGELOG.md index fb0025c0fc3..b2ed2132e6e 100644 --- a/packages-next/keystone/CHANGELOG.md +++ b/packages-next/keystone/CHANGELOG.md @@ -1,5 +1,47 @@ # @keystone-next/keystone +## 15.0.0 + +### Major Changes + +- [#5266](https://github.com/keystonejs/keystone/pull/5266) [`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6) Thanks [@mitchellhamilton](https://github.com/mitchellhamilton)! - Replaced `deploy`, `reset` and `generate` commands with `keystone-next prisma`. You can use these commands as replacements for the old commands: + + - `keystone-next deploy` -> `keystone-next prisma migrate deploy` + - `keystone-next reset` -> `keystone-next prisma migrate reset` + - `keystone-next generate` -> `keystone-next prisma migrate dev` + +* [#5266](https://github.com/keystonejs/keystone/pull/5266) [`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6) Thanks [@mitchellhamilton](https://github.com/mitchellhamilton)! - Removed the `none` case in `MigrationAction` and require that the PrismaClient is passed to be able to connect to the database for the `none-skip-client-generation` case. + +- [#5266](https://github.com/keystonejs/keystone/pull/5266) [`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6) Thanks [@mitchellhamilton](https://github.com/mitchellhamilton)! - Updated `keystone-next build` command to validate that the GraphQL and Prisma schemas are up to date. + +* [#5266](https://github.com/keystonejs/keystone/pull/5266) [`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6) Thanks [@mitchellhamilton](https://github.com/mitchellhamilton)! - Moved generated `schema.prisma` to the root of the project directory. Note that this also moves the location of migrations from `.keystone/prisma/migrations` to `migrations` at the root of the project. + +- [#5266](https://github.com/keystonejs/keystone/pull/5266) [`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6) Thanks [@mitchellhamilton](https://github.com/mitchellhamilton)! - Removed `dotKeystonePath` argument from `createSystem` + +* [#5256](https://github.com/keystonejs/keystone/pull/5256) [`399e6db39`](https://github.com/keystonejs/keystone/commit/399e6db39c51cf9e8bbf3dde0887e5bf55dd1c4d) Thanks [@timleslie](https://github.com/timleslie)! - Removed support for the `knex` and `mongoose` database adapters. We now only support `prisma_postgresql` and `prisma_sqlite`. + +- [#5285](https://github.com/keystonejs/keystone/pull/5285) [`5cd94b2a3`](https://github.com/keystonejs/keystone/commit/5cd94b2a32b3eddaf00ad77229f7e9664899c3b9) Thanks [@mitchellhamilton](https://github.com/mitchellhamilton)! - Removed `dropDatabase` method and config option + +* [#5266](https://github.com/keystonejs/keystone/pull/5266) [`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6) Thanks [@mitchellhamilton](https://github.com/mitchellhamilton)! - Moved generated GraphQL schema to `schema.graphql` to the root of the project. We recommend that you commit this file to your repo. + +### Minor Changes + +- [#5276](https://github.com/keystonejs/keystone/pull/5276) [`1a4db6c87`](https://github.com/keystonejs/keystone/commit/1a4db6c87c17706c8e5db2816e0a6b1b8f79e217) Thanks [@mitchellhamilton](https://github.com/mitchellhamilton)! - Added `artifacts` entrypoint. + +* [#5266](https://github.com/keystonejs/keystone/pull/5266) [`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6) Thanks [@mitchellhamilton](https://github.com/mitchellhamilton)! - Added `keystone-next postinstall` command which verifies that the Prisma and GraphQL schemas are up to date with a `--fix` flag to automatically update them without a prompt. + +### Patch Changes + +- [#5280](https://github.com/keystonejs/keystone/pull/5280) [`9e450d6b3`](https://github.com/keystonejs/keystone/commit/9e450d6b326e2ba5f46e49ecf53b6bd7a627e9ca) Thanks [@timleslie](https://github.com/timleslie)! - Removed the `adapters-mongoose-legacy` packages dependency. + +- Updated dependencies [[`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6), [`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6), [`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6), [`399e6db39`](https://github.com/keystonejs/keystone/commit/399e6db39c51cf9e8bbf3dde0887e5bf55dd1c4d), [`8665cfe66`](https://github.com/keystonejs/keystone/commit/8665cfe66016e0356681413e31f80a6d5586d364), [`399e6db39`](https://github.com/keystonejs/keystone/commit/399e6db39c51cf9e8bbf3dde0887e5bf55dd1c4d), [`5cd94b2a3`](https://github.com/keystonejs/keystone/commit/5cd94b2a32b3eddaf00ad77229f7e9664899c3b9), [`9e450d6b3`](https://github.com/keystonejs/keystone/commit/9e450d6b326e2ba5f46e49ecf53b6bd7a627e9ca), [`4f0abec0b`](https://github.com/keystonejs/keystone/commit/4f0abec0b19c3495c1ae6d7dac49fb46253cf7b3)]: + - @keystone-next/types@16.0.0 + - @keystone-next/adapter-prisma-legacy@5.0.0 + - @keystone-next/admin-ui@13.0.0 + - @keystone-next/fields@6.0.0 + - @keystone-next/keystone-legacy@23.0.0 + - @keystone-next/server-side-graphql-client-legacy@3.0.1 + ## 14.0.1 ### Patch Changes diff --git a/packages-next/keystone/package.json b/packages-next/keystone/package.json index a243bde9786..cc32556195f 100644 --- a/packages-next/keystone/package.json +++ b/packages-next/keystone/package.json @@ -1,6 +1,6 @@ { "name": "@keystone-next/keystone", - "version": "14.0.1", + "version": "15.0.0", "license": "MIT", "main": "dist/keystone.cjs.js", "module": "dist/keystone.esm.js", @@ -15,12 +15,12 @@ "@graphql-tools/schema": "^7.1.3", "@graphql-tools/utils": "^7.6.0", "@hapi/iron": "^6.0.0", - "@keystone-next/adapter-prisma-legacy": "4.0.1", - "@keystone-next/admin-ui": "^12.0.1", - "@keystone-next/fields": "^5.4.0", - "@keystone-next/keystone-legacy": "^22.0.0", - "@keystone-next/server-side-graphql-client-legacy": "3.0.0", - "@keystone-next/types": "^15.0.1", + "@keystone-next/adapter-prisma-legacy": "5.0.0", + "@keystone-next/admin-ui": "^13.0.0", + "@keystone-next/fields": "^6.0.0", + "@keystone-next/keystone-legacy": "^23.0.0", + "@keystone-next/server-side-graphql-client-legacy": "3.0.1", + "@keystone-next/types": "^16.0.0", "@prisma/sdk": "2.19.0", "@types/babel__core": "^7.1.14", "@types/cookie": "^0.4.0", diff --git a/packages-next/types/CHANGELOG.md b/packages-next/types/CHANGELOG.md index 6b8cf3ae78d..beb5561ad4a 100644 --- a/packages-next/types/CHANGELOG.md +++ b/packages-next/types/CHANGELOG.md @@ -1,5 +1,13 @@ # @keystone-next/types +## 16.0.0 + +### Major Changes + +- [#5266](https://github.com/keystonejs/keystone/pull/5266) [`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6) Thanks [@mitchellhamilton](https://github.com/mitchellhamilton)! - Removed the `none` case in `MigrationAction` and require that the PrismaClient is passed to be able to connect to the database for the `none-skip-client-generation` case. + +* [#5256](https://github.com/keystonejs/keystone/pull/5256) [`399e6db39`](https://github.com/keystonejs/keystone/commit/399e6db39c51cf9e8bbf3dde0887e5bf55dd1c4d) Thanks [@timleslie](https://github.com/timleslie)! - Removed support for the `knex` and `mongoose` database adapters. We now only support `prisma_postgresql` and `prisma_sqlite`. + ## 15.0.1 ### Patch Changes diff --git a/packages-next/types/package.json b/packages-next/types/package.json index a65a71e9350..d5fb74d8ad2 100644 --- a/packages-next/types/package.json +++ b/packages-next/types/package.json @@ -1,6 +1,6 @@ { "name": "@keystone-next/types", - "version": "15.0.1", + "version": "16.0.0", "license": "MIT", "main": "dist/types.cjs.js", "module": "dist/types.esm.js", diff --git a/packages/adapter-prisma/CHANGELOG.md b/packages/adapter-prisma/CHANGELOG.md index 3d96c4b7021..a7b1cd99d6c 100644 --- a/packages/adapter-prisma/CHANGELOG.md +++ b/packages/adapter-prisma/CHANGELOG.md @@ -1,5 +1,23 @@ # @keystonejs/adapter-prisma +## 5.0.0 + +### Major Changes + +- [#5285](https://github.com/keystonejs/keystone/pull/5285) [`5cd94b2a3`](https://github.com/keystonejs/keystone/commit/5cd94b2a32b3eddaf00ad77229f7e9664899c3b9) Thanks [@mitchellhamilton](https://github.com/mitchellhamilton)! - Removed `dropDatabase` method and config option + +### Minor Changes + +- [#5266](https://github.com/keystonejs/keystone/pull/5266) [`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6) Thanks [@mitchellhamilton](https://github.com/mitchellhamilton)! - Added `devMigrations` and `runPrototypeMigrations` exports. + +### Patch Changes + +- [#5281](https://github.com/keystonejs/keystone/pull/5281) [`4f0abec0b`](https://github.com/keystonejs/keystone/commit/4f0abec0b19c3495c1ae6d7dac49fb46253cf7b3) Thanks [@timleslie](https://github.com/timleslie)! - Removed the legacy `BaseKeystoneAdapter`, `BaseListAdapter`, and `BaseFieldAdapter` exports. + +- Updated dependencies [[`4fa66ac1f`](https://github.com/keystonejs/keystone/commit/4fa66ac1fc6fd0a43da17dd90797733e8c958785), [`4f0abec0b`](https://github.com/keystonejs/keystone/commit/4f0abec0b19c3495c1ae6d7dac49fb46253cf7b3)]: + - @keystone-next/fields-auto-increment-legacy@10.0.0 + - @keystone-next/keystone-legacy@23.0.0 + ## 4.0.1 ### Patch Changes diff --git a/packages/adapter-prisma/package.json b/packages/adapter-prisma/package.json index e817109edb4..29e90bcf4ed 100644 --- a/packages/adapter-prisma/package.json +++ b/packages/adapter-prisma/package.json @@ -3,15 +3,15 @@ "description": "KeystoneJS Prisma Database Adapter", "main": "dist/adapter-prisma-legacy.cjs.js", "module": "dist/adapter-prisma-legacy.esm.js", - "version": "4.0.1", + "version": "5.0.0", "author": "The KeystoneJS Development Team", "license": "MIT", "engines": { "node": ">=10.0.0" }, "dependencies": { - "@keystone-next/fields-auto-increment-legacy": "^9.0.0", - "@keystone-next/keystone-legacy": "^22.0.0", + "@keystone-next/fields-auto-increment-legacy": "^10.0.0", + "@keystone-next/keystone-legacy": "^23.0.0", "@keystone-next/utils-legacy": "^8.0.0", "@prisma/client": "2.19.0", "@prisma/migrate": "2.19.0", diff --git a/packages/fields-auto-increment/CHANGELOG.md b/packages/fields-auto-increment/CHANGELOG.md index 054eea7c560..d0b958fefc8 100644 --- a/packages/fields-auto-increment/CHANGELOG.md +++ b/packages/fields-auto-increment/CHANGELOG.md @@ -1,5 +1,17 @@ # @keystonejs/fields-auto-increment +## 10.0.0 + +### Major Changes + +- [#5273](https://github.com/keystonejs/keystone/pull/5273) [`4fa66ac1f`](https://github.com/keystonejs/keystone/commit/4fa66ac1fc6fd0a43da17dd90797733e8c958785) Thanks [@timleslie](https://github.com/timleslie)! - Removed support for the `knex` and `mongoose` field adapters. + +### Patch Changes + +- Updated dependencies [[`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6), [`8665cfe66`](https://github.com/keystonejs/keystone/commit/8665cfe66016e0356681413e31f80a6d5586d364), [`4fa66ac1f`](https://github.com/keystonejs/keystone/commit/4fa66ac1fc6fd0a43da17dd90797733e8c958785), [`5cd94b2a3`](https://github.com/keystonejs/keystone/commit/5cd94b2a32b3eddaf00ad77229f7e9664899c3b9), [`9e450d6b3`](https://github.com/keystonejs/keystone/commit/9e450d6b326e2ba5f46e49ecf53b6bd7a627e9ca), [`4f0abec0b`](https://github.com/keystonejs/keystone/commit/4f0abec0b19c3495c1ae6d7dac49fb46253cf7b3)]: + - @keystone-next/adapter-prisma-legacy@5.0.0 + - @keystone-next/fields-legacy@25.0.0 + ## 9.0.0 ### Major Changes diff --git a/packages/fields-auto-increment/package.json b/packages/fields-auto-increment/package.json index 91ec6a48638..505e5f7e12b 100644 --- a/packages/fields-auto-increment/package.json +++ b/packages/fields-auto-increment/package.json @@ -1,7 +1,7 @@ { "name": "@keystone-next/fields-auto-increment-legacy", "description": "KeystoneJS AutoIncrement Field Type", - "version": "9.0.0", + "version": "10.0.0", "author": "The KeystoneJS Development Team", "license": "MIT", "repository": "https://github.com/keystonejs/keystone/tree/master/packages/fields-auto-increment", @@ -11,8 +11,8 @@ }, "dependencies": { "@babel/runtime": "^7.13.10", - "@keystone-next/adapter-prisma-legacy": "^4.0.1", - "@keystone-next/fields-legacy": "^24.0.0" + "@keystone-next/adapter-prisma-legacy": "^5.0.0", + "@keystone-next/fields-legacy": "^25.0.0" }, "devDependencies": { "@keystone-next/server-side-graphql-client-legacy": "*" diff --git a/packages/fields-cloudinary-image/CHANGELOG.md b/packages/fields-cloudinary-image/CHANGELOG.md index a8ab01e51d5..4806d3bea20 100644 --- a/packages/fields-cloudinary-image/CHANGELOG.md +++ b/packages/fields-cloudinary-image/CHANGELOG.md @@ -1,5 +1,16 @@ # @keystonejs/fields-cloudinary-image +## 5.0.0 + +### Major Changes + +- [#5273](https://github.com/keystonejs/keystone/pull/5273) [`4fa66ac1f`](https://github.com/keystonejs/keystone/commit/4fa66ac1fc6fd0a43da17dd90797733e8c958785) Thanks [@timleslie](https://github.com/timleslie)! - Removed support for the `knex` and `mongoose` field adapters. + +### Patch Changes + +- Updated dependencies [[`8665cfe66`](https://github.com/keystonejs/keystone/commit/8665cfe66016e0356681413e31f80a6d5586d364), [`4fa66ac1f`](https://github.com/keystonejs/keystone/commit/4fa66ac1fc6fd0a43da17dd90797733e8c958785), [`9e450d6b3`](https://github.com/keystonejs/keystone/commit/9e450d6b326e2ba5f46e49ecf53b6bd7a627e9ca)]: + - @keystone-next/fields-legacy@25.0.0 + ## 4.0.0 ### Major Changes diff --git a/packages/fields-cloudinary-image/package.json b/packages/fields-cloudinary-image/package.json index 7b912ef28ca..d688d98620d 100644 --- a/packages/fields-cloudinary-image/package.json +++ b/packages/fields-cloudinary-image/package.json @@ -1,7 +1,7 @@ { "name": "@keystone-next/fields-cloudinary-image-legacy", "description": "KeystoneJS Cloudinary Image Field Type", - "version": "4.0.0", + "version": "5.0.0", "author": "The KeystoneJS Development Team", "license": "MIT", "repository": "https://github.com/keystonejs/keystone/tree/master/packages/fields-cloudinary-image", @@ -10,7 +10,7 @@ "node": ">=10.0.0" }, "dependencies": { - "@keystone-next/fields-legacy": "^24.0.0" + "@keystone-next/fields-legacy": "^25.0.0" }, "main": "dist/fields-cloudinary-image-legacy.cjs.js", "module": "dist/fields-cloudinary-image-legacy.esm.js", diff --git a/packages/fields/CHANGELOG.md b/packages/fields/CHANGELOG.md index 0512e6569eb..7b19c53a16b 100644 --- a/packages/fields/CHANGELOG.md +++ b/packages/fields/CHANGELOG.md @@ -1,5 +1,21 @@ # @keystonejs/fields +## 25.0.0 + +### Major Changes + +- [#5275](https://github.com/keystonejs/keystone/pull/5275) [`8665cfe66`](https://github.com/keystonejs/keystone/commit/8665cfe66016e0356681413e31f80a6d5586d364) Thanks [@timleslie](https://github.com/timleslie)! - Removed the `mongoId` field type. + +* [#5273](https://github.com/keystonejs/keystone/pull/5273) [`4fa66ac1f`](https://github.com/keystonejs/keystone/commit/4fa66ac1fc6fd0a43da17dd90797733e8c958785) Thanks [@timleslie](https://github.com/timleslie)! - Removed support for the `knex` and `mongoose` field adapters. + +### Patch Changes + +- [#5280](https://github.com/keystonejs/keystone/pull/5280) [`9e450d6b3`](https://github.com/keystonejs/keystone/commit/9e450d6b326e2ba5f46e49ecf53b6bd7a627e9ca) Thanks [@timleslie](https://github.com/timleslie)! - Removed the `adapters-mongoose-legacy` packages dependency. + +- Updated dependencies [[`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6), [`399e6db39`](https://github.com/keystonejs/keystone/commit/399e6db39c51cf9e8bbf3dde0887e5bf55dd1c4d), [`8665cfe66`](https://github.com/keystonejs/keystone/commit/8665cfe66016e0356681413e31f80a6d5586d364), [`399e6db39`](https://github.com/keystonejs/keystone/commit/399e6db39c51cf9e8bbf3dde0887e5bf55dd1c4d), [`5cd94b2a3`](https://github.com/keystonejs/keystone/commit/5cd94b2a32b3eddaf00ad77229f7e9664899c3b9), [`9e450d6b3`](https://github.com/keystonejs/keystone/commit/9e450d6b326e2ba5f46e49ecf53b6bd7a627e9ca), [`4f0abec0b`](https://github.com/keystonejs/keystone/commit/4f0abec0b19c3495c1ae6d7dac49fb46253cf7b3)]: + - @keystone-next/adapter-prisma-legacy@5.0.0 + - @keystone-next/fields@6.0.0 + ## 24.0.0 ### Major Changes diff --git a/packages/fields/package.json b/packages/fields/package.json index 7a07571b8d2..ba3f5286e11 100644 --- a/packages/fields/package.json +++ b/packages/fields/package.json @@ -3,7 +3,7 @@ "description": "KeystoneJS Field Types including Text, Password, Integer, and more.", "homepage": "https://github.com/keystonejs/keystone", "repository": "https://github.com/keystonejs/keystone/tree/master/packages/fields", - "version": "24.0.0", + "version": "25.0.0", "main": "dist/fields-legacy.cjs.js", "module": "dist/fields-legacy.esm.js", "author": "The KeystoneJS Development Team", @@ -14,8 +14,8 @@ "dependencies": { "@babel/runtime": "^7.13.10", "@keystone-next/access-control-legacy": "^9.0.1", - "@keystone-next/adapter-prisma-legacy": "^4.0.1", - "@keystone-next/fields": "5.4.0", + "@keystone-next/adapter-prisma-legacy": "^5.0.0", + "@keystone-next/fields": "6.0.0", "@keystone-next/utils-legacy": "^8.0.0", "apollo-errors": "^1.9.0", "bcryptjs": "^2.4.3", diff --git a/packages/keystone/CHANGELOG.md b/packages/keystone/CHANGELOG.md index ec0d68511e7..44a4270cc14 100644 --- a/packages/keystone/CHANGELOG.md +++ b/packages/keystone/CHANGELOG.md @@ -1,5 +1,11 @@ # @keystonejs/keystone +## 23.0.0 + +### Major Changes + +- [#5281](https://github.com/keystonejs/keystone/pull/5281) [`4f0abec0b`](https://github.com/keystonejs/keystone/commit/4f0abec0b19c3495c1ae6d7dac49fb46253cf7b3) Thanks [@timleslie](https://github.com/timleslie)! - Removed the legacy `BaseKeystoneAdapter`, `BaseListAdapter`, and `BaseFieldAdapter` exports. + ## 22.0.0 ### Major Changes diff --git a/packages/keystone/package.json b/packages/keystone/package.json index 86e4b860a47..3e40db457ea 100644 --- a/packages/keystone/package.json +++ b/packages/keystone/package.json @@ -1,7 +1,7 @@ { "name": "@keystone-next/keystone-legacy", "description": "The main @keystonejs class & CLI. This is where the magic happens.", - "version": "22.0.0", + "version": "23.0.0", "author": "The KeystoneJS Development Team", "license": "MIT", "engines": { @@ -25,7 +25,7 @@ "stack-utils": "^2.0.3" }, "devDependencies": { - "@keystone-next/fields-legacy": "^24.0.0", + "@keystone-next/fields-legacy": "^25.0.0", "@keystone-next/test-utils-legacy": "*", "graphql": "^15.5.0" }, diff --git a/packages/server-side-graphql-client/CHANGELOG.md b/packages/server-side-graphql-client/CHANGELOG.md index 8edf753c850..325dd5f710d 100644 --- a/packages/server-side-graphql-client/CHANGELOG.md +++ b/packages/server-side-graphql-client/CHANGELOG.md @@ -1,5 +1,12 @@ # @keystonejs/server-side-graphql-client +## 3.0.1 + +### Patch Changes + +- Updated dependencies [[`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6), [`399e6db39`](https://github.com/keystonejs/keystone/commit/399e6db39c51cf9e8bbf3dde0887e5bf55dd1c4d)]: + - @keystone-next/types@16.0.0 + ## 3.0.0 ### Major Changes diff --git a/packages/server-side-graphql-client/package.json b/packages/server-side-graphql-client/package.json index f766a15be8b..b90293fd5f4 100644 --- a/packages/server-side-graphql-client/package.json +++ b/packages/server-side-graphql-client/package.json @@ -1,7 +1,7 @@ { "name": "@keystone-next/server-side-graphql-client-legacy", "description": "A library for running server-side graphQL queries and mutations in Keystone.", - "version": "3.0.0", + "version": "3.0.1", "author": "The KeystoneJS Development Team", "license": "MIT", "homepage": "https://github.com/keystonejs/keystone", @@ -12,7 +12,7 @@ "node": ">=10.0.0" }, "dependencies": { - "@keystone-next/types": "^15.0.1", + "@keystone-next/types": "^16.0.0", "graphql": "^15.5.0" }, "devDependencies": { diff --git a/packages/test-utils/CHANGELOG.md b/packages/test-utils/CHANGELOG.md index 39a24700b9b..4f69ea0491d 100644 --- a/packages/test-utils/CHANGELOG.md +++ b/packages/test-utils/CHANGELOG.md @@ -1,5 +1,24 @@ # @keystonejs/test-utils +## 16.0.0 + +### Major Changes + +- [#5276](https://github.com/keystonejs/keystone/pull/5276) [`1a4db6c87`](https://github.com/keystonejs/keystone/commit/1a4db6c87c17706c8e5db2816e0a6b1b8f79e217) Thanks [@mitchellhamilton](https://github.com/mitchellhamilton)! - Removed usage of `getDbSchemaName`, `getPrismaPath`, `migrationMode` and `dropDatabase` adapter options. Note this means that dropping the database and running migrations will now only happen when creating a keystone instance from `setupFromConfig` rather than on every `keystone.connect` + +* [#5256](https://github.com/keystonejs/keystone/pull/5256) [`399e6db39`](https://github.com/keystonejs/keystone/commit/399e6db39c51cf9e8bbf3dde0887e5bf55dd1c4d) Thanks [@timleslie](https://github.com/timleslie)! - Removed support for the `knex` and `mongoose` database adapters. We now only support `prisma_postgresql` and `prisma_sqlite`. + +### Patch Changes + +- [#5266](https://github.com/keystonejs/keystone/pull/5266) [`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6) Thanks [@mitchellhamilton](https://github.com/mitchellhamilton)! - Removed `dotKeystonePath` argument from `createSystem` + +* [#5280](https://github.com/keystonejs/keystone/pull/5280) [`9e450d6b3`](https://github.com/keystonejs/keystone/commit/9e450d6b326e2ba5f46e49ecf53b6bd7a627e9ca) Thanks [@timleslie](https://github.com/timleslie)! - Removed the `adapters-mongoose-legacy` packages dependency. + +* Updated dependencies [[`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6), [`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6), [`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6), [`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6), [`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6), [`1a4db6c87`](https://github.com/keystonejs/keystone/commit/1a4db6c87c17706c8e5db2816e0a6b1b8f79e217), [`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6), [`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6), [`399e6db39`](https://github.com/keystonejs/keystone/commit/399e6db39c51cf9e8bbf3dde0887e5bf55dd1c4d), [`5cd94b2a3`](https://github.com/keystonejs/keystone/commit/5cd94b2a32b3eddaf00ad77229f7e9664899c3b9), [`9e450d6b3`](https://github.com/keystonejs/keystone/commit/9e450d6b326e2ba5f46e49ecf53b6bd7a627e9ca), [`4f0abec0b`](https://github.com/keystonejs/keystone/commit/4f0abec0b19c3495c1ae6d7dac49fb46253cf7b3), [`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6)]: + - @keystone-next/keystone@15.0.0 + - @keystone-next/adapter-prisma-legacy@5.0.0 + - @keystone-next/keystone-legacy@23.0.0 + ## 15.0.0 ### Major Changes diff --git a/packages/test-utils/package.json b/packages/test-utils/package.json index bcb2ca6f27c..a598546c5b3 100644 --- a/packages/test-utils/package.json +++ b/packages/test-utils/package.json @@ -1,7 +1,7 @@ { "name": "@keystone-next/test-utils-legacy", "description": "Common utilities used while testing @keystonejs/* packages.", - "version": "15.0.0", + "version": "16.0.0", "author": "The KeystoneJS Development Team", "license": "MIT", "main": "dist/test-utils-legacy.cjs.js", @@ -10,9 +10,9 @@ "node": ">=10.0.0" }, "dependencies": { - "@keystone-next/adapter-prisma-legacy": "^4.0.1", - "@keystone-next/keystone": "14.0.1", - "@keystone-next/keystone-legacy": "^22.0.0", + "@keystone-next/adapter-prisma-legacy": "^5.0.0", + "@keystone-next/keystone": "15.0.0", + "@keystone-next/keystone-legacy": "^23.0.0", "express": "^4.17.1", "memoize-one": "^5.1.1", "supertest-light": "^1.0.3" diff --git a/tests/api-tests/CHANGELOG.md b/tests/api-tests/CHANGELOG.md index 1f81d4e2000..5070c4cdf93 100644 --- a/tests/api-tests/CHANGELOG.md +++ b/tests/api-tests/CHANGELOG.md @@ -1,5 +1,16 @@ # @keystonejs/api-tests +## 9.2.2 + +### Patch Changes + +- [#5280](https://github.com/keystonejs/keystone/pull/5280) [`9e450d6b3`](https://github.com/keystonejs/keystone/commit/9e450d6b326e2ba5f46e49ecf53b6bd7a627e9ca) Thanks [@timleslie](https://github.com/timleslie)! - Removed the `adapters-mongoose-legacy` packages dependency. + +- Updated dependencies [[`1a4db6c87`](https://github.com/keystonejs/keystone/commit/1a4db6c87c17706c8e5db2816e0a6b1b8f79e217), [`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6), [`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6), [`8665cfe66`](https://github.com/keystonejs/keystone/commit/8665cfe66016e0356681413e31f80a6d5586d364), [`4fa66ac1f`](https://github.com/keystonejs/keystone/commit/4fa66ac1fc6fd0a43da17dd90797733e8c958785), [`399e6db39`](https://github.com/keystonejs/keystone/commit/399e6db39c51cf9e8bbf3dde0887e5bf55dd1c4d), [`9e450d6b3`](https://github.com/keystonejs/keystone/commit/9e450d6b326e2ba5f46e49ecf53b6bd7a627e9ca)]: + - @keystone-next/test-utils-legacy@16.0.0 + - @keystone-next/types@16.0.0 + - @keystone-next/fields-legacy@25.0.0 + ## 9.2.1 ### Patch Changes diff --git a/tests/api-tests/package.json b/tests/api-tests/package.json index 39d323b9f46..27a37c58a75 100644 --- a/tests/api-tests/package.json +++ b/tests/api-tests/package.json @@ -2,7 +2,7 @@ "name": "@keystone-next/api-tests-legacy", "description": "A set of tests for running against the KeystoneJS API.", "private": true, - "version": "9.2.1", + "version": "9.2.2", "author": "The KeystoneJS Development Team", "license": "MIT", "engines": { @@ -27,9 +27,9 @@ "testcheck": "^1.0.0-rc.2" }, "dependencies": { - "@keystone-next/fields-legacy": "^24.0.0", - "@keystone-next/test-utils-legacy": "^15.0.0", - "@keystone-next/types": "^15.0.1", + "@keystone-next/fields-legacy": "^25.0.0", + "@keystone-next/test-utils-legacy": "^16.0.0", + "@keystone-next/types": "^16.0.0", "@keystone-next/utils-legacy": "^8.0.0", "apollo-cache-control": "^0.12.0", "express": "^4.17.1" diff --git a/tests/benchmarks/CHANGELOG.md b/tests/benchmarks/CHANGELOG.md index f7ff5357057..8cb63bd33fa 100644 --- a/tests/benchmarks/CHANGELOG.md +++ b/tests/benchmarks/CHANGELOG.md @@ -1,5 +1,19 @@ # @keystonejs/benchmarks +## 5.2.5 + +### Patch Changes + +- [#5280](https://github.com/keystonejs/keystone/pull/5280) [`9e450d6b3`](https://github.com/keystonejs/keystone/commit/9e450d6b326e2ba5f46e49ecf53b6bd7a627e9ca) Thanks [@timleslie](https://github.com/timleslie)! - Removed the `adapters-mongoose-legacy` packages dependency. + +- Updated dependencies [[`1a4db6c87`](https://github.com/keystonejs/keystone/commit/1a4db6c87c17706c8e5db2816e0a6b1b8f79e217), [`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6), [`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6), [`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6), [`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6), [`1a4db6c87`](https://github.com/keystonejs/keystone/commit/1a4db6c87c17706c8e5db2816e0a6b1b8f79e217), [`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6), [`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6), [`399e6db39`](https://github.com/keystonejs/keystone/commit/399e6db39c51cf9e8bbf3dde0887e5bf55dd1c4d), [`8665cfe66`](https://github.com/keystonejs/keystone/commit/8665cfe66016e0356681413e31f80a6d5586d364), [`4fa66ac1f`](https://github.com/keystonejs/keystone/commit/4fa66ac1fc6fd0a43da17dd90797733e8c958785), [`399e6db39`](https://github.com/keystonejs/keystone/commit/399e6db39c51cf9e8bbf3dde0887e5bf55dd1c4d), [`5cd94b2a3`](https://github.com/keystonejs/keystone/commit/5cd94b2a32b3eddaf00ad77229f7e9664899c3b9), [`9e450d6b3`](https://github.com/keystonejs/keystone/commit/9e450d6b326e2ba5f46e49ecf53b6bd7a627e9ca), [`4f0abec0b`](https://github.com/keystonejs/keystone/commit/4f0abec0b19c3495c1ae6d7dac49fb46253cf7b3), [`c28e765d1`](https://github.com/keystonejs/keystone/commit/c28e765d12655f802e324b82529fcf571d88c0c6)]: + - @keystone-next/test-utils-legacy@16.0.0 + - @keystone-next/keystone@15.0.0 + - @keystone-next/fields@6.0.0 + - @keystone-next/fields-legacy@25.0.0 + - @keystone-next/keystone-legacy@23.0.0 + - @keystone-next/server-side-graphql-client-legacy@3.0.1 + ## 5.2.4 ### Patch Changes diff --git a/tests/benchmarks/package.json b/tests/benchmarks/package.json index a961279bc1f..aa3bd11705a 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": "5.2.4", + "version": "5.2.5", "author": "The KeystoneJS Development Team", "license": "MIT", "engines": { @@ -14,12 +14,12 @@ "repository": "https://github.com/keystonejs/keystone/tree/master/tests/benchmarks", "homepage": "https://github.com/keystonejs/keystone", "dependencies": { - "@keystone-next/fields": "^5.4.0", - "@keystone-next/fields-legacy": "^24.0.0", - "@keystone-next/keystone": "^14.0.1", - "@keystone-next/keystone-legacy": "^22.0.0", - "@keystone-next/server-side-graphql-client-legacy": "^3.0.0", - "@keystone-next/test-utils-legacy": "^15.0.0", + "@keystone-next/fields": "^6.0.0", + "@keystone-next/fields-legacy": "^25.0.0", + "@keystone-next/keystone": "^15.0.0", + "@keystone-next/keystone-legacy": "^23.0.0", + "@keystone-next/server-side-graphql-client-legacy": "^3.0.1", + "@keystone-next/test-utils-legacy": "^16.0.0", "cookie-signature": "^1.1.0", "supertest-light": "^1.0.3", "testcheck": "^1.0.0-rc.2"