What's New
Controlled code demolition 🏗️ 👷♀️
We pruned a lot of code from the Keystone garden – cutting out the dead wood to make way for a more efficient and productive core in Keystone 6. Notable changes include:
- Removed Keystone‘s DB adapters and the
db.adapterconfig option (now that Keystone 6 uses Prisma under the hood). - Said goodbye to a bunch of redundant methods and arguments for the same reasons as above.
- Exchanged
deploy,resetandgeneratecommands forkeystone-next prismae.g:keystone-next deploy->keystone-next prisma migrate deploy
Better pagination in Admin UI ⏭️ ✨
Pagination in the Admin UI has fresh styles and is easier to use.
Enjoying Keystone?
Star this repo 🌟 ☝️ or connect to Keystone on Twitter and in Slack.
View verbose release notes
Releases
@keystone-next/admin-ui@13.0.0
Major Changes
- #5266
c28e765d1Thanks @mitchellhamilton! - Updated Next API route template to usecreateSystemwithout thedotKeystonePathargument and import from the new Prisma Client location.
Minor Changes
- #5286
bc21855a7Thanks @gwyneplaine! - Added styling and quality of life updates to the pagination component.
Patch Changes
-
#5322
d93bab17bThanks @gwyneplaine! - Added padding to the select input in the Pagination component in @keystone-next/admin-ui. -
#5280
9e450d6b3Thanks @timleslie! - Removed theadapters-mongoose-legacypackages dependency. -
Updated dependencies [
901817fed,c28e765d1,c28e765d1,c28e765d1,95fefaf81,c28e765d1,1a4db6c87,b40016301,5c4b48636,192393d0d,c28e765d1,1886b4323,c28e765d1,1886b4323,399e6db39,5cd94b2a3,9e450d6b3,1e6d12f47,c28e765d1,d93bab17b]:- @keystone-next/keystone@15.0.0
- @keystone-next/types@16.0.0
- @keystone-ui/fields@2.1.0
- @keystone-next/admin-ui-utils@3.0.3
@keystone-next/fields@6.0.0
Major Changes
-
#5256
399e6db39Thanks @timleslie! - Removed support for themongoIdfield type. -
#5275
8665cfe66Thanks @timleslie! - Removed themongoIdfield type. -
#5256
399e6db39Thanks @timleslie! - Removed support for theknexandmongoosedatabase adapters. We now only supportprisma_postgresqlandprisma_sqlite.
Patch Changes
-
#5280
9e450d6b3Thanks @timleslie! - Removed theadapters-mongoose-legacypackages dependency. -
Updated dependencies [
e702fea44,c28e765d1,b40016301,192393d0d,c28e765d1,1886b4323,8665cfe66,fda82869c,4fa66ac1f,399e6db39,d93bab17b,9e450d6b3,bc21855a7,d93bab17b]:- @keystone-next/fields-legacy@25.0.0
- @keystone-next/types@16.0.0
- @keystone-next/admin-ui@13.0.0
- @keystone-next/fields-auto-increment-legacy@10.0.0
- @keystone-ui/fields@2.1.0
- @keystone-next/admin-ui-utils@3.0.3
@keystone-next/fields-document@4.0.0
Major Changes
- #5273
4fa66ac1fThanks @timleslie! - Removed support for theknexandmongoosefield adapters.
Patch Changes
- Updated dependencies [
1261c398b,1e6d12f47,e702fea44,c28e765d1,95fefaf81,b40016301,192393d0d,c28e765d1,1886b4323,399e6db39,8665cfe66,1e6d12f47,fda82869c,4fa66ac1f,399e6db39,d93bab17b,5cd94b2a3,9e450d6b3,4f0abec0b,95fefaf81,bc21855a7,d93bab17b]:- @keystone-next/adapter-prisma-legacy@5.0.0
- @keystone-next/fields-legacy@25.0.0
- @keystone-next/types@16.0.0
- @keystone-next/admin-ui@13.0.0
- @keystone-next/fields@6.0.0
- @keystone-ui/fields@2.1.0
- @keystone-next/admin-ui-utils@3.0.3
@keystone-next/keystone@15.0.0
Major Changes
-
#5266
c28e765d1Thanks @mitchellhamilton! - Replaceddeploy,resetandgeneratecommands withkeystone-next prisma. You can use these commands as replacements for the old commands:keystone-next deploy->keystone-next prisma migrate deploykeystone-next reset->keystone-next prisma migrate resetkeystone-next generate->keystone-next prisma migrate dev
-
#5266
c28e765d1Thanks @mitchellhamilton! - RemovedmigrationActionargument tocreateSystemand require that the PrismaClient is passed tocreateSystemto be able to connect to the database. -
#5266
c28e765d1Thanks @mitchellhamilton! - Updatedkeystone-next buildcommand to validate that the GraphQL and Prisma schemas are up to date. -
#5287
95fefaf81Thanks @mitchellhamilton! - RemovedgetDbSchemaNameandgetPrismaPathdatabase adapter options. To change the database schema that Keystone uses, you can add?schema=whateverto the database url. -
#5266
c28e765d1Thanks @mitchellhamilton! - Moved generatedschema.prismato the root of the project directory. Note that this also moves the location of migrations from.keystone/prisma/migrationstomigrationsat the root of the project. -
#5266
c28e765d1Thanks @mitchellhamilton! - RemoveddotKeystonePathargument fromcreateSystem -
#5256
399e6db39Thanks @timleslie! - Removed support for theknexandmongoosedatabase adapters. We now only supportprisma_postgresqlandprisma_sqlite. -
#5285
5cd94b2a3Thanks @mitchellhamilton! - RemoveddropDatabasemethod and config option -
#5266
c28e765d1Thanks @mitchellhamilton! - Moved generated GraphQL schema toschema.graphqlto the root of the project. We recommend that you commit this file to your repo.
Minor Changes
-
#5344
901817fedThanks @mitchellhamilton! - Added prompt before dropping the database or applying a change to the database that could lose data whendb.useMigrationsis set to false inkeystone-next dev -
#5276
1a4db6c87Thanks @mitchellhamilton! - Addedartifactsentrypoint. -
#5368
b40016301Thanks @timleslie! - The config optiondb.adapteris now deprecated. It has been repaced withdb.providerwhich can take the valuespostgresqlorsqlite. -
#5321
5c4b48636Thanks @mitchellhamilton! - Added--reset-dbflag tokeystone-next devto reset the database before starting Keystone -
#5283
192393d0dThanks @timleslie! - The flag{ experimental: { prismaSqlite: true } }is no longer required to use the SQLite adapter. -
#5341
1886b4323Thanks @mitchellhamilton! - AddedgenerateNextGraphqlAPIandgenerateNodeAPIexperimental options -
#5266
c28e765d1Thanks @mitchellhamilton! - Addedkeystone-next postinstallcommand which verifies that the Prisma and GraphQL schemas are up to date with a--fixflag to automatically update them without a prompt. -
#5341
1886b4323Thanks @mitchellhamilton! - AddedwithKeystoneinnextentrypoint -
#5302
1e6d12f47Thanks @mitchellhamilton! - Addedmigrationsentrypoint withpushPrismaSchemaToDatabaseexport.
Patch Changes
-
#5280
9e450d6b3Thanks @timleslie! - Removed theadapters-mongoose-legacypackages dependency. -
Updated dependencies [
1261c398b,1e6d12f47,e702fea44,c28e765d1,95fefaf81,955787055,b40016301,192393d0d,c28e765d1,1886b4323,399e6db39,8665cfe66,1e6d12f47,fda82869c,399e6db39,d93bab17b,5cd94b2a3,9e450d6b3,4f0abec0b,95fefaf81,bc21855a7]:- @keystone-next/adapter-prisma-legacy@5.0.0
- @keystone-next/keystone-legacy@23.0.0
- @keystone-next/types@16.0.0
- @keystone-next/admin-ui@13.0.0
- @keystone-next/fields@6.0.0
- @keystone-next/server-side-graphql-client-legacy@3.0.1
@keystone-next/types@16.0.0
Major Changes
-
#5266
c28e765d1Thanks @mitchellhamilton! - RemovedmigrationActionargument tocreateSystemand require that the PrismaClient is passed tocreateSystemto be able to connect to the database. -
#5256
399e6db39Thanks @timleslie! - Removed support for theknexandmongoosedatabase adapters. We now only supportprisma_postgresqlandprisma_sqlite.
Minor Changes
-
#5368
b40016301Thanks @timleslie! - The config optiondb.adapteris now deprecated. It has been repaced withdb.providerwhich can take the valuespostgresqlorsqlite. -
#5283
192393d0dThanks @timleslie! - The flag{ experimental: { prismaSqlite: true } }is no longer required to use the SQLite adapter. -
#5341
1886b4323Thanks @mitchellhamilton! - AddedgenerateNextGraphqlAPIandgenerateNodeAPIexperimental options
@keystone-next/adapter-prisma-legacy@5.0.0
Major Changes
-
#5319
1261c398bThanks @timleslie! - Removed legacyPrismaAdapter.listAdapterClass,PrismaAdapter.postConnect(), andPrismaAdapter.checkDatabaseVersion(). -
#5302
1e6d12f47Thanks @mitchellhamilton! - RemovedCLIOptionsForCreateMigrationandcreateMigrationexports -
#5324
e702fea44Thanks @timleslie! - Removed legacy.find(),.findAll(),.findOne(),.findById(),.itemsQueryMeta(),.getFieldAdapterByPath(), and.getPrimaryKeyAdapter()methods fromPrismaListAdapter. -
#5287
95fefaf81Thanks @mitchellhamilton! - RemovedgetDbSchemaNameandgetPrismaPathdatabase adapter options. To change the database schema that Keystone uses, you can add?schema=whateverto the database url. -
#5302
1e6d12f47Thanks @mitchellhamilton! - Removed formatting of Prisma schema returned from_generatePrismaSchemamethod and made it return synchronously -
#5320
fda82869cThanks @timleslie! - Removed legacy default ID field support. -
#5285
5cd94b2a3Thanks @mitchellhamilton! - RemoveddropDatabasemethod and config option -
#5287
95fefaf81Thanks @mitchellhamilton! - Removed migrationMode and all migration related methods on the adapter and instead require that a prisma client is passed to the adapter to be able to connect to the database
Patch Changes
-
#5281
4f0abec0bThanks @timleslie! - Removed the legacyBaseKeystoneAdapter,BaseListAdapter, andBaseFieldAdapterexports. -
Updated dependencies [
e702fea44,955787055,fda82869c,4f0abec0b]:- @keystone-next/keystone-legacy@23.0.0
@keystone-next/fields-legacy@25.0.0
Major Changes
-
#5275
8665cfe66Thanks @timleslie! - Removed themongoIdfield type. -
#5273
4fa66ac1fThanks @timleslie! - Removed support for theknexandmongoosefield adapters.
Patch Changes
-
#5324
e702fea44Thanks @timleslie! - Removed legacy.find(),.findAll(),.findOne(),.findById(),.itemsQueryMeta(),.getFieldAdapterByPath(), and.getPrimaryKeyAdapter()methods fromPrismaListAdapter. -
#5280
9e450d6b3Thanks @timleslie! - Removed theadapters-mongoose-legacypackages dependency. -
Updated dependencies [
1261c398b,1e6d12f47,e702fea44,95fefaf81,399e6db39,8665cfe66,1e6d12f47,fda82869c,399e6db39,5cd94b2a3,9e450d6b3,4f0abec0b,95fefaf81]:- @keystone-next/adapter-prisma-legacy@5.0.0
- @keystone-next/fields@6.0.0
@keystone-next/fields-auto-increment-legacy@10.0.0
Major Changes
-
#5320
fda82869cThanks @timleslie! - Removed legacy default ID field support. -
#5273
4fa66ac1fThanks @timleslie! - Removed support for theknexandmongoosefield adapters.
Patch Changes
- Updated dependencies [
1261c398b,1e6d12f47,e702fea44,95fefaf81,8665cfe66,1e6d12f47,fda82869c,4fa66ac1f,5cd94b2a3,9e450d6b3,4f0abec0b,95fefaf81]:- @keystone-next/adapter-prisma-legacy@5.0.0
- @keystone-next/fields-legacy@25.0.0
@keystone-next/fields-cloudinary-image-legacy@5.0.0
Major Changes
- #5273
4fa66ac1fThanks @timleslie! - Removed support for theknexandmongoosefield adapters.
Patch Changes
- Updated dependencies [
e702fea44,8665cfe66,4fa66ac1f,9e450d6b3]:- @keystone-next/fields-legacy@25.0.0
@keystone-next/keystone-legacy@23.0.0
Major Changes
-
#5343
955787055Thanks @timleslie! - Removed logging of errors to stdout usingpinopending a complete rewrite of this functionality. -
#5320
fda82869cThanks @timleslie! - Removed legacy default ID field support. -
#5281
4f0abec0bThanks @timleslie! - Removed the legacyBaseKeystoneAdapter,BaseListAdapter, andBaseFieldAdapterexports.
Patch Changes
- #5324
e702fea44Thanks @timleslie! - Removed legacy.find(),.findAll(),.findOne(),.findById(),.itemsQueryMeta(),.getFieldAdapterByPath(), and.getPrimaryKeyAdapter()methods fromPrismaListAdapter.
@keystone-next/test-utils-legacy@16.0.0
Major Changes
-
#5276
1a4db6c87Thanks @mitchellhamilton! - Removed usage ofgetDbSchemaName,getPrismaPath,migrationModeanddropDatabaseadapter options. Note this means that dropping the database and running migrations will now only happen when creating a keystone instance fromsetupFromConfigrather than on everykeystone.connect -
#5256
399e6db39Thanks @timleslie! - Removed support for theknexandmongoosedatabase adapters. We now only supportprisma_postgresqlandprisma_sqlite.
Patch Changes
-
#5266
c28e765d1Thanks @mitchellhamilton! - RemovedmigrationActionargument tocreateSystemand require that the PrismaClient is passed tocreateSystemto be able to connect to the database. -
#5368
b40016301Thanks @timleslie! - The config optiondb.adapteris now deprecated. It has been repaced withdb.providerwhich can take the valuespostgresqlorsqlite. -
#5283
192393d0dThanks @timleslie! - The flag{ experimental: { prismaSqlite: true } }is no longer required to use the SQLite adapter. -
#5266
c28e765d1Thanks @mitchellhamilton! - RemoveddotKeystonePathargument fromcreateSystem -
#5280
9e450d6b3Thanks @timleslie! - Removed theadapters-mongoose-legacypackages dependency. -
Updated dependencies [
1261c398b,1e6d12f47,901817fed,c28e765d1,e702fea44,c28e765d1,c28e765d1,95fefaf81,c28e765d1,1a4db6c87,955787055,b40016301,5c4b48636,192393d0d,c28e765d1,1886b4323,c28e765d1,1e6d12f47,fda82869c,1886b4323,399e6db39,5cd94b2a3,9e450d6b3,1e6d12f47,4f0abec0b,c28e765d1,95fefaf81]:- @keystone-next/adapter-prisma-legacy@5.0.0
- @keystone-next/keystone@15.0.0
- @keystone-next/keystone-legacy@23.0.0
@keystone-ui/fields@2.1.0
Minor Changes
- #5322
d93bab17bThanks @gwyneplaine! - Added styles prop to @keystone-ui/fields select components to enable style customisations to propagate to the underlying reaect-select implementation.
@keystone-next/admin-ui-utils@3.0.3
Patch Changes
- Updated dependencies [
c28e765d1,b40016301,192393d0d,1886b4323,399e6db39]:- @keystone-next/types@16.0.0
@keystone-next/auth@20.0.0
Patch Changes
- Updated dependencies [
901817fed,c28e765d1,c28e765d1,c28e765d1,95fefaf81,c28e765d1,1a4db6c87,b40016301,5c4b48636,192393d0d,c28e765d1,c28e765d1,1886b4323,c28e765d1,399e6db39,8665cfe66,1886b4323,399e6db39,d93bab17b,5cd94b2a3,9e450d6b3,1e6d12f47,c28e765d1,bc21855a7,d93bab17b]:- @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-ui/fields@2.1.0
- @keystone-next/admin-ui-utils@3.0.3
@keystone-next/cloudinary@3.0.6
Patch Changes
- Updated dependencies [
c28e765d1,b40016301,192393d0d,c28e765d1,1886b4323,4fa66ac1f,399e6db39,d93bab17b,9e450d6b3,bc21855a7,d93bab17b]:- @keystone-next/types@16.0.0
- @keystone-next/admin-ui@13.0.0
- @keystone-next/fields-cloudinary-image-legacy@5.0.0
- @keystone-ui/fields@2.1.0
@keystone-next/server-side-graphql-client-legacy@3.0.1
Patch Changes
- Updated dependencies [
c28e765d1,b40016301,192393d0d,1886b4323,399e6db39]:- @keystone-next/types@16.0.0
@keystone-next/website@1.3.0
Minor Changes
- #5368
b40016301Thanks @timleslie! - The config optiondb.adapteris now deprecated. It has been repaced withdb.providerwhich can take the valuespostgresqlorsqlite.
Patch Changes
-
#5301
c8744fd56Thanks @raveling! - Added a Keystone 5 vs Next guide to site. -
#5340
ff472d5afThanks @raveling! - copy changes to home page (including CTA to getting started tut) -
#5283
192393d0dThanks @timleslie! - The flag{ experimental: { prismaSqlite: true } }is no longer required to use the SQLite adapter. -
Updated dependencies [
4fa66ac1f,d93bab17b]:- @keystone-next/fields-document@4.0.0
- @keystone-ui/fields@2.1.0
@keystone-next/example-auth@2.0.1
Patch Changes
-
#5283
192393d0dThanks @timleslie! - The flag{ experimental: { prismaSqlite: true } }is no longer required to use the SQLite adapter. -
Updated dependencies [
901817fed,c28e765d1,c28e765d1,c28e765d1,95fefaf81,c28e765d1,1a4db6c87,b40016301,5c4b48636,192393d0d,c28e765d1,c28e765d1,1886b4323,c28e765d1,399e6db39,8665cfe66,1886b4323,399e6db39,d93bab17b,5cd94b2a3,9e450d6b3,1e6d12f47,c28e765d1,bc21855a7]:- @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
@keystone-next/app-basic@2.0.1
Patch Changes
-
#5283
192393d0dThanks @timleslie! - The flag{ experimental: { prismaSqlite: true } }is no longer required to use the SQLite adapter. -
Updated dependencies [
901817fed,c28e765d1,c28e765d1,c28e765d1,95fefaf81,c28e765d1,1a4db6c87,b40016301,5c4b48636,192393d0d,c28e765d1,c28e765d1,1886b4323,c28e765d1,399e6db39,8665cfe66,4fa66ac1f,1886b4323,399e6db39,d93bab17b,5cd94b2a3,9e450d6b3,1e6d12f47,c28e765d1,bc21855a7,d93bab17b]:- @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-ui/fields@2.1.0
- @keystone-next/auth@20.0.0
@keystone-next/example-ecommerce@2.0.1
Patch Changes
-
#5283
192393d0dThanks @timleslie! - The flag{ experimental: { prismaSqlite: true } }is no longer required to use the SQLite adapter. -
#5280
9e450d6b3Thanks @timleslie! - Removed theadapters-mongoose-legacypackages dependency. -
Updated dependencies [
901817fed,c28e765d1,c28e765d1,c28e765d1,95fefaf81,c28e765d1,1a4db6c87,b40016301,5c4b48636,192393d0d,c28e765d1,c28e765d1,1886b4323,c28e765d1,399e6db39,8665cfe66,1886b4323,399e6db39,d93bab17b,5cd94b2a3,9e450d6b3,1e6d12f47,c28e765d1,bc21855a7]:- @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/server-side-graphql-client-legacy@3.0.1
- @keystone-next/cloudinary@3.0.6
keystone-next-app@0.0.5
Patch Changes
- Updated dependencies [
901817fed,c28e765d1,c28e765d1,c28e765d1,95fefaf81,c28e765d1,1a4db6c87,b40016301,5c4b48636,192393d0d,c28e765d1,1886b4323,c28e765d1,399e6db39,8665cfe66,4fa66ac1f,1886b4323,399e6db39,5cd94b2a3,9e450d6b3,1e6d12f47,c28e765d1]:- @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
@keystone-next/example-next-lite@1.0.4
Patch Changes
- Updated dependencies [
901817fed,c28e765d1,c28e765d1,c28e765d1,95fefaf81,c28e765d1,1a4db6c87,b40016301,5c4b48636,192393d0d,c28e765d1,c28e765d1,1886b4323,c28e765d1,399e6db39,8665cfe66,1886b4323,399e6db39,d93bab17b,5cd94b2a3,9e450d6b3,1e6d12f47,c28e765d1,bc21855a7]:- @keystone-next/keystone@15.0.0
- @keystone-next/admin-ui@13.0.0
- @keystone-next/fields@6.0.0
@keystone-next/example-roles@2.0.1
Patch Changes
-
#5283
192393d0dThanks @timleslie! - The flag{ experimental: { prismaSqlite: true } }is no longer required to use the SQLite adapter. -
#5280
9e450d6b3Thanks @timleslie! - Removed theadapters-mongoose-legacypackages dependency. -
Updated dependencies [
901817fed,c28e765d1,c28e765d1,c28e765d1,95fefaf81,c28e765d1,1a4db6c87,b40016301,5c4b48636,192393d0d,c28e765d1,c28e765d1,1886b4323,c28e765d1,399e6db39,8665cfe66,1886b4323,399e6db39,d93bab17b,5cd94b2a3,9e450d6b3,1e6d12f47,c28e765d1,bc21855a7]:- @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/example-sandbox@1.0.5
Patch Changes
-
#5283
192393d0dThanks @timleslie! - The flag{ experimental: { prismaSqlite: true } }is no longer required to use the SQLite adapter. -
Updated dependencies [
901817fed,c28e765d1,c28e765d1,c28e765d1,95fefaf81,c28e765d1,1a4db6c87,b40016301,5c4b48636,192393d0d,c28e765d1,c28e765d1,1886b4323,c28e765d1,399e6db39,8665cfe66,1886b4323,399e6db39,d93bab17b,5cd94b2a3,9e450d6b3,1e6d12f47,c28e765d1,bc21855a7]:- @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
@keystone-next/example-todo@1.0.5
Patch Changes
- Updated dependencies [
901817fed,c28e765d1,c28e765d1,c28e765d1,95fefaf81,c28e765d1,1a4db6c87,b40016301,5c4b48636,192393d0d,c28e765d1,c28e765d1,1886b4323,c28e765d1,399e6db39,8665cfe66,1886b4323,399e6db39,d93bab17b,5cd94b2a3,9e450d6b3,1e6d12f47,c28e765d1,bc21855a7]:- @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
@keystone-next/api-tests-legacy@9.2.2
Patch Changes
-
#5280
9e450d6b3Thanks @timleslie! - Removed theadapters-mongoose-legacypackages dependency. -
Updated dependencies [
1a4db6c87,e702fea44,c28e765d1,b40016301,192393d0d,c28e765d1,1886b4323,8665cfe66,4fa66ac1f,399e6db39,9e450d6b3]:- @keystone-next/test-utils-legacy@16.0.0
- @keystone-next/fields-legacy@25.0.0
- @keystone-next/types@16.0.0
@keystone-next/benchmarks-legacy@5.2.5
Patch Changes
-
#5280
9e450d6b3Thanks @timleslie! - Removed theadapters-mongoose-legacypackages dependency. -
Updated dependencies [
901817fed,1a4db6c87,c28e765d1,e702fea44,c28e765d1,c28e765d1,95fefaf81,c28e765d1,1a4db6c87,955787055,b40016301,5c4b48636,192393d0d,c28e765d1,1886b4323,c28e765d1,399e6db39,8665cfe66,fda82869c,4fa66ac1f,1886b4323,399e6db39,5cd94b2a3,9e450d6b3,1e6d12f47,4f0abec0b,c28e765d1]:- @keystone-next/keystone@15.0.0
- @keystone-next/test-utils-legacy@16.0.0
- @keystone-next/fields-legacy@25.0.0
- @keystone-next/keystone-legacy@23.0.0
- @keystone-next/fields@6.0.0
- @keystone-next/server-side-graphql-client-legacy@3.0.1