Skip to content

Commit c626482

Browse files
Upcoming Release Changes (#7137)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent ad6df81 commit c626482

File tree

13 files changed

+99
-49
lines changed

13 files changed

+99
-49
lines changed

.changeset/breezy-forks-press.md

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

.changeset/brown-ghosts-teach.md

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

.changeset/curly-corners-sneeze.md

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

.changeset/late-feet-write.md

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

.changeset/sixty-guests-fall.md

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

deployment/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
# hive
22

3+
## 8.5.0
4+
5+
### Minor Changes
6+
7+
- [#7155](https://github.com/graphql-hive/console/pull/7155)
8+
[`caebbe0`](https://github.com/graphql-hive/console/commit/caebbe093a997022691276e0dc67ce9ab8589112)
9+
Thanks [@jdolle](https://github.com/jdolle)! - add schemaVersionByCommit; update docs and cli; fix
10+
webhook commit reference
11+
12+
### Patch Changes
13+
14+
- [#7124](https://github.com/graphql-hive/console/pull/7124)
15+
[`0e44587`](https://github.com/graphql-hive/console/commit/0e4458772196ad490b682bf9a87971d5179c3985)
16+
Thanks [@jdolle](https://github.com/jdolle)! - get latest log in version by commit and add version
17+
details to history page
18+
319
## 8.4.1
420

521
### Patch Changes

deployment/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "hive",
3-
"version": "8.4.1",
3+
"version": "8.5.0",
44
"private": true,
55
"scripts": {
66
"generate": "tsx generate.ts",

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.52.0
4+
5+
### Minor Changes
6+
7+
- [#7155](https://github.com/graphql-hive/console/pull/7155)
8+
[`caebbe0`](https://github.com/graphql-hive/console/commit/caebbe093a997022691276e0dc67ce9ab8589112)
9+
Thanks [@jdolle](https://github.com/jdolle)! - add schemaVersionByCommit; update docs and cli; fix
10+
webhook commit reference
11+
312
## 0.51.0
413

514
### Minor Changes

packages/libraries/cli/README.md

Lines changed: 42 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ curl -sSL https://graphql-hive.com/install.sh | sh
4040

4141
- [`hive app:create FILE`](#hive-appcreate-file)
4242
- [`hive app:publish`](#hive-apppublish)
43+
- [`hive app:retire`](#hive-appretire)
4344
- [`hive artifact:fetch`](#hive-artifactfetch)
4445
- [`hive dev`](#hive-dev)
4546
- [`hive help [COMMAND]`](#hive-help-command)
@@ -80,7 +81,7 @@ DESCRIPTION
8081
```
8182

8283
_See code:
83-
[src/commands/app/create.ts](https://github.com/graphql-hive/platform/blob/v0.50.2/src/commands/app/create.ts)_
84+
[src/commands/app/create.ts](https://github.com/graphql-hive/platform/blob/v0.52.0/src/commands/app/create.ts)_
8485

8586
## `hive app:publish`
8687

@@ -107,7 +108,34 @@ DESCRIPTION
107108
```
108109

109110
_See code:
110-
[src/commands/app/publish.ts](https://github.com/graphql-hive/platform/blob/v0.50.2/src/commands/app/publish.ts)_
111+
[src/commands/app/publish.ts](https://github.com/graphql-hive/platform/blob/v0.52.0/src/commands/app/publish.ts)_
112+
113+
## `hive app:retire`
114+
115+
retire an app deployment
116+
117+
```
118+
USAGE
119+
$ hive app:retire --name <value> --version <value> [--debug] [--registry.endpoint <value>]
120+
[--registry.accessToken <value>] [--target <value>]
121+
122+
FLAGS
123+
--debug Whether debug output for HTTP calls and similar should be enabled.
124+
--name=<value> (required) app name
125+
--registry.accessToken=<value> registry access token
126+
--registry.endpoint=<value> registry endpoint
127+
--target=<value> The target in which the app deployment will be retired (slug or ID). This can either
128+
be a slug following the format "$organizationSlug/$projectSlug/$targetSlug" (e.g
129+
"the-guild/graphql-hive/staging") or an UUID (e.g.
130+
"a0f4c605-6541-4350-8cfe-b31f21a4bf80").
131+
--version=<value> (required) app version
132+
133+
DESCRIPTION
134+
retire an app deployment
135+
```
136+
137+
_See code:
138+
[src/commands/app/retire.ts](https://github.com/graphql-hive/platform/blob/v0.52.0/src/commands/app/retire.ts)_
111139

112140
## `hive artifact:fetch`
113141

@@ -131,7 +159,7 @@ DESCRIPTION
131159
```
132160

133161
_See code:
134-
[src/commands/artifact/fetch.ts](https://github.com/graphql-hive/platform/blob/v0.50.2/src/commands/artifact/fetch.ts)_
162+
[src/commands/artifact/fetch.ts](https://github.com/graphql-hive/platform/blob/v0.52.0/src/commands/artifact/fetch.ts)_
135163

136164
## `hive dev`
137165

@@ -174,7 +202,7 @@ DESCRIPTION
174202
```
175203

176204
_See code:
177-
[src/commands/dev.ts](https://github.com/graphql-hive/platform/blob/v0.50.2/src/commands/dev.ts)_
205+
[src/commands/dev.ts](https://github.com/graphql-hive/platform/blob/v0.52.0/src/commands/dev.ts)_
178206

179207
## `hive help [COMMAND]`
180208

@@ -218,7 +246,7 @@ DESCRIPTION
218246
```
219247

220248
_See code:
221-
[src/commands/introspect.ts](https://github.com/graphql-hive/platform/blob/v0.50.2/src/commands/introspect.ts)_
249+
[src/commands/introspect.ts](https://github.com/graphql-hive/platform/blob/v0.52.0/src/commands/introspect.ts)_
222250

223251
## `hive operations:check FILE`
224252

@@ -277,7 +305,7 @@ DESCRIPTION
277305
```
278306

279307
_See code:
280-
[src/commands/operations/check.ts](https://github.com/graphql-hive/platform/blob/v0.50.2/src/commands/operations/check.ts)_
308+
[src/commands/operations/check.ts](https://github.com/graphql-hive/platform/blob/v0.52.0/src/commands/operations/check.ts)_
281309

282310
## `hive schema:check FILE`
283311

@@ -321,7 +349,7 @@ DESCRIPTION
321349
```
322350

323351
_See code:
324-
[src/commands/schema/check.ts](https://github.com/graphql-hive/platform/blob/v0.50.2/src/commands/schema/check.ts)_
352+
[src/commands/schema/check.ts](https://github.com/graphql-hive/platform/blob/v0.52.0/src/commands/schema/check.ts)_
325353

326354
## `hive schema:delete SERVICE`
327355

@@ -353,7 +381,7 @@ DESCRIPTION
353381
```
354382

355383
_See code:
356-
[src/commands/schema/delete.ts](https://github.com/graphql-hive/platform/blob/v0.50.2/src/commands/schema/delete.ts)_
384+
[src/commands/schema/delete.ts](https://github.com/graphql-hive/platform/blob/v0.52.0/src/commands/schema/delete.ts)_
357385

358386
## `hive schema:fetch [COMMIT]`
359387

@@ -365,7 +393,7 @@ USAGE
365393
[--registry.accessToken <value>] [--type <value>] [--write <value>] [--outputFile <value>] [--target <value>]
366394
367395
ARGUMENTS
368-
COMMIT commit SHA (or optionally any other external identifier)
396+
COMMIT commit SHA, or it can be any external ID that references the schema
369397
370398
FLAGS
371399
--debug Whether debug output for HTTP calls and similar should be enabled.
@@ -386,7 +414,7 @@ DESCRIPTION
386414
```
387415

388416
_See code:
389-
[src/commands/schema/fetch.ts](https://github.com/graphql-hive/platform/blob/v0.50.2/src/commands/schema/fetch.ts)_
417+
[src/commands/schema/fetch.ts](https://github.com/graphql-hive/platform/blob/v0.52.0/src/commands/schema/fetch.ts)_
390418

391419
## `hive schema:publish FILE`
392420

@@ -403,7 +431,8 @@ ARGUMENTS
403431
404432
FLAGS
405433
--author=<value> author of the change
406-
--commit=<value> associated commit sha
434+
--commit=<value> The associated commit SHA, or optionally any external identifier that references
435+
the schema
407436
--debug Whether debug output for HTTP calls and similar should be enabled.
408437
--experimental_acceptBreakingChanges (experimental) accept breaking changes and mark schema as valid (only if
409438
composable)
@@ -429,7 +458,7 @@ DESCRIPTION
429458
```
430459

431460
_See code:
432-
[src/commands/schema/publish.ts](https://github.com/graphql-hive/platform/blob/v0.50.2/src/commands/schema/publish.ts)_
461+
[src/commands/schema/publish.ts](https://github.com/graphql-hive/platform/blob/v0.52.0/src/commands/schema/publish.ts)_
433462

434463
## `hive update [CHANNEL]`
435464

@@ -490,7 +519,7 @@ DESCRIPTION
490519
```
491520

492521
_See code:
493-
[src/commands/whoami.ts](https://github.com/graphql-hive/platform/blob/v0.50.2/src/commands/whoami.ts)_
522+
[src/commands/whoami.ts](https://github.com/graphql-hive/platform/blob/v0.52.0/src/commands/whoami.ts)_
494523

495524
<!-- commandsstop -->
496525

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.51.0",
3+
"version": "0.52.0",
44
"description": "A CLI util to manage and control your GraphQL Hive",
55
"repository": {
66
"type": "git",

0 commit comments

Comments
 (0)