Skip to content

Commit

Permalink
Version Packages (#44)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] authored Aug 3, 2020
1 parent aaea000 commit e9cf78b
Show file tree
Hide file tree
Showing 24 changed files with 90 additions and 82 deletions.
5 changes: 0 additions & 5 deletions .changeset/dirty-rocks-clap.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/dry-goats-guess.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/fair-panthers-enjoy.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/friendly-worms-study.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/heavy-points-judge.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/kind-points-learn.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/late-eyes-destroy.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/lemon-rocks-arrive.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/sharp-chicken-invite.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/silver-ducks-own.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/smooth-cats-push.md

This file was deleted.

17 changes: 17 additions & 0 deletions packages/compiler/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# @ts-gql/compiler

## 0.13.4

### Patch Changes

- [`90d1567`](https://github.com/Thinkmill/ts-gql/commit/90d15672f4737d8a1c15429f680790c9abdccf58) Thanks [@mitchellhamilton](https://github.com/mitchellhamilton)! - Remove unnecessary schema printing

* [`2df884a`](https://github.com/Thinkmill/ts-gql/commit/2df884a168c5e4285956f70ff10bb70f80704484) Thanks [@mitchellhamilton](https://github.com/mitchellhamilton)! - Cache document validation

- [`19fd7d9`](https://github.com/Thinkmill/ts-gql/commit/19fd7d98c4bb0a290f1cfe831608a5c13f498b22) Thanks [@mitchellhamilton](https://github.com/mitchellhamilton)! - Cache extraction of GraphQL documents

* [`d6d5594`](https://github.com/Thinkmill/ts-gql/commit/d6d55946c9dfc118d87ba34b79d48d48a3144e4d) Thanks [@mitchellhamilton](https://github.com/mitchellhamilton)! - Avoid re-parsing the schema on every rebuild in watch mode

- [`ccf3770`](https://github.com/Thinkmill/ts-gql/commit/ccf37705e7f58a31906c9b96dbd27ded2447d817) Thanks [@mitchellhamilton](https://github.com/mitchellhamilton)! - Remove duplicated errors when there's a validation error in a fragment

- Updated dependencies [[`d6d5594`](https://github.com/Thinkmill/ts-gql/commit/d6d55946c9dfc118d87ba34b79d48d48a3144e4d), [`7f10732`](https://github.com/Thinkmill/ts-gql/commit/7f10732c53b1b9541414b6c343ad7cd1e35e122c), [`90d1567`](https://github.com/Thinkmill/ts-gql/commit/90d15672f4737d8a1c15429f680790c9abdccf58)]:
- @ts-gql/config@0.6.0

## 0.13.3

### Patch Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/compiler/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ts-gql/compiler",
"version": "0.13.3",
"version": "0.13.4",
"main": "dist/compiler.cjs.js",
"module": "dist/compiler.esm.js",
"license": "MIT",
Expand All @@ -19,7 +19,7 @@
"@graphql-codegen/plugin-helpers": "^1.13.3",
"@graphql-codegen/typescript": "^1.13.3",
"@graphql-codegen/typescript-operations": "^1.13.3",
"@ts-gql/config": "^0.5.0",
"@ts-gql/config": "^0.6.0",
"@types/babel__code-frame": "^7.0.1",
"@types/fs-extra": "^8.1.0",
"@types/invariant": "^2.2.32",
Expand All @@ -35,7 +35,7 @@
"graphql": "^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0"
},
"devDependencies": {
"@ts-gql/tag": "^0.5.1",
"@ts-gql/tag": "^0.5.2",
"fixturez": "^1.1.0",
"graphql": "^14.0.0"
},
Expand Down
10 changes: 10 additions & 0 deletions packages/config/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @ts-gql/config

## 0.6.0

### Minor Changes

- [`d6d5594`](https://github.com/Thinkmill/ts-gql/commit/d6d55946c9dfc118d87ba34b79d48d48a3144e4d) Thanks [@mitchellhamilton](https://github.com/mitchellhamilton)! - Replace `readSchema` and `readSchemaSync` with `parseSchema` and `hashSchema`

* [`7f10732`](https://github.com/Thinkmill/ts-gql/commit/7f10732c53b1b9541414b6c343ad7cd1e35e122c) Thanks [@mitchellhamilton](https://github.com/mitchellhamilton)! - Cache schema parsing, remove `hashSchema`, make `parseSchema` return `schemaHash` and `schema`

- [`90d1567`](https://github.com/Thinkmill/ts-gql/commit/90d15672f4737d8a1c15429f680790c9abdccf58) Thanks [@mitchellhamilton](https://github.com/mitchellhamilton)! - Add `schemaHash` to `Config`

## 0.5.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/config/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ts-gql/config",
"version": "0.5.0",
"version": "0.6.0",
"main": "dist/config.cjs.js",
"module": "dist/config.esm.js",
"license": "MIT",
Expand Down
11 changes: 11 additions & 0 deletions packages/eslint-plugin/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# @ts-gql/eslint-plugin

## 0.7.0

### Minor Changes

- [`d4a220a`](https://github.com/Thinkmill/ts-gql/commit/d4a220ad74a7e57bafcd2c3ec3b22cafabbfe744) Thanks [@mitchellhamilton](https://github.com/mitchellhamilton)! - Add autofix for undefined variables

### Patch Changes

- Updated dependencies [[`d6d5594`](https://github.com/Thinkmill/ts-gql/commit/d6d55946c9dfc118d87ba34b79d48d48a3144e4d), [`7f10732`](https://github.com/Thinkmill/ts-gql/commit/7f10732c53b1b9541414b6c343ad7cd1e35e122c), [`90d1567`](https://github.com/Thinkmill/ts-gql/commit/90d15672f4737d8a1c15429f680790c9abdccf58)]:
- @ts-gql/config@0.6.0

## 0.6.1

### Patch Changes
Expand Down
10 changes: 4 additions & 6 deletions packages/eslint-plugin/package.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,16 @@
{
"name": "@ts-gql/eslint-plugin",
"version": "0.6.1",
"version": "0.7.0",
"main": "dist/eslint-plugin.cjs.js",
"module": "dist/eslint-plugin.esm.js",
"license": "MIT",
"files": [
"dist"
],
"files": ["dist"],
"dependencies": {
"@babel/runtime": "^7.9.2",
"@graphql-codegen/plugin-helpers": "^1.13.3",
"@graphql-codegen/typescript": "^1.13.3",
"@graphql-codegen/typescript-operations": "^1.13.3",
"@ts-gql/config": "^0.5.0",
"@ts-gql/config": "^0.6.0",
"@typescript-eslint/experimental-utils": "^2.29.0",
"find-pkg-json-field-up": "^1.0.1",
"slash": "^3.0.0"
Expand All @@ -21,7 +19,7 @@
"graphql": "^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0"
},
"devDependencies": {
"@ts-gql/tag": "^0.5.1",
"@ts-gql/tag": "^0.5.2",
"@typescript-eslint/parser": "^2.29.0",
"eslint-snapshot-test": "^3.0.0",
"graphql": "^14.0.0"
Expand Down
11 changes: 11 additions & 0 deletions packages/next/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# @ts-gql/next

## 14.0.0

### Major Changes

- [`ab25d45`](https://github.com/Thinkmill/ts-gql/commit/ab25d45bd80dfe58f878a500c92e0bdb3eef5c86) Thanks [@mitchellhamilton](https://github.com/mitchellhamilton)! - Remove automatic insertion of `@ts-gql/babel-plugin`, you should include it yourself. Automatically including the babel plugin caused confusion when the code would run with Next but would not run when using another tool like Jest or etc.

### Patch Changes

- Updated dependencies [[`90d1567`](https://github.com/Thinkmill/ts-gql/commit/90d15672f4737d8a1c15429f680790c9abdccf58), [`2df884a`](https://github.com/Thinkmill/ts-gql/commit/2df884a168c5e4285956f70ff10bb70f80704484), [`19fd7d9`](https://github.com/Thinkmill/ts-gql/commit/19fd7d98c4bb0a290f1cfe831608a5c13f498b22), [`d6d5594`](https://github.com/Thinkmill/ts-gql/commit/d6d55946c9dfc118d87ba34b79d48d48a3144e4d), [`ccf3770`](https://github.com/Thinkmill/ts-gql/commit/ccf37705e7f58a31906c9b96dbd27ded2447d817)]:
- @ts-gql/compiler@0.13.4

## 13.0.0

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/next/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ts-gql/next",
"version": "13.0.0",
"version": "14.0.0",
"main": "dist/next.cjs.js",
"module": "dist/next.esm.js",
"license": "MIT",
Expand All @@ -13,7 +13,7 @@
},
"devDependencies": {
"graphql": "^14.0.0",
"@ts-gql/compiler": "^0.13.0"
"@ts-gql/compiler": "^0.13.4"
},
"repository": "https://github.com/Thinkmill/ts-gql/tree/master/packages/next"
}
6 changes: 6 additions & 0 deletions packages/tag/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @ts-gql/tag

## 0.5.2

### Patch Changes

- [`ab25d45`](https://github.com/Thinkmill/ts-gql/commit/ab25d45bd80dfe58f878a500c92e0bdb3eef5c86) Thanks [@mitchellhamilton](https://github.com/mitchellhamilton)! - Improve error message when `gql` is called at runtime

## 0.5.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/tag/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ts-gql/tag",
"version": "0.5.1",
"version": "0.5.2",
"main": "dist/tag.cjs.js",
"module": "dist/tag.esm.js",
"license": "MIT",
Expand Down
18 changes: 9 additions & 9 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions test-app/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @ts-gql/test-app

## 0.1.22

### Patch Changes

- Updated dependencies [[`90d1567`](https://github.com/Thinkmill/ts-gql/commit/90d15672f4737d8a1c15429f680790c9abdccf58), [`2df884a`](https://github.com/Thinkmill/ts-gql/commit/2df884a168c5e4285956f70ff10bb70f80704484), [`ab25d45`](https://github.com/Thinkmill/ts-gql/commit/ab25d45bd80dfe58f878a500c92e0bdb3eef5c86), [`19fd7d9`](https://github.com/Thinkmill/ts-gql/commit/19fd7d98c4bb0a290f1cfe831608a5c13f498b22), [`d6d5594`](https://github.com/Thinkmill/ts-gql/commit/d6d55946c9dfc118d87ba34b79d48d48a3144e4d), [`d4a220a`](https://github.com/Thinkmill/ts-gql/commit/d4a220ad74a7e57bafcd2c3ec3b22cafabbfe744), [`ab25d45`](https://github.com/Thinkmill/ts-gql/commit/ab25d45bd80dfe58f878a500c92e0bdb3eef5c86), [`ccf3770`](https://github.com/Thinkmill/ts-gql/commit/ccf37705e7f58a31906c9b96dbd27ded2447d817)]:
- @ts-gql/compiler@0.13.4
- @ts-gql/tag@0.5.2
- @ts-gql/eslint-plugin@0.7.0
- @ts-gql/next@14.0.0

## 0.1.21

### Patch Changes
Expand Down
10 changes: 5 additions & 5 deletions test-app/package.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{
"name": "@ts-gql/test-app",
"version": "0.1.21",
"version": "0.1.22",
"private": true,
"license": "MIT",
"dependencies": {
"@apollo/client": "^3.0.0-beta.43",
"@ts-gql/apollo": "^0.8.0",
"@ts-gql/babel-plugin": "^0.1.0",
"@ts-gql/compiler": "^0.13.0",
"@ts-gql/eslint-plugin": "^0.6.1",
"@ts-gql/next": "^13.0.0",
"@ts-gql/tag": "^0.5.0",
"@ts-gql/compiler": "^0.13.4",
"@ts-gql/eslint-plugin": "^0.7.0",
"@ts-gql/next": "^14.0.0",
"@ts-gql/tag": "^0.5.2",
"@types/node": "^13.13.2",
"@types/react": "^16.9.43",
"@types/react-dom": "^16.9.8",
Expand Down

0 comments on commit e9cf78b

Please sign in to comment.