Skip to content

Commit 3b1f0b3

Browse files
Version Packages (#28)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 308bf77 commit 3b1f0b3

File tree

10 files changed

+76
-44
lines changed

10 files changed

+76
-44
lines changed

.changeset/honest-dots-decide.md

Lines changed: 0 additions & 10 deletions
This file was deleted.

.changeset/spotty-squids-film.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

packages/generate-config/CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# @relay-graphql-js/generate-config
2+
3+
## 0.1.0
4+
### Minor Changes
5+
6+
7+
8+
- [#4](https://github.com/relay-tools/relay-graphql-js/pull/4) [`684b909`](https://github.com/relay-tools/relay-graphql-js/commit/684b909512fafc584da4415d60bf0caca899e571) Thanks [@acao](https://github.com/acao)! - ## Improvements
9+
10+
- use `RelayKnownArgumentNames` in both configs
11+
- export `validationRules` from core `generateConfig`
12+
13+
### Patch Changes
14+
15+
16+
17+
- [#22](https://github.com/relay-tools/relay-graphql-js/pull/22) [`63f3d9f`](https://github.com/relay-tools/relay-graphql-js/commit/63f3d9f87eb3b14e2eb080811ff9e605f54c099a) Thanks [@richardguerre](https://github.com/richardguerre)! - chore: fix `module.parent` deprecated according to #21
18+
19+
- Updated dependencies [[`684b909`](https://github.com/relay-tools/relay-graphql-js/commit/684b909512fafc584da4415d60bf0caca899e571)]:
20+
- @relay-graphql-js/validation-rules@0.1.0

packages/generate-config/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"name": "@relay-graphql-js/generate-config",
3-
"version": "0.0.1",
3+
"version": "0.1.0",
44
"description": "shared relay utilities for graphql-js compatible parsers",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",
77
"homepage": "https://github.com/relay-tools/relay-graphql-js/blob/main/packages/generate-config#readme",
8-
"repository": {
8+
"repository": {
99
"type": "git",
1010
"url": "https://github.com/relay-tools/relay-graphql-js.git",
1111
"directory": "packages/generate-config"
@@ -17,6 +17,6 @@
1717
"relay-config": ">=5.0.0"
1818
},
1919
"dependencies": {
20-
"@relay-graphql-js/validation-rules": "^0.0.1"
20+
"@relay-graphql-js/validation-rules": "^0.1.0"
2121
}
2222
}

packages/graphql-config/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# @relay-graphql-js/graphql-config
2+
3+
## 0.1.0
4+
### Minor Changes
5+
6+
7+
8+
- [#4](https://github.com/relay-tools/relay-graphql-js/pull/4) [`684b909`](https://github.com/relay-tools/relay-graphql-js/commit/684b909512fafc584da4415d60bf0caca899e571) Thanks [@acao](https://github.com/acao)! - ## Improvements
9+
10+
- use `RelayKnownArgumentNames` in both configs
11+
- export `validationRules` from core `generateConfig`

packages/graphql-config/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"name": "@relay-graphql-js/graphql-config",
3-
"version": "0.0.1",
3+
"version": "0.1.0",
44
"description": "full graphql config for relay graphql",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",
77
"homepage": "https://github.com/relay-tools/relay-graphql-js/blob/main/packages/graphql-config#readme",
8-
"repository": {
8+
"repository": {
99
"type": "git",
1010
"url": "https://github.com/relay-tools/relay-graphql-js.git",
1111
"directory": "packages/graphql-config"
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# @relay-graphql-js/validation-rules
2+
3+
## 0.1.0
4+
### Minor Changes
5+
6+
7+
8+
- [#4](https://github.com/relay-tools/relay-graphql-js/pull/4) [`684b909`](https://github.com/relay-tools/relay-graphql-js/commit/684b909512fafc584da4415d60bf0caca899e571) Thanks [@acao](https://github.com/acao)! - ## Improvements
9+
10+
- use `RelayKnownArgumentNames` in both configs
11+
- export `validationRules` from core `generateConfig`

packages/validation-rules/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
{
22
"name": "@relay-graphql-js/validation-rules",
3-
"version": "0.0.1",
3+
"version": "0.1.0",
44
"description": "shared validation rules for graphql-js parser",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",
77
"homepage": "https://github.com/relay-tools/relay-graphql-js/blob/main/packages/validation-rules#readme",
8-
"repository": {
8+
"repository": {
99
"type": "git",
1010
"url": "https://github.com/relay-tools/relay-graphql-js.git",
1111
"directory": "packages/validation-rules"
1212
},
1313
"author": "Rikki <[email protected]>",
1414
"license": "MIT",
1515
"devDependencies": {
16-
"@relay-graphql-js/generate-config": "^0.0.1"
16+
"@relay-graphql-js/generate-config": "^0.1.0"
1717
},
1818
"peerDependencies": {
1919
"graphql": ">= 14 < 16"

packages/vscode-apollo-relay/CHANGELOG.md

Lines changed: 23 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Changelog
22

3+
## 1.6.0
4+
5+
### Minor Changes
6+
7+
- [#4](https://github.com/relay-tools/relay-graphql-js/pull/4) [`684b909`](https://github.com/relay-tools/relay-graphql-js/commit/684b909512fafc584da4415d60bf0caca899e571) Thanks [@acao](https://github.com/acao)! - ## Improvements
8+
9+
- use `RelayKnownArgumentNames` in both configs
10+
- export `validationRules` from core `generateConfig`
11+
12+
### Patch Changes
13+
14+
- Updated dependencies [[`684b909`](https://github.com/relay-tools/relay-graphql-js/commit/684b909512fafc584da4415d60bf0caca899e571), [`63f3d9f`](https://github.com/relay-tools/relay-graphql-js/commit/63f3d9f87eb3b14e2eb080811ff9e605f54c099a)]:
15+
- @relay-graphql-js/generate-config@0.1.0
16+
317
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
418

519
### [1.5.1](https://github.com/relay-tools/vscode-apollo-relay/compare/v1.4.4...v1.5.1) (2020-09-19)
@@ -8,66 +22,57 @@ All notable changes to this project will be documented in this file. See [standa
822

923
### [1.4.3](https://github.com/relay-tools/vscode-apollo-relay/compare/v1.4.2...v1.4.3) (2019-09-24)
1024

11-
1225
### Bug Fixes
1326

14-
* Ensure Apollo NoMissingClientDirectives rule is never used ([06b312b](https://github.com/relay-tools/vscode-apollo-relay/commit/06b312b))
27+
- Ensure Apollo NoMissingClientDirectives rule is never used ([06b312b](https://github.com/relay-tools/vscode-apollo-relay/commit/06b312b))
1528

1629
### [1.4.2](https://github.com/relay-tools/vscode-apollo-relay/compare/v1.4.1...v1.4.2) (2019-09-18)
1730

18-
1931
### Bug Fixes
2032

21-
* Actually be compatible with relay v6 ([065ff0a](https://github.com/relay-tools/vscode-apollo-relay/commit/065ff0a))
33+
- Actually be compatible with relay v6 ([065ff0a](https://github.com/relay-tools/vscode-apollo-relay/commit/065ff0a))
2234

2335
### [1.4.1](https://github.com/relay-tools/vscode-apollo-relay/compare/v1.4.0...v1.4.1) (2019-09-18)
2436

25-
2637
### Bug Fixes
2738

28-
* Make compatible with relay v6. ([fc16681](https://github.com/relay-tools/vscode-apollo-relay/commit/fc16681)), closes [#17](https://github.com/relay-tools/vscode-apollo-relay/issues/17)
39+
- Make compatible with relay v6. ([fc16681](https://github.com/relay-tools/vscode-apollo-relay/commit/fc16681)), closes [#17](https://github.com/relay-tools/vscode-apollo-relay/issues/17)
2940

3041
## [1.4.0](https://github.com/relay-tools/vscode-apollo-relay/compare/v1.3.1...v1.4.0) (2019-09-17)
3142

32-
3343
### Features
3444

35-
* Pagination validation ([29c8445](https://github.com/relay-tools/vscode-apollo-relay/commit/29c8445))
45+
- Pagination validation ([29c8445](https://github.com/relay-tools/vscode-apollo-relay/commit/29c8445))
3646

3747
### [1.3.1](https://github.com/relay-tools/vscode-apollo-relay/compare/v1.3.0...v1.3.1) (2019-09-12)
3848

39-
4049
### Bug Fixes
4150

42-
* Fix example of manual config. ([1c42df5](https://github.com/relay-tools/vscode-apollo-relay/commit/1c42df5))
51+
- Fix example of manual config. ([1c42df5](https://github.com/relay-tools/vscode-apollo-relay/commit/1c42df5))
4352

4453
## [1.3.0](https://github.com/relay-tools/vscode-apollo-relay/compare/v1.2.0...v1.3.0) (2019-09-11)
4554

46-
4755
### Features
4856

49-
* Validate default values ([42264c2](https://github.com/relay-tools/vscode-apollo-relay/commit/42264c2))
57+
- Validate default values ([42264c2](https://github.com/relay-tools/vscode-apollo-relay/commit/42264c2))
5058

5159
## [1.2.0](https://github.com/relay-tools/vscode-apollo-relay/compare/v1.1.1...v1.2.0) (2019-09-11)
5260

53-
5461
### Features
5562

56-
* Validate literal argument values ([9b2276c](https://github.com/relay-tools/vscode-apollo-relay/commit/9b2276c))
63+
- Validate literal argument values ([9b2276c](https://github.com/relay-tools/vscode-apollo-relay/commit/9b2276c))
5764

5865
### [1.1.1](https://github.com/relay-tools/vscode-apollo-relay/compare/v1.1.0...v1.1.1) (2019-09-10)
5966

60-
6167
### Bug Fixes
6268

63-
* Don't import isInputType from `graphql` itself ([9d9c2ed](https://github.com/relay-tools/vscode-apollo-relay/commit/9d9c2ed))
69+
- Don't import isInputType from `graphql` itself ([9d9c2ed](https://github.com/relay-tools/vscode-apollo-relay/commit/9d9c2ed))
6470

6571
## [1.1.0](https://github.com/relay-tools/vscode-apollo-relay/compare/v1.0.2...v1.1.0) (2019-09-10)
6672

67-
6873
### Features
6974

70-
* Adds variable validation. ([71c2783](https://github.com/relay-tools/vscode-apollo-relay/commit/71c2783)), closes [#7](https://github.com/relay-tools/vscode-apollo-relay/issues/7)
75+
- Adds variable validation. ([71c2783](https://github.com/relay-tools/vscode-apollo-relay/commit/71c2783)), closes [#7](https://github.com/relay-tools/vscode-apollo-relay/issues/7)
7176

7277
### [1.0.2](https://github.com/relay-tools/vscode-apollo-relay/compare/v1.0.1...v1.0.2) (2019-09-09)
7378

packages/vscode-apollo-relay/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vscode-apollo-relay",
3-
"version": "1.5.1",
3+
"version": "1.6.0",
44
"description": "Simple configuration of vscode-apollo for Relay projects.",
55
"keywords": [
66
"apollo",
@@ -10,7 +10,7 @@
1010
],
1111
"main": "dist/index.js",
1212
"types": "dist/index.d.ts",
13-
"repository": {
13+
"repository": {
1414
"type": "git",
1515
"url": "https://github.com/relay-tools/relay-graphql-js.git",
1616
"directory": "packages/vscode-apollo-relay"
@@ -32,7 +32,7 @@
3232
"release": "standard-version"
3333
},
3434
"dependencies": {
35-
"@relay-graphql-js/generate-config": "^0.0.1"
35+
"@relay-graphql-js/generate-config": "^0.1.0"
3636
},
3737
"devDependencies": {
3838
"apollo-language-server": "^1.23.4",

0 commit comments

Comments
 (0)