Skip to content

Commit a8f21ad

Browse files
authored
fix: tweak to prevent prettier formatting to the changelog file (graphql#3133)
1 parent 4069090 commit a8f21ad

File tree

21 files changed

+1253
-4056
lines changed

21 files changed

+1253
-4056
lines changed

.changeset/unlucky-impalas-eat.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'vscode-graphql-syntax': patch
3+
---
4+
5+
ci: test formatting fix with a changeset

.prettierrc

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,15 @@
88
"files": ["*.md", "*.mdx"],
99
"options": {
1010
"printWidth": 80,
11-
"proseWrap": "always"
11+
"proseWrap": "preserve"
1212
}
1313
},
1414
{
15-
"files": ["**/.changeset/*.md"],
15+
"files": [
16+
"**/.changeset/*.md",
17+
"**/CHANGELOG.md",
18+
"working-group/agendas/**/*.md"
19+
],
1620
"options": {
1721
"proseWrap": "never"
1822
}

CHANGELOG.md

Lines changed: 14 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,4 @@
1-
> **Archived** For up to date changelogs that are automatically generated by
2-
> [changesets](https://github.com/atlassian/changesets), see CHANGELOG.md files
3-
> in respective workspaces. For example, the `graphiql` changelog is located at
4-
> [packages/graphiql/CHANGELOG.md](./packages/graphiql/CHANGELOG.md), and the
5-
> language server changelog is located at
6-
> [packages/graphql-language-service-server/CHANGELOG.md](./packages/graphql-language-service-server/CHANGELOG.md)
1+
> **Archived** For up to date changelogs that are automatically generated by [changesets](https://github.com/atlassian/changesets), see CHANGELOG.md files in respective workspaces. For example, the `graphiql` changelog is located at [packages/graphiql/CHANGELOG.md](./packages/graphiql/CHANGELOG.md), and the language server changelog is located at [packages/graphql-language-service-server/CHANGELOG.md](./packages/graphql-language-service-server/CHANGELOG.md)
72
83
## GraphiQL 0.14.2 - 11 Aug, 2019
94

@@ -21,8 +16,7 @@
2116

2217
- Fix formatting of subscription errors - #636, #722 - @benjie
2318
- preserve ctrl-f key for macOS - #759 - @pd4d10
24-
- Fix earlier 'Mode graphql failed to advance stream' on Linux by eating an
25-
exotic whitespace character - #735 closed by #932 - @benjie
19+
- Fix earlier 'Mode graphql failed to advance stream' on Linux by eating an exotic whitespace character - #735 closed by #932 - @benjie
2620
- Fix: check `this.editor` exists before `this.editor.off` in QueryEditor
2721

2822
## Codemirror GraphQL - 0.9 - 11 Aug, 2019
@@ -53,16 +47,14 @@
5347

5448
### Fixes
5549

56-
- Fix 'mode graphql failed to advance stream' error from shift-alt-space, etc -
57-
#932 - @benjie
50+
- Fix 'mode graphql failed to advance stream' error from shift-alt-space, etc - #932 - @benjie
5851

5952
## GraphQL Language Service Interface 2.1.0 - 11 Aug, 2019
6053

6154
### Features
6255

6356
- add \_\_typename field suggestion against object type - (#903) @yoshiakis
64-
- Update sortText logic, so that field sort is schema driven rather than
65-
alphabetically sorted - (#884) @ganemone
57+
- Update sortText logic, so that field sort is schema driven rather than alphabetically sorted - (#884) @ganemone
6658

6759
### Chores
6860

@@ -73,8 +65,7 @@
7365
## GraphQL Language Service 2.1.0
7466

7567
- BREAKING: add peer support for graphql 14.x
76-
- BREAKING: remove incompatible dependencies on graphql 0.11 and below (b/c of
77-
gls-utils 2.x)
68+
- BREAKING: remove incompatible dependencies on graphql 0.11 and below (b/c of gls-utils 2.x)
7869

7970
## GraphQL Language Service Utils 2.1.0 - 11 Aug, 2019
8071

@@ -99,8 +90,7 @@
9990

10091
- Hint/popup/etc DOM nodes use container rather than creating children of
10192
<body> - #791 - @codestryke
102-
- Add readOnly prop and pass to `QueryEditor` and `VariableEditor` - #718 -
103-
@TheSharpieOne
93+
- Add readOnly prop and pass to `QueryEditor` and `VariableEditor` - #718 - @TheSharpieOne
10494
- Add operationName to introspection query - #664 - @jbblanchet
10595
- Image Preview Functionality - #789 - @dunnbobcat @asiandrummer
10696

@@ -122,8 +112,7 @@
122112

123113
## Codemirror Graphql Mode 0.8.4 - 11 Aug, 2018
124114

125-
You will now be importing async methods from gls-interface 2.0.0, thus your
126-
bundler will require regenerator runtime
115+
You will now be importing async methods from gls-interface 2.0.0, thus your bundler will require regenerator runtime
127116

128117
## Chores
129118

@@ -134,41 +123,31 @@ bundler will require regenerator runtime
134123

135124
### Chores
136125

137-
- BREAKING: upgrade internal dependencies - gls-parser, gls-types, and gls-utils
138-
to 2.0.0 - @lostplan
139-
- BREAKING: remove incompatible dependencies on graphql 0.11 and below -
140-
@lostplan
126+
- BREAKING: upgrade internal dependencies - gls-parser, gls-types, and gls-utils to 2.0.0 - @lostplan
127+
- BREAKING: remove incompatible dependencies on graphql 0.11 and below - @lostplan
141128

142129
## GraphQL Language Service Utils 2.0.0 - 11 Sep, 2018
143130

144131
### Chores
145132

146-
- BREAKING: deprecate support for graphql-js 0.11.x and below - @lostplan
147-
[graphql/graphql-language-service#256](https://github.com/graphql/graphql-language-service/pull/256)
148-
[new ref](https://github.com/graphql/graphiql/commit/895e68537fd802b8b6ddf2578a1f76f85982c773)
149-
because of
150-
[this change](https://github.com/graphql/graphiql/commit/068c57fdb4a147be3c2fc38167e2def74d217a82#diff-696ceb17e38e4a274d4a149d24513b78)
133+
- BREAKING: deprecate support for graphql-js 0.11.x and below - @lostplan [graphql/graphql-language-service#256](https://github.com/graphql/graphql-language-service/pull/256) [new ref](https://github.com/graphql/graphiql/commit/895e68537fd802b8b6ddf2578a1f76f85982c773) because of [this change](https://github.com/graphql/graphiql/commit/068c57fdb4a147be3c2fc38167e2def74d217a82#diff-696ceb17e38e4a274d4a149d24513b78)
151134
- BREAKING: GraphQL 14.x support, peer dependency resolutions - #244 - @AGS-
152135

153136
## GraphQL Language Service Utils 1.2.2 - 11 Sep, 2018
154137

155138
### Chores
156139

157-
- add graphql-js 0.13 to peer deps of types package
158-
(graphql/graphql-language-service#241)
140+
- add graphql-js 0.13 to peer deps of types package (graphql/graphql-language-service#241)
159141

160142
## GraphQL Language Service Server 2.0.0 - 11 Sep, 2019
161143

162144
### Chores
163145

164-
- add graphql-js 0.13 to peer dependencies
165-
(graphql/graphql-language-service#241)
166-
- BREAKING: upgrade internal dependencies - gls-interface, gls-server and
167-
gls-utils to 2.0.0 @lostplan
146+
- add graphql-js 0.13 to peer dependencies (graphql/graphql-language-service#241)
147+
- BREAKING: upgrade internal dependencies - gls-interface, gls-server and gls-utils to 2.0.0 @lostplan
168148

169149
## GraphQL Language Service 2.0.0 - 11 Sep, 2018
170150

171151
### Chores
172152

173-
- BREAKING: upgrade internal dependencies - gls-interface, gls-server and
174-
gls-utils to 2.0.0 @Sol
153+
- BREAKING: upgrade internal dependencies - gls-interface, gls-server and gls-utils to 2.0.0 @Sol

examples/graphiql-cdn/CHANGELOG.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# Change Log
22

3-
All notable changes to this project will be documented in this file. See
4-
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
3+
All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
54

65
## [0.0.8](https://github.com/graphql/graphiql/compare/[email protected]@0.0.8) (2020-06-11)
76

examples/graphiql-parcel/CHANGELOG.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# Change Log
22

3-
All notable changes to this project will be documented in this file. See
4-
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
3+
All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
54

65
## [1.1.10-alpha.8](https://github.com/graphql/graphiql/compare/[email protected]@1.1.10-alpha.8) (2021-01-07)
76

@@ -67,6 +66,4 @@ All notable changes to this project will be documented in this file. See
6766

6867
### Features
6968

70-
- Add Parcel Example for GraphiQL
71-
([#1511](https://github.com/graphql/graphiql/issues/1511))
72-
([fe4b811](https://github.com/graphql/graphiql/commit/fe4b811876838cabdf545a6034ad12bc33e044b2))
69+
- Add Parcel Example for GraphiQL ([#1511](https://github.com/graphql/graphiql/issues/1511)) ([fe4b811](https://github.com/graphql/graphiql/commit/fe4b811876838cabdf545a6034ad12bc33e044b2))

examples/graphiql-webpack/CHANGELOG.md

Lines changed: 9 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# Change Log
22

3-
All notable changes to this project will be documented in this file. See
4-
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
3+
All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
54

65
## [1.1.1-alpha.8](https://github.com/graphql/graphiql/compare/example-graphiql-webpack@[email protected]) (2021-01-07)
76

@@ -43,9 +42,7 @@ All notable changes to this project will be documented in this file. See
4342

4443
### Features
4544

46-
- [RFC] GraphiQL rewrite for monaco editor, react context and redesign, i18n
47-
([#1523](https://github.com/graphql/graphiql/issues/1523))
48-
([ad730cd](https://github.com/graphql/graphiql/commit/ad730cdc2e3cb7216d821a01725c60475989ee20))
45+
- [RFC] GraphiQL rewrite for monaco editor, react context and redesign, i18n ([#1523](https://github.com/graphql/graphiql/issues/1523)) ([ad730cd](https://github.com/graphql/graphiql/commit/ad730cdc2e3cb7216d821a01725c60475989ee20))
4946

5047
# [1.0.0](https://github.com/graphql/graphiql/compare/example-graphiql-webpack@[email protected]) (2020-06-11)
5148

@@ -71,9 +68,7 @@ All notable changes to this project will be documented in this file. See
7168

7269
### Features
7370

74-
- introduce proper vscode completion kinds
75-
([#1488](https://github.com/graphql/graphiql/issues/1488))
76-
([f19aa0d](https://github.com/graphql/graphiql/commit/f19aa0ddde6109526c101c8a487f43bbb8238394))
71+
- introduce proper vscode completion kinds ([#1488](https://github.com/graphql/graphiql/issues/1488)) ([f19aa0d](https://github.com/graphql/graphiql/commit/f19aa0ddde6109526c101c8a487f43bbb8238394))
7772

7873
# [1.0.0-alpha.8](https://github.com/graphql/graphiql/compare/example-graphiql-webpack@[email protected]) (2020-04-10)
7974

@@ -91,10 +86,7 @@ All notable changes to this project will be documented in this file. See
9186

9287
### Features
9388

94-
- upgrade to [email protected] for
95-
[#1191](https://github.com/graphql/graphiql/issues/1191)
96-
([#1204](https://github.com/graphql/graphiql/issues/1204))
97-
([f13c8e9](https://github.com/graphql/graphiql/commit/f13c8e9d0e66df4b051b332c7d02f4bb83e07ffd))
89+
- upgrade to [email protected] for [#1191](https://github.com/graphql/graphiql/issues/1191) ([#1204](https://github.com/graphql/graphiql/issues/1204)) ([f13c8e9](https://github.com/graphql/graphiql/commit/f13c8e9d0e66df4b051b332c7d02f4bb83e07ffd))
9890

9991
# [1.0.0-alpha.4](https://github.com/graphql/graphiql/compare/example-graphiql-webpack@[email protected]) (2020-04-03)
10092

@@ -112,14 +104,11 @@ All notable changes to this project will be documented in this file. See
112104

113105
### Features
114106

115-
- deprecate support for 15, support react 16 features
116-
([#1107](https://github.com/graphql/graphiql/issues/1107))
117-
([bc4b6fc](https://github.com/graphql/graphiql/commit/bc4b6fc))
107+
- deprecate support for 15, support react 16 features ([#1107](https://github.com/graphql/graphiql/issues/1107)) ([bc4b6fc](https://github.com/graphql/graphiql/commit/bc4b6fc))
118108

119109
### BREAKING CHANGES
120110

121-
- Deprecate support for React 15. Please use React 16.8 or greater for hooks
122-
support. Co-authored-by: @ryan-m-walker, @acao Reviewed-by: @benjie
111+
- Deprecate support for React 15. Please use React 16.8 or greater for hooks support. Co-authored-by: @ryan-m-walker, @acao Reviewed-by: @benjie
123112

124113
## [0.0.10](https://github.com/graphql/graphiql/compare/[email protected]@0.0.10) (2019-12-09)
125114

@@ -137,22 +126,16 @@ All notable changes to this project will be documented in this file. See
137126

138127
### Bug Fixes
139128

140-
- ensure css files move with babel dist
141-
([ca95547](https://github.com/graphql/graphiql/commit/ca95547))
129+
- ensure css files move with babel dist ([ca95547](https://github.com/graphql/graphiql/commit/ca95547))
142130

143131
## [0.0.6](https://github.com/graphql/graphiql/compare/[email protected]@0.0.6) (2019-12-03)
144132

145133
### Bug Fixes
146134

147-
- convert browserify build to webpack, fixes
148-
[#976](https://github.com/graphql/graphiql/issues/976)
149-
([#1001](https://github.com/graphql/graphiql/issues/1001))
150-
([3caf041](https://github.com/graphql/graphiql/commit/3caf041))
135+
- convert browserify build to webpack, fixes [#976](https://github.com/graphql/graphiql/issues/976) ([#1001](https://github.com/graphql/graphiql/issues/1001)) ([3caf041](https://github.com/graphql/graphiql/commit/3caf041))
151136

152137
## 0.0.5 (2019-11-26)
153138

154139
### Bug Fixes
155140

156-
- webpack resolutions for
157-
[#882](https://github.com/graphql/graphiql/issues/882), add webpack example
158-
([ea9df3e](https://github.com/graphql/graphiql/commit/ea9df3e))
141+
- webpack resolutions for [#882](https://github.com/graphql/graphiql/issues/882), add webpack example ([ea9df3e](https://github.com/graphql/graphiql/commit/ea9df3e))

examples/monaco-graphql-webpack/CHANGELOG.md

Lines changed: 7 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,11 @@
44

55
### Patch Changes
66

7-
- Updated dependencies
8-
[[`e68cb8bc`](https://github.com/graphql/graphiql/commit/e68cb8bcaf9baddf6fca747abab871ecd1bc7a4c),
9-
[`f788e65a`](https://github.com/graphql/graphiql/commit/f788e65aff267ec873237034831d1fd936222a9b),
10-
[`bdc966cb`](https://github.com/graphql/graphiql/commit/bdc966cba6134a72ff7fe40f76543c77ba15d4a4),
11-
[`db2a0982`](https://github.com/graphql/graphiql/commit/db2a0982a17134f0069483ab283594eb64735b7d),
12-
[`8725d1b6`](https://github.com/graphql/graphiql/commit/8725d1b6b686139286cf05dec6a84d89942128ba)]:
7+
- Updated dependencies [[`e68cb8bc`](https://github.com/graphql/graphiql/commit/e68cb8bcaf9baddf6fca747abab871ecd1bc7a4c), [`f788e65a`](https://github.com/graphql/graphiql/commit/f788e65aff267ec873237034831d1fd936222a9b), [`bdc966cb`](https://github.com/graphql/graphiql/commit/bdc966cba6134a72ff7fe40f76543c77ba15d4a4), [`db2a0982`](https://github.com/graphql/graphiql/commit/db2a0982a17134f0069483ab283594eb64735b7d), [`8725d1b6`](https://github.com/graphql/graphiql/commit/8725d1b6b686139286cf05dec6a84d89942128ba)]:
138
149
1510

16-
All notable changes to this project will be documented in this file. See
17-
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
11+
All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
1812

1913
## [1.1.1-alpha.7](https://github.com/graphql/graphiql/compare/example-monaco-graphql-webpack@[email protected]) (2021-01-07)
2014

@@ -40,9 +34,7 @@ All notable changes to this project will be documented in this file. See
4034

4135
### Bug Fixes
4236

43-
- improve setSchema & schema loading, allow primitive schema
44-
([#1648](https://github.com/graphql/graphiql/issues/1648))
45-
([975f29e](https://github.com/graphql/graphiql/commit/975f29ed6e21c7354c42ed778dfd1b52287f70c6))
37+
- improve setSchema & schema loading, allow primitive schema ([#1648](https://github.com/graphql/graphiql/issues/1648)) ([975f29e](https://github.com/graphql/graphiql/commit/975f29ed6e21c7354c42ed778dfd1b52287f70c6))
4638

4739
## [1.1.1-alpha.1](https://github.com/graphql/graphiql/compare/example-monaco-graphql-webpack@[email protected]) (2020-08-12)
4840

@@ -56,17 +48,13 @@ All notable changes to this project will be documented in this file. See
5648

5749
### Features
5850

59-
- [RFC] GraphiQL rewrite for monaco editor, react context and redesign, i18n
60-
([#1523](https://github.com/graphql/graphiql/issues/1523))
61-
([ad730cd](https://github.com/graphql/graphiql/commit/ad730cdc2e3cb7216d821a01725c60475989ee20))
51+
- [RFC] GraphiQL rewrite for monaco editor, react context and redesign, i18n ([#1523](https://github.com/graphql/graphiql/issues/1523)) ([ad730cd](https://github.com/graphql/graphiql/commit/ad730cdc2e3cb7216d821a01725c60475989ee20))
6252

6353
# [1.0.0](https://github.com/graphql/graphiql/compare/example-monaco-graphql-webpack@[email protected]) (2020-06-11)
6454

6555
### Features
6656

67-
- standalone monaco API
68-
([#1575](https://github.com/graphql/graphiql/issues/1575))
69-
([954aa3d](https://github.com/graphql/graphiql/commit/954aa3d7159fd26bba9650824e0f668e417ca64f))
57+
- standalone monaco API ([#1575](https://github.com/graphql/graphiql/issues/1575)) ([954aa3d](https://github.com/graphql/graphiql/commit/954aa3d7159fd26bba9650824e0f668e417ca64f))
7058

7159
# [1.0.0-alpha.8](https://github.com/graphql/graphiql/compare/example-monaco-graphql-webpack@[email protected]) (2020-06-04)
7260

@@ -88,9 +76,5 @@ All notable changes to this project will be documented in this file. See
8876

8977
### Features
9078

91-
- Monaco Mode - Phase 2 - Mode & Worker
92-
([#1459](https://github.com/graphql/graphiql/issues/1459))
93-
([bc95fb4](https://github.com/graphql/graphiql/commit/bc95fb46459a4437ff9471ff43c98e1c5c50f51e))
94-
- monaco-graphql docs, api, improvements
95-
([#1521](https://github.com/graphql/graphiql/issues/1521))
96-
([c79158c](https://github.com/graphql/graphiql/commit/c79158c72e976ab286e7ec3fded7f3e2d24e50d0))
79+
- Monaco Mode - Phase 2 - Mode & Worker ([#1459](https://github.com/graphql/graphiql/issues/1459)) ([bc95fb4](https://github.com/graphql/graphiql/commit/bc95fb46459a4437ff9471ff43c98e1c5c50f51e))
80+
- monaco-graphql docs, api, improvements ([#1521](https://github.com/graphql/graphiql/issues/1521)) ([c79158c](https://github.com/graphql/graphiql/commit/c79158c72e976ab286e7ec3fded7f3e2d24e50d0))

0 commit comments

Comments
 (0)