create-keystone-app 7.0.0 → 7.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -44,7 +44,7 @@ var terminalLink__default = /*#__PURE__*/_interopDefault(terminalLink);
44
44
 
45
45
  var currentPkgJson = {
46
46
  name: "create-keystone-app",
47
- version: "7.0.0",
47
+ version: "7.0.1",
48
48
  main: "dist/create-keystone-app.cjs.js",
49
49
  files: [
50
50
  "dist",
@@ -59,11 +59,11 @@ var currentPkgJson = {
59
59
  chalk: "^4.1.2",
60
60
  enquirer: "^2.3.6",
61
61
  execa: "^5.1.1",
62
- "fs-extra": "^10.0.0",
62
+ "fs-extra": "^10.1.0",
63
63
  meow: "^9.0.0",
64
64
  ora: "^5.4.1",
65
65
  "package-json": "^7.0.0",
66
- semver: "^7.3.5",
66
+ semver: "^7.3.7",
67
67
  "terminal-link": "^2.1.1"
68
68
  }
69
69
  };
@@ -44,7 +44,7 @@ var terminalLink__default = /*#__PURE__*/_interopDefault(terminalLink);
44
44
 
45
45
  var currentPkgJson = {
46
46
  name: "create-keystone-app",
47
- version: "7.0.0",
47
+ version: "7.0.1",
48
48
  main: "dist/create-keystone-app.cjs.js",
49
49
  files: [
50
50
  "dist",
@@ -59,11 +59,11 @@ var currentPkgJson = {
59
59
  chalk: "^4.1.2",
60
60
  enquirer: "^2.3.6",
61
61
  execa: "^5.1.1",
62
- "fs-extra": "^10.0.0",
62
+ "fs-extra": "^10.1.0",
63
63
  meow: "^9.0.0",
64
64
  ora: "^5.4.1",
65
65
  "package-json": "^7.0.0",
66
- semver: "^7.3.5",
66
+ semver: "^7.3.7",
67
67
  "terminal-link": "^2.1.1"
68
68
  }
69
69
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-keystone-app",
3
- "version": "7.0.0",
3
+ "version": "7.0.1",
4
4
  "main": "dist/create-keystone-app.cjs.js",
5
5
  "files": [
6
6
  "dist",
@@ -15,11 +15,11 @@
15
15
  "chalk": "^4.1.2",
16
16
  "enquirer": "^2.3.6",
17
17
  "execa": "^5.1.1",
18
- "fs-extra": "^10.0.0",
18
+ "fs-extra": "^10.1.0",
19
19
  "meow": "^9.0.0",
20
20
  "ora": "^5.4.1",
21
21
  "package-json": "^7.0.0",
22
- "semver": "^7.3.5",
22
+ "semver": "^7.3.7",
23
23
  "terminal-link": "^2.1.1"
24
24
  }
25
25
  }
@@ -1,5 +1,15 @@
1
1
  # keystone-next-app
2
2
 
3
+ ## 1.0.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [#278](https://github.com/keystonejs/create-keystone-app/pull/278) [`26f9a79`](https://github.com/keystonejs/create-keystone-app/commit/26f9a79ef913915bac85657884f85ff7e4da46c2) Thanks [@Noviny](https://github.com/Noviny)! - Improve schema options for linking authors to posts:
8
+ - Add `inlineConnect: true` to the post's relationship to users
9
+ - Remove authors from being inline-creatable
10
+
11
+ * [#319](https://github.com/keystonejs/create-keystone-app/pull/319) [`94a859e`](https://github.com/keystonejs/create-keystone-app/commit/94a859e43123d2f348d5e21551d59bd7e257aa81) Thanks [@Achisingh](https://github.com/Achisingh)! - Fix dependencies and update schemas for the latest `keystone-6` release
12
+
3
13
  ## 5.0.0
4
14
 
5
15
  ### Major Changes
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "keystone-app",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "private": true,
5
5
  "scripts": {
6
6
  "dev": "keystone dev",
@@ -9,10 +9,10 @@
9
9
  "postinstall": "keystone postinstall"
10
10
  },
11
11
  "dependencies": {
12
- "@keystone-6/auth": "^3.0.0",
13
- "@keystone-6/core": "^2.0.0",
14
- "@keystone-6/fields-document": "^3.0.0",
15
- "typescript": "^4.5.4"
12
+ "@keystone-6/auth": "^4.0.0",
13
+ "@keystone-6/core": "^2.1.0",
14
+ "@keystone-6/fields-document": "^4.0.0",
15
+ "typescript": "^4.7.4"
16
16
  },
17
17
  "engines": {
18
18
  "node": "^14.15 || ^16.13"
@@ -423,6 +423,7 @@ type KeystoneAdminUIListMeta {
423
423
  type KeystoneAdminUIFieldMeta {
424
424
  path: String!
425
425
  label: String!
426
+ description: String
426
427
  isOrderable: Boolean!
427
428
  isFilterable: Boolean!
428
429
  fieldMeta: JSON
@@ -2,8 +2,9 @@
2
2
  // Modify your Keystone config when you want to change this.
3
3
 
4
4
  datasource sqlite {
5
- url = env("DATABASE_URL")
6
- provider = "sqlite"
5
+ url = env("DATABASE_URL")
6
+ shadowDatabaseUrl = env("SHADOW_DATABASE_URL")
7
+ provider = "sqlite"
7
8
  }
8
9
 
9
10
  generator client {
package/starter/schema.ts CHANGED
@@ -112,7 +112,6 @@ export const lists: Lists = {
112
112
  inlineEdit: { fields: ['name', 'email'] },
113
113
  linkToItem: true,
114
114
  inlineConnect: true,
115
- inlineCreate: { fields: ['name', 'email'] },
116
115
  },
117
116
  }),
118
117
  // We also link posts to tags. This is a many <=> many linking.