graphql-codegen-grafast 1.0.0-rc.3 → 1.0.0-rc.5

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/package.json +1 -13
  2. package/CHANGELOG.md +0 -69
package/package.json CHANGED
@@ -1,10 +1,7 @@
1
1
  {
2
2
  "name": "graphql-codegen-grafast",
3
- "version": "1.0.0-rc.3",
3
+ "version": "1.0.0-rc.5",
4
4
  "description": "A GraphQL code generator plugin for Grafast schemas",
5
- "scripts": {
6
- "prepack": "tsc -b"
7
- },
8
5
  "exports": {
9
6
  ".": {
10
7
  "types": "./dist/index.d.ts",
@@ -33,20 +30,11 @@
33
30
  "node": ">=22"
34
31
  },
35
32
  "files": [
36
- "fwd",
37
33
  "dist"
38
34
  ],
39
- "publishConfig": {
40
- "access": "public"
41
- },
42
35
  "dependencies": {
43
36
  "@graphql-codegen/visitor-plugin-common": "^6.2.0"
44
37
  },
45
- "devDependencies": {
46
- "@graphql-codegen/plugin-helpers": "^6.1.0",
47
- "graphql": "^16.9.0",
48
- "typescript": "^5.9.3"
49
- },
50
38
  "peerDependencies": {
51
39
  "graphql": "^16.9.0"
52
40
  }
package/CHANGELOG.md DELETED
@@ -1,69 +0,0 @@
1
- # graphql-codegen-grafast
2
-
3
- ## 1.0.0-rc.3
4
-
5
- ### Patch Changes
6
-
7
- - [#2873](https://github.com/graphile/crystal/pull/2873)
8
- [`0772086`](https://github.com/graphile/crystal/commit/0772086411a55d56b4e345cff1eef133eee31b36)
9
- Thanks [@benjie](https://github.com/benjie)! - Update TypeScript configuration
10
- to support Node 22 minimum
11
-
12
- ## 1.0.0-rc.2
13
-
14
- ### Patch Changes
15
-
16
- - [#2829](https://github.com/graphile/crystal/pull/2829)
17
- [`a82e6fa`](https://github.com/graphile/crystal/commit/a82e6fae099f7e9d62fb3fc1ee173368cdabca27)
18
- Thanks [@benjie](https://github.com/benjie)! - Update dependency ranges.
19
-
20
- ## 1.0.0-rc.1
21
-
22
- ### Patch Changes
23
-
24
- - [#2785](https://github.com/graphile/crystal/pull/2785)
25
- [`641222b`](https://github.com/graphile/crystal/commit/641222b999e0401f76886ffd09aebc27488b1ba1)
26
- Thanks [@benjie](https://github.com/benjie)! - Fix generation for abstract
27
- types to reflect Grafast type changes. Specifically, `source` and `specifier`
28
- have reversed order, and `specifier` is generated as the _data_ type rather
29
- than the _step_ type. If you had `specifier: ...` in your type overrides file
30
- (unlikely), please ensure this change is reflected: `specifier: Step<T>`
31
- should now be `specifier: T`.
32
-
33
- - [`8a5a7c5`](https://github.com/graphile/crystal/commit/8a5a7c536fc4b9b702600c5cc3d413724670c327)
34
- Thanks [@benjie](https://github.com/benjie)! - Bump to release candidate
35
-
36
- ## 0.0.1-beta.3
37
-
38
- ### Patch Changes
39
-
40
- - [#2730](https://github.com/graphile/crystal/pull/2730)
41
- [`4c3cf22`](https://github.com/graphile/crystal/commit/4c3cf22592f44cb28e399434474ca5fcef0e1a3b)
42
- Thanks [@benjie](https://github.com/benjie)! - Update `graphql` version range
43
-
44
- - [#2723](https://github.com/graphile/crystal/pull/2723)
45
- [`f2dca50`](https://github.com/graphile/crystal/commit/f2dca50c48f86eaf832d11570a46362ae67e9170)
46
- Thanks [@benjie](https://github.com/benjie)! - List types now have a more
47
- correct type generated.
48
-
49
- ## 0.0.1-beta.2
50
-
51
- ### Patch Changes
52
-
53
- - [#2562](https://github.com/graphile/crystal/pull/2562)
54
- [`3064e14`](https://github.com/graphile/crystal/commit/3064e14773676043799b270cf82c13759a7a5e7b)
55
- Thanks [@adrtivv](https://github.com/adrtivv)! - Uses `convertName` to convert
56
- names, should improve compatibility with non-standard configurations/field
57
- names.
58
-
59
- ## 0.0.1-beta.1
60
-
61
- ### Patch Changes
62
-
63
- - [`a37a183fd2474380317097a714e81527aad98a80`](https://github.com/graphile/crystal/commit/a37a183fd2474380317097a714e81527aad98a80)
64
- Thanks [@benjie](https://github.com/benjie)! - Initial release of package.
65
-
66
- - [#2549](https://github.com/graphile/crystal/pull/2549)
67
- [`949a16c36a5dd744831a8a7d71a1ffd75eb06cc1`](https://github.com/graphile/crystal/commit/949a16c36a5dd744831a8a7d71a1ffd75eb06cc1)
68
- Thanks [@benjie](https://github.com/benjie)! - First release of
69
- `graphql-codegen-grafast`