Skip to content

Commit

Permalink
Version Packages
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Jul 14, 2020
1 parent 753fa13 commit 1927d56
Show file tree
Hide file tree
Showing 111 changed files with 888 additions and 425 deletions.
5 changes: 0 additions & 5 deletions .changeset/big-llamas-sparkle.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/cold-lies-kiss.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/dirty-points-work.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/famous-pumpkins-raise.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/famous-stingrays-add.md

This file was deleted.

17 changes: 0 additions & 17 deletions .changeset/friendly-plums-sort.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/lazy-numbers-leave.md

This file was deleted.

11 changes: 0 additions & 11 deletions .changeset/light-llamas-wonder.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/light-news-look.md

This file was deleted.

12 changes: 0 additions & 12 deletions .changeset/lovely-keys-rule.md

This file was deleted.

8 changes: 0 additions & 8 deletions .changeset/lucky-buckets-carry.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/lucky-jokes-warn.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/many-penguins-repeat.md

This file was deleted.

38 changes: 0 additions & 38 deletions .changeset/nice-bags-type.md

This file was deleted.

35 changes: 0 additions & 35 deletions .changeset/orange-actors-listen.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/pretty-radios-obey.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/quiet-bees-rescue.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/silent-berries-swim.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/silent-onions-taste.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/silver-tables-build.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/sixty-cameras-invite.md

This file was deleted.

8 changes: 0 additions & 8 deletions .changeset/spotty-poets-beg.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/strong-colts-sing.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/tasty-cooks-begin.md

This file was deleted.

17 changes: 0 additions & 17 deletions .changeset/witty-lies-attend.md

This file was deleted.

48 changes: 48 additions & 0 deletions api-tests/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,53 @@
# @keystonejs/api-tests

## 6.0.1

### Patch Changes

- [`5fc97cbf4`](https://github.com/keystonejs/keystone/commit/5fc97cbf4489587a3a8cb38c04ba81fc2cb1fc5a) [#3171](https://github.com/keystonejs/keystone/pull/3171) Thanks [@timleslie](https://github.com/timleslie)! - Hooks no longer recieve a `{ query }` argument. This functionality has been superseded by `context.executeGraphQL()`.

```
{
...
hooks: {
resolveInput: async ({ actions: { query } } ) => {
...
const { data, errors } = await query(`{ ... }`);
...
}
}
}
```

should be changed to

```
{
...
hooks: {
resolveInput: async ({ context } ) => {
...
const { data, errors } = await context.executeGraphQL({ query: `{ ... }` });
...
}
}
}
```

See [the docs](/docs/discussions/server-side-graphql.md) for more details on how to use `context.executeGraphQL()`.

* [`88aee0530`](https://github.com/keystonejs/keystone/commit/88aee0530829217c03bd233cf57c5476cf0e9a15) [#3250](https://github.com/keystonejs/keystone/pull/3250) Thanks [@timleslie](https://github.com/timleslie)! - Split search test into indivudual tests.

* Updated dependencies [[`5ad84ccd8`](https://github.com/keystonejs/keystone/commit/5ad84ccd8d008188e293629e90a4d7e7fde55333), [`753fa13ab`](https://github.com/keystonejs/keystone/commit/753fa13ab976cebdd145f4da948e13244612eedb), [`51c898537`](https://github.com/keystonejs/keystone/commit/51c898537c7fdc8578fa47eade6a499594b0d154), [`61cdafe20`](https://github.com/keystonejs/keystone/commit/61cdafe20e0a22b5a1f9b6a2dcc4aefa45a26902), [`8480f889a`](https://github.com/keystonejs/keystone/commit/8480f889a492d83ee805f19877d49fd112117939), [`49984caae`](https://github.com/keystonejs/keystone/commit/49984caaec803ed86b027c9634ac6b3f671e9ba7), [`136cb505c`](https://github.com/keystonejs/keystone/commit/136cb505ce11931de7fc470debe438e335588781), [`02f069f0b`](https://github.com/keystonejs/keystone/commit/02f069f0b6e28ccfe6d5cdeb59ab01bde27a655e), [`4b95d8a46`](https://github.com/keystonejs/keystone/commit/4b95d8a46d53d32b2873e350716311441cd37262), [`e114894d1`](https://github.com/keystonejs/keystone/commit/e114894d1bbcea8940cf14486fc336aa8d112da7), [`e63b9f25a`](https://github.com/keystonejs/keystone/commit/e63b9f25adb64cecf0f65c6f97fe30c95e483996), [`5fc97cbf4`](https://github.com/keystonejs/keystone/commit/5fc97cbf4489587a3a8cb38c04ba81fc2cb1fc5a), [`56e1798d6`](https://github.com/keystonejs/keystone/commit/56e1798d6815723cfba01e6d7dc6b4fe73d4447b), [`06f86c6f5`](https://github.com/keystonejs/keystone/commit/06f86c6f5c573411f0efda565a269d1d7ccb3c66), [`0cbb7e7b0`](https://github.com/keystonejs/keystone/commit/0cbb7e7b096c2a99685631a601fce7273d03cc70), [`81b4df318`](https://github.com/keystonejs/keystone/commit/81b4df3182fc63c583e3fae5c05c528b678cab95), [`79d4c0d92`](https://github.com/keystonejs/keystone/commit/79d4c0d9250c1d1c1c46bcb2eaddae313eb7ac5f), [`e6909b003`](https://github.com/keystonejs/keystone/commit/e6909b0037c9d3dc4fc6131da7968a424ce02be9), [`c9ca62876`](https://github.com/keystonejs/keystone/commit/c9ca628765f1ecb599c8556de2d31567ddf12504), [`3ce644d5f`](https://github.com/keystonejs/keystone/commit/3ce644d5f2b6e674adb2f155c0e729536079347a), [`622cc7d69`](https://github.com/keystonejs/keystone/commit/622cc7d6976ecb71f5b135c931ac0fcb4afdb1c7), [`51aef1ef0`](https://github.com/keystonejs/keystone/commit/51aef1ef06a89422e89a6118b7820848d5970669)]:
- @keystonejs/keystone@12.0.0
- @keystonejs/test-utils@7.1.0
- @keystonejs/adapter-knex@11.0.0
- @keystonejs/session@8.0.0
- @keystonejs/fields@14.0.0
- @keystonejs/adapter-mongoose@9.0.0
- @keystonejs/app-graphql@6.0.0
- @keystonejs/auth-password@5.1.11

## 6.0.0

### Major Changes
Expand Down
8 changes: 4 additions & 4 deletions api-tests/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@keystonejs/api-tests",
"description": "A set of tests for running against the KeystoneJS API.",
"private": true,
"version": "6.0.0",
"version": "6.0.1",
"author": "The KeystoneJS Development Team",
"license": "MIT",
"engines": {
Expand All @@ -23,9 +23,9 @@
"testcheck": "^1.0.0-rc.2"
},
"dependencies": {
"@keystonejs/auth-password": "^5.1.10",
"@keystonejs/fields": "^13.0.2",
"@keystonejs/test-utils": "^7.0.1",
"@keystonejs/auth-password": "^5.1.11",
"@keystonejs/fields": "^14.0.0",
"@keystonejs/test-utils": "^7.1.0",
"@keystonejs/utils": "^5.4.2",
"date-fns": "^2.14.0",
"express": "^4.17.1"
Expand Down
13 changes: 13 additions & 0 deletions benchmarks/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# @keystonejs/benchmarks

## 5.1.15

### Patch Changes

- Updated dependencies [[`5ad84ccd8`](https://github.com/keystonejs/keystone/commit/5ad84ccd8d008188e293629e90a4d7e7fde55333), [`753fa13ab`](https://github.com/keystonejs/keystone/commit/753fa13ab976cebdd145f4da948e13244612eedb), [`51c898537`](https://github.com/keystonejs/keystone/commit/51c898537c7fdc8578fa47eade6a499594b0d154), [`61cdafe20`](https://github.com/keystonejs/keystone/commit/61cdafe20e0a22b5a1f9b6a2dcc4aefa45a26902), [`8480f889a`](https://github.com/keystonejs/keystone/commit/8480f889a492d83ee805f19877d49fd112117939), [`49984caae`](https://github.com/keystonejs/keystone/commit/49984caaec803ed86b027c9634ac6b3f671e9ba7), [`136cb505c`](https://github.com/keystonejs/keystone/commit/136cb505ce11931de7fc470debe438e335588781), [`02f069f0b`](https://github.com/keystonejs/keystone/commit/02f069f0b6e28ccfe6d5cdeb59ab01bde27a655e), [`4b95d8a46`](https://github.com/keystonejs/keystone/commit/4b95d8a46d53d32b2873e350716311441cd37262), [`e114894d1`](https://github.com/keystonejs/keystone/commit/e114894d1bbcea8940cf14486fc336aa8d112da7), [`e63b9f25a`](https://github.com/keystonejs/keystone/commit/e63b9f25adb64cecf0f65c6f97fe30c95e483996), [`5fc97cbf4`](https://github.com/keystonejs/keystone/commit/5fc97cbf4489587a3a8cb38c04ba81fc2cb1fc5a), [`56e1798d6`](https://github.com/keystonejs/keystone/commit/56e1798d6815723cfba01e6d7dc6b4fe73d4447b), [`06f86c6f5`](https://github.com/keystonejs/keystone/commit/06f86c6f5c573411f0efda565a269d1d7ccb3c66), [`0cbb7e7b0`](https://github.com/keystonejs/keystone/commit/0cbb7e7b096c2a99685631a601fce7273d03cc70), [`81b4df318`](https://github.com/keystonejs/keystone/commit/81b4df3182fc63c583e3fae5c05c528b678cab95), [`79d4c0d92`](https://github.com/keystonejs/keystone/commit/79d4c0d9250c1d1c1c46bcb2eaddae313eb7ac5f), [`e6909b003`](https://github.com/keystonejs/keystone/commit/e6909b0037c9d3dc4fc6131da7968a424ce02be9), [`c9ca62876`](https://github.com/keystonejs/keystone/commit/c9ca628765f1ecb599c8556de2d31567ddf12504), [`3ce644d5f`](https://github.com/keystonejs/keystone/commit/3ce644d5f2b6e674adb2f155c0e729536079347a), [`622cc7d69`](https://github.com/keystonejs/keystone/commit/622cc7d6976ecb71f5b135c931ac0fcb4afdb1c7), [`51aef1ef0`](https://github.com/keystonejs/keystone/commit/51aef1ef06a89422e89a6118b7820848d5970669)]:
- @keystonejs/keystone@12.0.0
- @keystonejs/test-utils@7.1.0
- @keystonejs/adapter-knex@11.0.0
- @keystonejs/session@8.0.0
- @keystonejs/fields@14.0.0
- @keystonejs/adapter-mongoose@9.0.0
- @keystonejs/app-graphql@6.0.0

## 5.1.14

### Patch Changes
Expand Down
16 changes: 8 additions & 8 deletions benchmarks/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@keystonejs/benchmarks",
"description": "A set of benchmarks for running against the KeystoneJS API.",
"private": true,
"version": "5.1.14",
"version": "5.1.15",
"author": "The KeystoneJS Development Team",
"license": "MIT",
"engines": {
Expand All @@ -14,13 +14,13 @@
"repository": "https://github.com/keystonejs/keystone/tree/master/benchmarks",
"homepage": "https://github.com/keystonejs/keystone",
"dependencies": {
"@keystonejs/adapter-knex": "^10.1.0",
"@keystonejs/adapter-mongoose": "^8.1.3",
"@keystonejs/app-graphql": "^5.1.9",
"@keystonejs/fields": "^13.0.2",
"@keystonejs/keystone": "^11.2.0",
"@keystonejs/session": "^7.0.1",
"@keystonejs/test-utils": "^7.0.1",
"@keystonejs/adapter-knex": "^11.0.0",
"@keystonejs/adapter-mongoose": "^9.0.0",
"@keystonejs/app-graphql": "^6.0.0",
"@keystonejs/fields": "^14.0.0",
"@keystonejs/keystone": "^12.0.0",
"@keystonejs/session": "^8.0.0",
"@keystonejs/test-utils": "^7.1.0",
"body-parser": "^1.18.2",
"cookie-signature": "^1.1.0",
"supertest-light": "^1.0.3",
Expand Down
Loading

0 comments on commit 1927d56

Please sign in to comment.