From 7fa3f179fb96d173e53d7e4ae32cdec80a937c12 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 28 Oct 2019 07:58:47 +1100 Subject: [PATCH] Version Packages (#1847) --- .changeset/curvy-keys-fail.md | 6 ------ .changeset/perfect-jobs-cough.md | 8 -------- .changeset/rich-pets-try.md | 5 ----- .changeset/slimy-llamas-tell/changes.json | 9 --------- .changeset/slimy-llamas-tell/changes.md | 1 - packages/adapter-knex/CHANGELOG.md | 10 ++++++++++ packages/adapter-knex/package.json | 6 +++--- packages/adapter-mongoose/CHANGELOG.md | 15 +++++++++++++++ packages/adapter-mongoose/package.json | 8 ++++---- packages/fields/CHANGELOG.md | 14 ++++++++++++++ packages/fields/package.json | 10 +++++----- packages/file-adapters/CHANGELOG.md | 6 ++++++ packages/file-adapters/package.json | 2 +- packages/keystone/CHANGELOG.md | 12 ++++++++++++ packages/keystone/package.json | 6 +++--- packages/mongo-join-builder/CHANGELOG.md | 11 +++++++++++ packages/mongo-join-builder/package.json | 4 ++-- packages/test-utils/CHANGELOG.md | 11 +++++++++++ packages/test-utils/package.json | 8 ++++---- packages/utils/CHANGELOG.md | 6 ++++++ packages/utils/package.json | 2 +- 21 files changed, 108 insertions(+), 52 deletions(-) delete mode 100644 .changeset/curvy-keys-fail.md delete mode 100644 .changeset/perfect-jobs-cough.md delete mode 100644 .changeset/rich-pets-try.md delete mode 100644 .changeset/slimy-llamas-tell/changes.json delete mode 100644 .changeset/slimy-llamas-tell/changes.md diff --git a/.changeset/curvy-keys-fail.md b/.changeset/curvy-keys-fail.md deleted file mode 100644 index 55ee3d3dfeb..00000000000 --- a/.changeset/curvy-keys-fail.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -'@keystonejs/file-adapters': minor -'@keystonejs/fields': patch ---- - -Added getFilename LocalFileAdapter config parameter to allow configuration of saved filename and saved original filename in database. diff --git a/.changeset/perfect-jobs-cough.md b/.changeset/perfect-jobs-cough.md deleted file mode 100644 index a31549a1e5e..00000000000 --- a/.changeset/perfect-jobs-cough.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -'@keystonejs/adapter-mongoose': patch -'@keystonejs/fields': patch -'@keystonejs/mongo-join-builder': patch -'@keystonejs/test-utils': patch ---- - -Updated mongo-related dependencies diff --git a/.changeset/rich-pets-try.md b/.changeset/rich-pets-try.md deleted file mode 100644 index 8c2d8e0b600..00000000000 --- a/.changeset/rich-pets-try.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@keystonejs/mongo-join-builder': patch ---- - -Adding a new Relationship field when using the Mongoose adapter will no longer cause an "$in requires an array as a second argument, found: missing" error to be thrown. diff --git a/.changeset/slimy-llamas-tell/changes.json b/.changeset/slimy-llamas-tell/changes.json deleted file mode 100644 index 715b579c7e1..00000000000 --- a/.changeset/slimy-llamas-tell/changes.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "releases": [ - { "name": "@keystonejs/adapter-mongoose", "type": "minor" }, - { "name": "@keystonejs/keystone", "type": "minor" }, - { "name": "@keystonejs/utils", "type": "minor" }, - { "name": "@keystonejs/adapter-knex", "type": "patch" } - ], - "dependents": [] -} diff --git a/.changeset/slimy-llamas-tell/changes.md b/.changeset/slimy-llamas-tell/changes.md deleted file mode 100644 index 3e931b7bf39..00000000000 --- a/.changeset/slimy-llamas-tell/changes.md +++ /dev/null @@ -1 +0,0 @@ -Added runtime database version validation \ No newline at end of file diff --git a/packages/adapter-knex/CHANGELOG.md b/packages/adapter-knex/CHANGELOG.md index bc80a323ac5..4745a75b7e1 100644 --- a/packages/adapter-knex/CHANGELOG.md +++ b/packages/adapter-knex/CHANGELOG.md @@ -1,5 +1,15 @@ # @keystonejs/adapter-knex +## 5.0.1 + +### Patch Changes + +- [`9f6bcddd`](https://github.com/keystonejs/keystone/commit/9f6bcddd84cc1d60f139ca116e9006258e417469) [#1851](https://github.com/keystonejs/keystone/pull/1851) Thanks [@jesstelford](https://github.com/jesstelford)! - Added runtime database version validation + +- Updated dependencies [[`9f6bcddd`](https://github.com/keystonejs/keystone/commit/9f6bcddd84cc1d60f139ca116e9006258e417469)]: + - @keystonejs/keystone@5.1.0 + - @keystonejs/utils@5.1.0 + ## 5.0.0 ### Major Changes diff --git a/packages/adapter-knex/package.json b/packages/adapter-knex/package.json index bf8bc199be2..0ea8fa38395 100644 --- a/packages/adapter-knex/package.json +++ b/packages/adapter-knex/package.json @@ -1,7 +1,7 @@ { "name": "@keystonejs/adapter-knex", "description": "KeystoneJS Knex Database Adapter", - "version": "5.0.0", + "version": "5.0.1", "author": "The KeystoneJS Development Team", "license": "MIT", "engines": { @@ -9,9 +9,9 @@ }, "dependencies": { "@keystonejs/fields-auto-increment": "^5.0.0", - "@keystonejs/keystone": "^5.0.0", + "@keystonejs/keystone": "^5.1.0", "@keystonejs/logger": "^5.0.0", - "@keystonejs/utils": "^5.0.0", + "@keystonejs/utils": "^5.1.0", "@sindresorhus/slugify": "^0.6.0", "knex": "^0.19.5", "p-settle": "^3.1.0", diff --git a/packages/adapter-mongoose/CHANGELOG.md b/packages/adapter-mongoose/CHANGELOG.md index cf8d11d8038..1c1b32feb77 100644 --- a/packages/adapter-mongoose/CHANGELOG.md +++ b/packages/adapter-mongoose/CHANGELOG.md @@ -1,5 +1,20 @@ # @keystonejs/adapter-mongoose +## 5.1.0 + +### Minor Changes + +- [`9f6bcddd`](https://github.com/keystonejs/keystone/commit/9f6bcddd84cc1d60f139ca116e9006258e417469) [#1851](https://github.com/keystonejs/keystone/pull/1851) Thanks [@jesstelford](https://github.com/jesstelford)! - Added runtime database version validation + +### Patch Changes + +- [`31b646ac`](https://github.com/keystonejs/keystone/commit/31b646ac3c06b82e809f5e55e8443ae5d21dac0f) [#1837](https://github.com/keystonejs/keystone/pull/1837) Thanks [@timleslie](https://github.com/timleslie)! - Updated mongo-related dependencies + +- Updated dependencies [[`9f6bcddd`](https://github.com/keystonejs/keystone/commit/9f6bcddd84cc1d60f139ca116e9006258e417469), [`31b646ac`](https://github.com/keystonejs/keystone/commit/31b646ac3c06b82e809f5e55e8443ae5d21dac0f), [`e4a19e3f`](https://github.com/keystonejs/keystone/commit/e4a19e3f3e261ef476aee61d24dd2639eaf61881)]: + - @keystonejs/keystone@5.1.0 + - @keystonejs/utils@5.1.0 + - @keystonejs/mongo-join-builder@5.0.1 + ## 5.0.1 ### Patch Changes diff --git a/packages/adapter-mongoose/package.json b/packages/adapter-mongoose/package.json index 27d1cd448e1..5ab3f7e2b24 100644 --- a/packages/adapter-mongoose/package.json +++ b/packages/adapter-mongoose/package.json @@ -1,7 +1,7 @@ { "name": "@keystonejs/adapter-mongoose", "description": "KeystoneJS Mongoose Database adapter.", - "version": "5.0.1", + "version": "5.1.0", "author": "The KeystoneJS Development Team", "license": "MIT", "engines": { @@ -9,10 +9,10 @@ }, "dependencies": { "@keystonejs/fields-mongoid": "^5.0.0", - "@keystonejs/keystone": "^5.0.0", + "@keystonejs/keystone": "^5.1.0", "@keystonejs/logger": "^5.0.0", - "@keystonejs/mongo-join-builder": "^5.0.0", - "@keystonejs/utils": "^5.0.0", + "@keystonejs/mongo-join-builder": "^5.0.1", + "@keystonejs/utils": "^5.1.0", "@sindresorhus/slugify": "^0.6.0", "lodash.omitby": "^4.6.0", "mongoose": "^5.7.7", diff --git a/packages/fields/CHANGELOG.md b/packages/fields/CHANGELOG.md index f3bcc392ad1..36b0ba85efd 100644 --- a/packages/fields/CHANGELOG.md +++ b/packages/fields/CHANGELOG.md @@ -1,5 +1,19 @@ # @keystonejs/fields +## 5.0.2 + +### Patch Changes + +- [`ebbcad70`](https://github.com/keystonejs/keystone/commit/ebbcad7042596a9c83c32c8e08dad50f9fcb59fd) [#1833](https://github.com/keystonejs/keystone/pull/1833) Thanks [@Vultraz](https://github.com/Vultraz)! - Added getFilename LocalFileAdapter config parameter to allow configuration of saved filename and saved original filename in database. + +* [`31b646ac`](https://github.com/keystonejs/keystone/commit/31b646ac3c06b82e809f5e55e8443ae5d21dac0f) [#1837](https://github.com/keystonejs/keystone/pull/1837) Thanks [@timleslie](https://github.com/timleslie)! - Updated mongo-related dependencies + +* Updated dependencies [[`9f6bcddd`](https://github.com/keystonejs/keystone/commit/9f6bcddd84cc1d60f139ca116e9006258e417469), [`31b646ac`](https://github.com/keystonejs/keystone/commit/31b646ac3c06b82e809f5e55e8443ae5d21dac0f)]: + - @keystonejs/adapter-mongoose@5.1.0 + - @keystonejs/utils@5.1.0 + - @keystonejs/adapter-knex@5.0.1 + - @keystonejs/test-utils@5.0.1 + ## 5.0.1 ### Patch Changes diff --git a/packages/fields/package.json b/packages/fields/package.json index 4bc8201acd1..a80b1d5c90f 100644 --- a/packages/fields/package.json +++ b/packages/fields/package.json @@ -1,7 +1,7 @@ { "name": "@keystonejs/fields", "description": "KeystoneJS Field Types including Text, Password, DateTime, Integer, and more.", - "version": "5.0.1", + "version": "5.0.2", "main": "dist/fields.cjs.js", "module": "dist/fields.esm.js", "author": "The KeystoneJS Development Team", @@ -31,11 +31,11 @@ "@babel/runtime": "^7.4.3", "@emotion/core": "^10.0.14", "@keystonejs/access-control": "^5.0.0", - "@keystonejs/adapter-knex": "^5.0.0", - "@keystonejs/adapter-mongoose": "^5.0.1", + "@keystonejs/adapter-knex": "^5.0.1", + "@keystonejs/adapter-mongoose": "^5.1.0", "@keystonejs/build-field-types": "^5.0.0", "@keystonejs/field-content": "^5.0.0", - "@keystonejs/utils": "^5.0.0", + "@keystonejs/utils": "^5.1.0", "@sindresorhus/slugify": "^0.6.0", "apollo-errors": "^1.9.0", "bcrypt": "^3.0.6", @@ -72,7 +72,7 @@ "unsplash-js": "^5.0.0" }, "devDependencies": { - "@keystonejs/test-utils": "^5.0.0" + "@keystonejs/test-utils": "^5.0.1" }, "field-types": { "entrypoints": [ diff --git a/packages/file-adapters/CHANGELOG.md b/packages/file-adapters/CHANGELOG.md index 10c8fad95fb..52ba577e14c 100644 --- a/packages/file-adapters/CHANGELOG.md +++ b/packages/file-adapters/CHANGELOG.md @@ -1,5 +1,11 @@ # @keystonejs/file-adapters +## 5.1.0 + +### Minor Changes + +- [`ebbcad70`](https://github.com/keystonejs/keystone/commit/ebbcad7042596a9c83c32c8e08dad50f9fcb59fd) [#1833](https://github.com/keystonejs/keystone/pull/1833) Thanks [@Vultraz](https://github.com/Vultraz)! - Added getFilename LocalFileAdapter config parameter to allow configuration of saved filename and saved original filename in database. + ## 5.0.1 ### Patch Changes diff --git a/packages/file-adapters/package.json b/packages/file-adapters/package.json index 27e8ba6539d..d5e4df16972 100644 --- a/packages/file-adapters/package.json +++ b/packages/file-adapters/package.json @@ -1,7 +1,7 @@ { "name": "@keystonejs/file-adapters", "description": "Adapters for handling storage of the File type", - "version": "5.0.1", + "version": "5.1.0", "main": "index.js", "repository": "https://github.com/keystonejs/keystone-5.git", "author": "The Keystone Development Team", diff --git a/packages/keystone/CHANGELOG.md b/packages/keystone/CHANGELOG.md index 257ddd05f30..fce630503f0 100644 --- a/packages/keystone/CHANGELOG.md +++ b/packages/keystone/CHANGELOG.md @@ -1,5 +1,17 @@ # @keystonejs/keystone +## 5.1.0 + +### Minor Changes + +- [`9f6bcddd`](https://github.com/keystonejs/keystone/commit/9f6bcddd84cc1d60f139ca116e9006258e417469) [#1851](https://github.com/keystonejs/keystone/pull/1851) Thanks [@jesstelford](https://github.com/jesstelford)! - Added runtime database version validation + +### Patch Changes + +- Updated dependencies [[`9f6bcddd`](https://github.com/keystonejs/keystone/commit/9f6bcddd84cc1d60f139ca116e9006258e417469), [`ebbcad70`](https://github.com/keystonejs/keystone/commit/ebbcad7042596a9c83c32c8e08dad50f9fcb59fd), [`31b646ac`](https://github.com/keystonejs/keystone/commit/31b646ac3c06b82e809f5e55e8443ae5d21dac0f)]: + - @keystonejs/utils@5.1.0 + - @keystonejs/fields@5.0.2 + ## 5.0.0 ### Major Changes diff --git a/packages/keystone/package.json b/packages/keystone/package.json index 82e9d082f07..6223aeec294 100644 --- a/packages/keystone/package.json +++ b/packages/keystone/package.json @@ -1,7 +1,7 @@ { "name": "@keystonejs/keystone", "description": "The main @keystonejs class & CLI. This is where the magic happens.", - "version": "5.0.0", + "version": "5.1.0", "author": "The KeystoneJS Development Team", "license": "MIT", "engines": { @@ -14,10 +14,10 @@ "@keystonejs/access-control": "^5.0.0", "@keystonejs/app-graphql": "^5.0.0", "@keystonejs/build-field-types": "^5.0.0", - "@keystonejs/fields": "^5.0.0", + "@keystonejs/fields": "^5.0.2", "@keystonejs/logger": "^5.0.0", "@keystonejs/session": "^5.0.0", - "@keystonejs/utils": "^5.0.0", + "@keystonejs/utils": "^5.1.0", "apollo-errors": "^1.9.0", "arg": "^4.1.1", "chalk": "^2.4.2", diff --git a/packages/mongo-join-builder/CHANGELOG.md b/packages/mongo-join-builder/CHANGELOG.md index ea4231a9dec..2d27b76f276 100644 --- a/packages/mongo-join-builder/CHANGELOG.md +++ b/packages/mongo-join-builder/CHANGELOG.md @@ -1,5 +1,16 @@ # @keystonejs/mongo-join-builder +## 5.0.1 + +### Patch Changes + +- [`31b646ac`](https://github.com/keystonejs/keystone/commit/31b646ac3c06b82e809f5e55e8443ae5d21dac0f) [#1837](https://github.com/keystonejs/keystone/pull/1837) Thanks [@timleslie](https://github.com/timleslie)! - Updated mongo-related dependencies + +* [`e4a19e3f`](https://github.com/keystonejs/keystone/commit/e4a19e3f3e261ef476aee61d24dd2639eaf61881) [#1844](https://github.com/keystonejs/keystone/pull/1844) Thanks [@jesstelford](https://github.com/jesstelford)! - Adding a new Relationship field when using the Mongoose adapter will no longer cause an "\$in requires an array as a second argument, found: missing" error to be thrown. + +* Updated dependencies [[`9f6bcddd`](https://github.com/keystonejs/keystone/commit/9f6bcddd84cc1d60f139ca116e9006258e417469)]: + - @keystonejs/utils@5.1.0 + ## 5.0.0 ### Major Changes diff --git a/packages/mongo-join-builder/package.json b/packages/mongo-join-builder/package.json index f2e3c84e406..92620724c5a 100644 --- a/packages/mongo-join-builder/package.json +++ b/packages/mongo-join-builder/package.json @@ -1,14 +1,14 @@ { "name": "@keystonejs/mongo-join-builder", "description": "Programatically build JOIN-like Mongo aggregations based on arbitrarily nested relationships.", - "version": "5.0.0", + "version": "5.0.1", "author": "The KeystoneJS Development Team", "license": "MIT", "engines": { "node": ">=8.4.0" }, "dependencies": { - "@keystonejs/utils": "^5.0.0", + "@keystonejs/utils": "^5.1.0", "cuid": "^2.1.6", "lodash.omitby": "^4.6.0" }, diff --git a/packages/test-utils/CHANGELOG.md b/packages/test-utils/CHANGELOG.md index 7653427023b..9db5ba3c8d7 100644 --- a/packages/test-utils/CHANGELOG.md +++ b/packages/test-utils/CHANGELOG.md @@ -1,5 +1,16 @@ # @keystonejs/test-utils +## 5.0.1 + +### Patch Changes + +- [`31b646ac`](https://github.com/keystonejs/keystone/commit/31b646ac3c06b82e809f5e55e8443ae5d21dac0f) [#1837](https://github.com/keystonejs/keystone/pull/1837) Thanks [@timleslie](https://github.com/timleslie)! - Updated mongo-related dependencies + +- Updated dependencies [[`9f6bcddd`](https://github.com/keystonejs/keystone/commit/9f6bcddd84cc1d60f139ca116e9006258e417469), [`31b646ac`](https://github.com/keystonejs/keystone/commit/31b646ac3c06b82e809f5e55e8443ae5d21dac0f)]: + - @keystonejs/adapter-mongoose@5.1.0 + - @keystonejs/keystone@5.1.0 + - @keystonejs/adapter-knex@5.0.1 + ## 5.0.0 ### Major Changes diff --git a/packages/test-utils/package.json b/packages/test-utils/package.json index ae2a2ef830c..9639cf452d5 100644 --- a/packages/test-utils/package.json +++ b/packages/test-utils/package.json @@ -1,17 +1,17 @@ { "name": "@keystonejs/test-utils", "description": "Common utilities used while testing @keystonejs/* packages.", - "version": "5.0.0", + "version": "5.0.1", "author": "The KeystoneJS Development Team", "license": "MIT", "engines": { "node": ">=8.4.0" }, "dependencies": { - "@keystonejs/adapter-knex": "^5.0.0", - "@keystonejs/adapter-mongoose": "^5.0.0", + "@keystonejs/adapter-knex": "^5.0.1", + "@keystonejs/adapter-mongoose": "^5.1.0", "@keystonejs/app-graphql": "^5.0.0", - "@keystonejs/keystone": "^5.0.0", + "@keystonejs/keystone": "^5.1.0", "express": "^4.17.1", "mongodb-memory-server": "^6.0.1", "p-finally": "^2.0.1", diff --git a/packages/utils/CHANGELOG.md b/packages/utils/CHANGELOG.md index 714009c686a..ce9a490870c 100644 --- a/packages/utils/CHANGELOG.md +++ b/packages/utils/CHANGELOG.md @@ -1,5 +1,11 @@ # @keystonejs/utils +## 5.1.0 + +### Minor Changes + +- [`9f6bcddd`](https://github.com/keystonejs/keystone/commit/9f6bcddd84cc1d60f139ca116e9006258e417469) [#1851](https://github.com/keystonejs/keystone/pull/1851) Thanks [@jesstelford](https://github.com/jesstelford)! - Added runtime database version validation + ## 5.0.0 ### Major Changes diff --git a/packages/utils/package.json b/packages/utils/package.json index a99e6abda97..9c1739979d3 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -1,7 +1,7 @@ { "name": "@keystonejs/utils", "description": "Common utility functions used throughout @keystonejs packages.", - "version": "5.0.0", + "version": "5.1.0", "author": "The KeystoneJS Development Team", "license": "MIT", "main": "dist/utils.cjs.js",