Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version Packages #1

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .changeset/honest-cycles-smile.md

This file was deleted.

31 changes: 0 additions & 31 deletions .changeset/polite-trains-run.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/quick-wolves-swim.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/real-kings-dress.md

This file was deleted.

15 changes: 0 additions & 15 deletions .changeset/sour-taxis-hunt.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/wild-terms-care.md

This file was deleted.

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

## 5.4.4

### Patch Changes

- Updated dependencies [[`54931d75`](https://github.com/keystonejs/keystone/commit/54931d75d3f26f4f300c2c4c3ee65ed3183b4a6a), [`e9a0de2c`](https://github.com/keystonejs/keystone/commit/e9a0de2cc03c211beca01ec206244105bdca6afc), [`59ed6310`](https://github.com/keystonejs/keystone/commit/59ed6310bacc76f571639de048689becbedbeac5)]:
- @keystonejs/[email protected]
- @keystonejs/[email protected]
- @keystonejs/[email protected]

## 5.4.3

### Patch Changes
Expand Down
6 changes: 3 additions & 3 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": "5.4.3",
"version": "5.4.4",
"author": "The KeystoneJS Development Team",
"license": "MIT",
"engines": {
Expand All @@ -23,8 +23,8 @@
"testcheck": "^1.0.0-rc.2"
},
"dependencies": {
"@keystonejs/auth-password": "^5.1.7",
"@keystonejs/fields": "^10.0.0",
"@keystonejs/auth-password": "^5.1.8",
"@keystonejs/fields": "^11.0.0",
"@keystonejs/test-utils": "^6.1.2",
"@keystonejs/utils": "^5.4.1",
"cuid": "^2.1.8",
Expand Down
8 changes: 8 additions & 0 deletions benchmarks/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @keystonejs/benchmarks

## 5.1.9

### Patch Changes

- Updated dependencies [[`54931d75`](https://github.com/keystonejs/keystone/commit/54931d75d3f26f4f300c2c4c3ee65ed3183b4a6a), [`e9a0de2c`](https://github.com/keystonejs/keystone/commit/e9a0de2cc03c211beca01ec206244105bdca6afc), [`59ed6310`](https://github.com/keystonejs/keystone/commit/59ed6310bacc76f571639de048689becbedbeac5)]:
- @keystonejs/[email protected]
- @keystonejs/[email protected]

## 5.1.8

### Patch Changes
Expand Down
6 changes: 3 additions & 3 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.8",
"version": "5.1.9",
"author": "The KeystoneJS Development Team",
"license": "MIT",
"engines": {
Expand All @@ -17,8 +17,8 @@
"@keystonejs/adapter-knex": "^10.0.0",
"@keystonejs/adapter-mongoose": "^8.1.0",
"@keystonejs/app-graphql": "^5.1.7",
"@keystonejs/fields": "^10.0.0",
"@keystonejs/keystone": "^9.0.0",
"@keystonejs/fields": "^11.0.0",
"@keystonejs/keystone": "^9.0.1",
"@keystonejs/session": "^7.0.0",
"@keystonejs/test-utils": "^6.1.2",
"body-parser": "^1.18.2",
Expand Down
36 changes: 36 additions & 0 deletions demo-projects/blog/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,41 @@
# keystone_demo_blog

## 6.0.0

### Major Changes

- [`e9a0de2c`](https://github.com/keystonejs/keystone/commit/e9a0de2cc03c211beca01ec206244105bdca6afc) [#2927](https://github.com/keystonejs/keystone/pull/2927) Thanks [@Vultraz](https://github.com/Vultraz)! - Upgraded to date-fns 2.x. This version uses [Unicode tokens](https://www.unicode.org/reports/tr35/tr35-dates.html#Date_Field_Symbol_Table) for its formatting strings. A conversion table is available [here](https://github.com/date-fns/date-fns/blob/master/CHANGELOG.md#200---2019-08-20).

This change only affects the `CalendarDay` and `DateTime` fields' `format` config option.

The following script utilizes the [`@date-fns/upgrade`](https://github.com/date-fns/date-fns-upgrade) package and can be used to convert old formatting strings:

```js
const { convertTokens } = require('@date-fns/upgrade/v2');

console.table(
[
// Add date-dns 1.x formatting strings here.
].map(str => ({
v1: str,
v2: convertTokens(str).replace(/'/g, ''),
}))
);
```

Do note this converts symbols to standalone style as opposed to formatted style which may not always be desired. For example, `DD/MM/YYYY` would be converted to `dd/LL/yyyy` instead of `dd/MM/yyyy`. See [here](http://cldr.unicode.org/translation/date-time-1/date-time#TOC-Stand-Alone-vs.-Format-Styles) for more information on which you should use.

### Patch Changes

- Updated dependencies [[`54931d75`](https://github.com/keystonejs/keystone/commit/54931d75d3f26f4f300c2c4c3ee65ed3183b4a6a), [`e9a0de2c`](https://github.com/keystonejs/keystone/commit/e9a0de2cc03c211beca01ec206244105bdca6afc), [`3b0f4137`](https://github.com/keystonejs/keystone/commit/3b0f4137df4112c79e6db57ae68fe04ad338da4c), [`15c57317`](https://github.com/keystonejs/keystone/commit/15c573178fa056912503f3ed83efeccceabba3ec), [`59ed6310`](https://github.com/keystonejs/keystone/commit/59ed6310bacc76f571639de048689becbedbeac5), [`2709a6b5`](https://github.com/keystonejs/keystone/commit/2709a6b512fe636d979837599b67bdb17b2517b1)]:
- @keystonejs/[email protected]
- @keystonejs/[email protected]
- @keystonejs/[email protected]
- @keystonejs/[email protected]
- @keystonejs/[email protected]
- @keystonejs/[email protected]
- @keystonejs/[email protected]

## 5.3.4

### Patch Changes
Expand Down
16 changes: 8 additions & 8 deletions demo-projects/blog/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@keystonejs/demo-project-blog",
"description": "An example KeystoneJS project showcasing a Blogging Site.",
"private": true,
"version": "5.3.4",
"version": "6.0.0",
"author": "The KeystoneJS Development Team",
"license": "MIT",
"engines": {
Expand All @@ -21,17 +21,17 @@
"@emotion/core": "^10.0.28",
"@emotion/styled": "^10.0.27",
"@keystonejs/adapter-mongoose": "^8.1.0",
"@keystonejs/app-admin-ui": "^6.0.0",
"@keystonejs/app-admin-ui": "^6.0.1",
"@keystonejs/app-graphql": "^5.1.7",
"@keystonejs/app-next": "^5.1.2",
"@keystonejs/app-static": "^5.1.2",
"@keystonejs/auth-password": "^5.1.7",
"@keystonejs/fields": "^10.0.0",
"@keystonejs/fields-authed-relationship": "^1.0.4",
"@keystonejs/fields-markdown": "^5.1.10",
"@keystonejs/fields-wysiwyg-tinymce": "^5.2.7",
"@keystonejs/auth-password": "^5.1.8",
"@keystonejs/fields": "^11.0.0",
"@keystonejs/fields-authed-relationship": "^1.0.5",
"@keystonejs/fields-markdown": "^5.1.11",
"@keystonejs/fields-wysiwyg-tinymce": "^5.2.8",
"@keystonejs/file-adapters": "^6.0.1",
"@keystonejs/keystone": "^9.0.0",
"@keystonejs/keystone": "^9.0.1",
"@keystonejs/oembed-adapters": "^5.1.4",
"apollo-cache-inmemory": "^1.6.5",
"apollo-client": "^2.6.8",
Expand Down
9 changes: 9 additions & 0 deletions demo-projects/custom-fields/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @keystonejs/demo-custom-fields

## 1.0.2

### Patch Changes

- Updated dependencies [[`54931d75`](https://github.com/keystonejs/keystone/commit/54931d75d3f26f4f300c2c4c3ee65ed3183b4a6a), [`e9a0de2c`](https://github.com/keystonejs/keystone/commit/e9a0de2cc03c211beca01ec206244105bdca6afc), [`3b0f4137`](https://github.com/keystonejs/keystone/commit/3b0f4137df4112c79e6db57ae68fe04ad338da4c), [`15c57317`](https://github.com/keystonejs/keystone/commit/15c573178fa056912503f3ed83efeccceabba3ec), [`59ed6310`](https://github.com/keystonejs/keystone/commit/59ed6310bacc76f571639de048689becbedbeac5), [`2709a6b5`](https://github.com/keystonejs/keystone/commit/2709a6b512fe636d979837599b67bdb17b2517b1)]:
- @keystonejs/[email protected]
- @keystonejs/[email protected]
- @keystonejs/[email protected]

## 1.0.1

### Patch Changes
Expand Down
8 changes: 4 additions & 4 deletions demo-projects/custom-fields/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@keystonejs/demo-custom-fields",
"description": "An example KeystoneJS project showcasing custom fields.",
"private": true,
"version": "1.0.1",
"version": "1.0.2",
"author": "The KeystoneJS Development Team",
"license": "MIT",
"engines": {
Expand All @@ -21,11 +21,11 @@
"@arch-ui/theme": "^0.0.10",
"@emotion/core": "^10.0.28",
"@keystonejs/adapter-mongoose": "^8.1.0",
"@keystonejs/app-admin-ui": "^6.0.0",
"@keystonejs/app-admin-ui": "^6.0.1",
"@keystonejs/app-graphql": "^5.1.7",
"@keystonejs/app-static": "^5.1.2",
"@keystonejs/fields": "^10.0.0",
"@keystonejs/keystone": "^9.0.0",
"@keystonejs/fields": "^11.0.0",
"@keystonejs/keystone": "^9.0.1",
"cross-env": "^7.0.0",
"react": "^16.13.1"
},
Expand Down
34 changes: 34 additions & 0 deletions demo-projects/meetup/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,39 @@
# @keystonejs/demo-project-meetup

## 6.0.0

### Major Changes

- [`e9a0de2c`](https://github.com/keystonejs/keystone/commit/e9a0de2cc03c211beca01ec206244105bdca6afc) [#2927](https://github.com/keystonejs/keystone/pull/2927) Thanks [@Vultraz](https://github.com/Vultraz)! - Upgraded to date-fns 2.x. This version uses [Unicode tokens](https://www.unicode.org/reports/tr35/tr35-dates.html#Date_Field_Symbol_Table) for its formatting strings. A conversion table is available [here](https://github.com/date-fns/date-fns/blob/master/CHANGELOG.md#200---2019-08-20).

This change only affects the `CalendarDay` and `DateTime` fields' `format` config option.

The following script utilizes the [`@date-fns/upgrade`](https://github.com/date-fns/date-fns-upgrade) package and can be used to convert old formatting strings:

```js
const { convertTokens } = require('@date-fns/upgrade/v2');

console.table(
[
// Add date-dns 1.x formatting strings here.
].map(str => ({
v1: str,
v2: convertTokens(str).replace(/'/g, ''),
}))
);
```

Do note this converts symbols to standalone style as opposed to formatted style which may not always be desired. For example, `DD/MM/YYYY` would be converted to `dd/LL/yyyy` instead of `dd/MM/yyyy`. See [here](http://cldr.unicode.org/translation/date-time-1/date-time#TOC-Stand-Alone-vs.-Format-Styles) for more information on which you should use.

### Patch Changes

- Updated dependencies [[`54931d75`](https://github.com/keystonejs/keystone/commit/54931d75d3f26f4f300c2c4c3ee65ed3183b4a6a), [`e9a0de2c`](https://github.com/keystonejs/keystone/commit/e9a0de2cc03c211beca01ec206244105bdca6afc), [`3b0f4137`](https://github.com/keystonejs/keystone/commit/3b0f4137df4112c79e6db57ae68fe04ad338da4c), [`15c57317`](https://github.com/keystonejs/keystone/commit/15c573178fa056912503f3ed83efeccceabba3ec), [`59ed6310`](https://github.com/keystonejs/keystone/commit/59ed6310bacc76f571639de048689becbedbeac5), [`2709a6b5`](https://github.com/keystonejs/keystone/commit/2709a6b512fe636d979837599b67bdb17b2517b1)]:
- @keystonejs/[email protected]
- @keystonejs/[email protected]
- @keystonejs/[email protected]
- @keystonejs/[email protected]
- @keystonejs/[email protected]

## 5.1.12

### Patch Changes
Expand Down
12 changes: 6 additions & 6 deletions demo-projects/meetup/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@keystonejs/demo-project-meetup",
"description": "An example KeystoneJS project showcasing a Meetup Site.",
"private": true,
"version": "5.1.12",
"version": "6.0.0",
"author": "The KeystoneJS Development Team",
"license": "MIT",
"engines": {
Expand All @@ -18,15 +18,15 @@
"@apollo/react-ssr": "^3.1.3",
"@emotion/core": "^10.0.28",
"@keystonejs/adapter-mongoose": "^8.1.0",
"@keystonejs/app-admin-ui": "^6.0.0",
"@keystonejs/app-admin-ui": "^6.0.1",
"@keystonejs/app-graphql": "^5.1.7",
"@keystonejs/app-next": "^5.1.2",
"@keystonejs/auth-password": "^5.1.7",
"@keystonejs/auth-password": "^5.1.8",
"@keystonejs/email": "^5.1.5",
"@keystonejs/fields": "^10.0.0",
"@keystonejs/fields-wysiwyg-tinymce": "^5.2.7",
"@keystonejs/fields": "^11.0.0",
"@keystonejs/fields-wysiwyg-tinymce": "^5.2.8",
"@keystonejs/file-adapters": "^6.0.2",
"@keystonejs/keystone": "^9.0.0",
"@keystonejs/keystone": "^9.0.1",
"@keystonejs/session": "^7.0.0",
"apollo-cache-inmemory": "^1.6.5",
"apollo-client": "^2.6.8",
Expand Down
9 changes: 9 additions & 0 deletions demo-projects/todo/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @keystonejs/demo-project-todo

## 5.1.8

### Patch Changes

- Updated dependencies [[`54931d75`](https://github.com/keystonejs/keystone/commit/54931d75d3f26f4f300c2c4c3ee65ed3183b4a6a), [`e9a0de2c`](https://github.com/keystonejs/keystone/commit/e9a0de2cc03c211beca01ec206244105bdca6afc), [`3b0f4137`](https://github.com/keystonejs/keystone/commit/3b0f4137df4112c79e6db57ae68fe04ad338da4c), [`15c57317`](https://github.com/keystonejs/keystone/commit/15c573178fa056912503f3ed83efeccceabba3ec), [`59ed6310`](https://github.com/keystonejs/keystone/commit/59ed6310bacc76f571639de048689becbedbeac5), [`2709a6b5`](https://github.com/keystonejs/keystone/commit/2709a6b512fe636d979837599b67bdb17b2517b1)]:
- @keystonejs/[email protected]
- @keystonejs/[email protected]
- @keystonejs/[email protected]

## 5.1.7

### Patch Changes
Expand Down
8 changes: 4 additions & 4 deletions demo-projects/todo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@keystonejs/demo-project-todo",
"description": "An example KeystoneJS project showcasing a simple Todo List.",
"private": true,
"version": "5.1.7",
"version": "5.1.8",
"author": "The KeystoneJS Development Team",
"license": "MIT",
"engines": {
Expand All @@ -15,11 +15,11 @@
},
"dependencies": {
"@keystonejs/adapter-mongoose": "^8.1.0",
"@keystonejs/app-admin-ui": "^6.0.0",
"@keystonejs/app-admin-ui": "^6.0.1",
"@keystonejs/app-graphql": "^5.1.7",
"@keystonejs/app-static": "^5.1.2",
"@keystonejs/fields": "^10.0.0",
"@keystonejs/keystone": "^9.0.0",
"@keystonejs/fields": "^11.0.0",
"@keystonejs/keystone": "^9.0.1",
"cross-env": "^7.0.0"
},
"repository": "https://github.com/keystonejs/keystone/tree/master/demo-projects/todo"
Expand Down
13 changes: 13 additions & 0 deletions packages/app-admin-ui/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# @keystonejs/app-admin-ui

## 6.0.1

### Patch Changes

- [`3b0f4137`](https://github.com/keystonejs/keystone/commit/3b0f4137df4112c79e6db57ae68fe04ad338da4c) [#2926](https://github.com/keystonejs/keystone/pull/2926) Thanks [@Vultraz](https://github.com/Vultraz)! - Used _label_ query for logged-in-user display.

* [`15c57317`](https://github.com/keystonejs/keystone/commit/15c573178fa056912503f3ed83efeccceabba3ec) [#2933](https://github.com/keystonejs/keystone/pull/2933) Thanks [@Vultraz](https://github.com/Vultraz)! - Fixed an uncaught error during updating if access was denied.

- [`2709a6b5`](https://github.com/keystonejs/keystone/commit/2709a6b512fe636d979837599b67bdb17b2517b1) [#2932](https://github.com/keystonejs/keystone/pull/2932) Thanks [@timleslie](https://github.com/timleslie)! - Updated README.

- Updated dependencies [[`54931d75`](https://github.com/keystonejs/keystone/commit/54931d75d3f26f4f300c2c4c3ee65ed3183b4a6a), [`e9a0de2c`](https://github.com/keystonejs/keystone/commit/e9a0de2cc03c211beca01ec206244105bdca6afc), [`59ed6310`](https://github.com/keystonejs/keystone/commit/59ed6310bacc76f571639de048689becbedbeac5)]:
- @keystonejs/[email protected]

## 6.0.0

### Major Changes
Expand Down
Loading