@pothos/plugin-prisma 4.0.1 → 4.0.3

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +15 -0
  2. package/package.json +9 -9
package/CHANGELOG.md CHANGED
@@ -1,5 +1,20 @@
1
1
  # Change Log
2
2
 
3
+ ## 4.0.3
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [777f6de]
8
+ - @pothos/core@4.0.2
9
+
10
+ ## 4.0.2
11
+
12
+ ### Patch Changes
13
+
14
+ - 9bd203e: Fix graphql peer dependency version to match documented minumum version
15
+ - Updated dependencies [9bd203e]
16
+ - @pothos/core@4.0.1
17
+
3
18
  ## 4.0.1
4
19
 
5
20
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pothos/plugin-prisma",
3
- "version": "4.0.1",
3
+ "version": "4.0.3",
4
4
  "description": "A Pothos plugin for more efficient integration with prisma",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./dts/index.d.ts",
@@ -60,9 +60,9 @@
60
60
  "seed": "node prisma/seed.mjs"
61
61
  },
62
62
  "peerDependencies": {
63
- "@pothos/core": "4.0.0",
63
+ "@pothos/core": "4.0.2",
64
64
  "@prisma/client": "*",
65
- "graphql": "^16.8.1",
65
+ "graphql": ">=16.6.0",
66
66
  "typescript": ">=4.7.2"
67
67
  },
68
68
  "devDependencies": {
@@ -71,12 +71,12 @@
71
71
  "graphql-scalars": "^1.23.0",
72
72
  "graphql-tag": "^2.12.6",
73
73
  "prisma": "^5.16.2",
74
- "@pothos/core": "4.0.0",
75
- "@pothos/plugin-errors": "4.0.0",
76
- "@pothos/plugin-complexity": "4.0.0",
77
- "@pothos/plugin-relay": "4.0.0",
78
- "@pothos/plugin-simple-objects": "4.0.0",
79
- "@pothos/test-utils": "2.0.0"
74
+ "@pothos/core": "4.0.2",
75
+ "@pothos/plugin-complexity": "4.0.2",
76
+ "@pothos/plugin-errors": "4.0.2",
77
+ "@pothos/plugin-relay": "4.0.2",
78
+ "@pothos/plugin-simple-objects": "4.0.3",
79
+ "@pothos/test-utils": "2.0.1"
80
80
  },
81
81
  "scripts": {
82
82
  "generate": "prisma generate",