Skip to content

Commit c5ad712

Browse files
authored
Upcoming Release Changes (#8168)
1 parent 277ce5c commit c5ad712

9 files changed

Lines changed: 47 additions & 27 deletions

File tree

.changeset/crazy-rules-bake.md

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

.changeset/fix-graphql-1614-invariant.md

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

packages/libraries/cli/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# @graphql-hive/cli
22

3+
## 0.60.2
4+
5+
### Patch Changes
6+
7+
- [#8171](https://github.com/graphql-hive/console/pull/8171)
8+
[`277ce5c`](https://github.com/graphql-hive/console/commit/277ce5ced5c9c17769b43755ec12d27eb8550435)
9+
Thanks [@jdolle](https://github.com/jdolle)! - Print schema delete changes and errors. Do not
10+
require confirm on dry run deletes.
11+
312
## 0.60.1
413

514
### Patch Changes

packages/libraries/cli/README.md

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ DESCRIPTION
8484
```
8585

8686
_See code:
87-
[src/commands/app/create.ts](https://github.com/graphql-hive/platform/blob/v0.60.1/src/commands/app/create.ts)_
87+
[src/commands/app/create.ts](https://github.com/graphql-hive/platform/blob/v0.60.2/src/commands/app/create.ts)_
8888

8989
## `hive app:publish`
9090

@@ -111,7 +111,7 @@ DESCRIPTION
111111
```
112112

113113
_See code:
114-
[src/commands/app/publish.ts](https://github.com/graphql-hive/platform/blob/v0.60.1/src/commands/app/publish.ts)_
114+
[src/commands/app/publish.ts](https://github.com/graphql-hive/platform/blob/v0.60.2/src/commands/app/publish.ts)_
115115

116116
## `hive app:retire`
117117

@@ -139,7 +139,7 @@ DESCRIPTION
139139
```
140140

141141
_See code:
142-
[src/commands/app/retire.ts](https://github.com/graphql-hive/platform/blob/v0.60.1/src/commands/app/retire.ts)_
142+
[src/commands/app/retire.ts](https://github.com/graphql-hive/platform/blob/v0.60.2/src/commands/app/retire.ts)_
143143

144144
## `hive artifact:fetch`
145145

@@ -163,7 +163,7 @@ DESCRIPTION
163163
```
164164

165165
_See code:
166-
[src/commands/artifact/fetch.ts](https://github.com/graphql-hive/platform/blob/v0.60.1/src/commands/artifact/fetch.ts)_
166+
[src/commands/artifact/fetch.ts](https://github.com/graphql-hive/platform/blob/v0.60.2/src/commands/artifact/fetch.ts)_
167167

168168
## `hive dev`
169169

@@ -206,7 +206,7 @@ DESCRIPTION
206206
```
207207

208208
_See code:
209-
[src/commands/dev.ts](https://github.com/graphql-hive/platform/blob/v0.60.1/src/commands/dev.ts)_
209+
[src/commands/dev.ts](https://github.com/graphql-hive/platform/blob/v0.60.2/src/commands/dev.ts)_
210210

211211
## `hive help [COMMAND]`
212212

@@ -252,7 +252,7 @@ DESCRIPTION
252252
```
253253

254254
_See code:
255-
[src/commands/introspect.ts](https://github.com/graphql-hive/platform/blob/v0.60.1/src/commands/introspect.ts)_
255+
[src/commands/introspect.ts](https://github.com/graphql-hive/platform/blob/v0.60.2/src/commands/introspect.ts)_
256256

257257
## `hive operations:check FILE`
258258

@@ -311,7 +311,7 @@ DESCRIPTION
311311
```
312312

313313
_See code:
314-
[src/commands/operations/check.ts](https://github.com/graphql-hive/platform/blob/v0.60.1/src/commands/operations/check.ts)_
314+
[src/commands/operations/check.ts](https://github.com/graphql-hive/platform/blob/v0.60.2/src/commands/operations/check.ts)_
315315

316316
## `hive schema:check FILE`
317317

@@ -356,7 +356,7 @@ DESCRIPTION
356356
```
357357

358358
_See code:
359-
[src/commands/schema/check.ts](https://github.com/graphql-hive/platform/blob/v0.60.1/src/commands/schema/check.ts)_
359+
[src/commands/schema/check.ts](https://github.com/graphql-hive/platform/blob/v0.60.2/src/commands/schema/check.ts)_
360360

361361
## `hive schema:delete SERVICE`
362362

@@ -373,7 +373,8 @@ ARGUMENTS
373373
FLAGS
374374
--confirm Confirm deletion of the service
375375
--debug Whether debug output for HTTP calls and similar should be enabled.
376-
--dryRun Does not delete the service, only reports what it would have done.
376+
--dryRun Does not delete the service, only reports what it would have done. Skips confirmation
377+
prompt.
377378
--registry=<value> registry address
378379
--registry.accessToken=<value> registry access token
379380
--registry.endpoint=<value> registry endpoint
@@ -388,7 +389,7 @@ DESCRIPTION
388389
```
389390

390391
_See code:
391-
[src/commands/schema/delete.ts](https://github.com/graphql-hive/platform/blob/v0.60.1/src/commands/schema/delete.ts)_
392+
[src/commands/schema/delete.ts](https://github.com/graphql-hive/platform/blob/v0.60.2/src/commands/schema/delete.ts)_
392393

393394
## `hive schema:fetch [COMMIT]`
394395

@@ -421,7 +422,7 @@ DESCRIPTION
421422
```
422423

423424
_See code:
424-
[src/commands/schema/fetch.ts](https://github.com/graphql-hive/platform/blob/v0.60.1/src/commands/schema/fetch.ts)_
425+
[src/commands/schema/fetch.ts](https://github.com/graphql-hive/platform/blob/v0.60.2/src/commands/schema/fetch.ts)_
425426

426427
## `hive schema:promote`
427428

@@ -454,7 +455,7 @@ DESCRIPTION
454455
```
455456

456457
_See code:
457-
[src/commands/schema/promote.ts](https://github.com/graphql-hive/platform/blob/v0.60.1/src/commands/schema/promote.ts)_
458+
[src/commands/schema/promote.ts](https://github.com/graphql-hive/platform/blob/v0.60.2/src/commands/schema/promote.ts)_
458459

459460
## `hive schema:publish FILE`
460461

@@ -498,7 +499,7 @@ DESCRIPTION
498499
```
499500

500501
_See code:
501-
[src/commands/schema/publish.ts](https://github.com/graphql-hive/platform/blob/v0.60.1/src/commands/schema/publish.ts)_
502+
[src/commands/schema/publish.ts](https://github.com/graphql-hive/platform/blob/v0.60.2/src/commands/schema/publish.ts)_
502503

503504
## `hive update [CHANNEL]`
504505

@@ -561,7 +562,7 @@ DESCRIPTION
561562
```
562563

563564
_See code:
564-
[src/commands/whoami.ts](https://github.com/graphql-hive/platform/blob/v0.60.1/src/commands/whoami.ts)_
565+
[src/commands/whoami.ts](https://github.com/graphql-hive/platform/blob/v0.60.2/src/commands/whoami.ts)_
565566

566567
<!-- commandsstop -->
567568

packages/libraries/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@graphql-hive/cli",
3-
"version": "0.60.1",
3+
"version": "0.60.2",
44
"description": "A CLI util to manage and control your GraphQL Hive",
55
"repository": {
66
"type": "git",

packages/libraries/laboratory/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# @graphql-hive/laboratory
22

3+
## 0.1.9
4+
5+
### Patch Changes
6+
7+
- [#8167](https://github.com/graphql-hive/console/pull/8167)
8+
[`6e9a210`](https://github.com/graphql-hive/console/commit/6e9a21009ca2754b8237da4afac1115d339be8d2)
9+
Thanks [@mskorokhodov](https://github.com/mskorokhodov)! - Bump bundled `graphql` from `^16.12.0`
10+
to `^16.14.0` to fix "Unexpected invariant triggered" error in the schema explorer when
11+
introspecting servers running graphql-js 16.14+. graphql-js 16.14.0 added `DIRECTIVE_DEFINITION`
12+
to the `@deprecated` directive's introspection locations; the previously bundled 16.12.0 did not
13+
recognise this enum value, making the Laboratory unusable against any such server.
14+
315
## 0.1.8
416

517
### Patch Changes

packages/libraries/laboratory/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@graphql-hive/laboratory",
3-
"version": "0.1.8",
3+
"version": "0.1.9",
44
"type": "module",
55
"license": "MIT",
66
"main": "./dist/hive-laboratory.cjs.js",

packages/libraries/render-laboratory/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# @graphql-yoga/render-graphiql
22

3+
## 0.1.10
4+
5+
### Patch Changes
6+
7+
- Updated dependencies
8+
[[`6e9a210`](https://github.com/graphql-hive/console/commit/6e9a21009ca2754b8237da4afac1115d339be8d2)]:
9+
- @graphql-hive/laboratory@0.1.9
10+
311
## 0.1.9
412

513
### Patch Changes

packages/libraries/render-laboratory/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@graphql-hive/render-laboratory",
3-
"version": "0.1.9",
3+
"version": "0.1.10",
44
"type": "module",
55
"description": "",
66
"repository": {

0 commit comments

Comments
 (0)