@toptal/davinci-graphql-codegen 3.4.7-alpha-FX-NULL-update-dependency-sacha-5b39dee5.4 → 4.0.0

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 +20 -0
  2. package/package.json +5 -6
package/CHANGELOG.md CHANGED
@@ -1,5 +1,25 @@
1
1
  # @toptal/davinci-graphql-codegen
2
2
 
3
+ ## 4.0.0
4
+
5
+ ### Major Changes
6
+
7
+ - [#2148](https://github.com/toptal/davinci/pull/2148) [`102b111a`](https://github.com/toptal/davinci/commit/102b111a67bbee7ccee929428ab60e06899b2c9f) Thanks [@sashuk](https://github.com/sashuk)!
8
+ - update dependency and enable documents validation (please see [Skipped Documents Validation document](https://toptal-core.atlassian.net/wiki/spaces/SCX/pages/3398043335/GraphQL+Codegen+Skipped+Documents+Validation) for details). Documents validation can be disabled by providing custom `config` with `skipDocumentsValidation: true`
9
+
10
+ ```
11
+ // codegen.json
12
+ [
13
+ {
14
+ "schema": "@toptal/modularity-template-graphql/talent",
15
+ "documents": "src/**/*.gql",
16
+ "config": {
17
+ "skipDocumentsValidation": true
18
+ }
19
+ }
20
+ ]
21
+ ```
22
+
3
23
  ## 3.4.6
4
24
 
5
25
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@toptal/davinci-graphql-codegen",
3
- "version": "3.4.7-alpha-FX-NULL-update-dependency-sacha-5b39dee5.4+5b39dee5",
3
+ "version": "4.0.0",
4
4
  "description": "Codegen",
5
5
  "author": "Toptal",
6
6
  "license": "SEE LICENSE IN LICENSE.MD",
@@ -39,9 +39,9 @@
39
39
  "@graphql-tools/load": "^7.8.14",
40
40
  "@graphql-tools/schema": "^9.0.19",
41
41
  "@graphql-typed-document-node/core": "^3.2.0",
42
- "@toptal/davinci-cli-shared": "2.3.6-alpha-FX-NULL-update-dependency-sacha-5b39dee5.9+5b39dee5",
43
- "@toptal/davinci-graphql-codegen-extensions": "1.0.4-alpha-FX-NULL-update-dependency-sacha-5b39dee5.75+5b39dee5",
44
- "@toptal/davinci-monorepo": "8.3.1-alpha-FX-NULL-update-dependency-sacha-5b39dee5.4+5b39dee5",
42
+ "@toptal/davinci-cli-shared": "2.3.5",
43
+ "@toptal/davinci-graphql-codegen-extensions": "1.0.3",
44
+ "@toptal/davinci-monorepo": "8.3.0",
45
45
  "babel-plugin-extract-export": "^0.1.0",
46
46
  "chalk": "^4.1.2",
47
47
  "deepmerge": "^4.2.2",
@@ -57,6 +57,5 @@
57
57
  "@jest/globals": "^29.4.2",
58
58
  "graphql": "^16",
59
59
  "prettier": "^2.6.2"
60
- },
61
- "gitHead": "5b39dee5143facda2cdb1ed9fb3e3efbd80e6bc5"
60
+ }
62
61
  }