Skip to content

Commit 9eeaf7a

Browse files
Upcoming Release Changes (#6463)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent bba81de commit 9eeaf7a

File tree

12 files changed

+72
-58
lines changed

12 files changed

+72
-58
lines changed

.changeset/hungry-files-sneeze.md

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

.changeset/small-readers-melt.md

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

.changeset/tall-lies-raise.md

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

.changeset/three-stingrays-do.md

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

.changeset/wet-eggs-rule.md

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

deployment/CHANGELOG.md

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

3+
## 5.1.0
4+
5+
### Minor Changes
6+
7+
- [#6449](https://github.com/graphql-hive/console/pull/6449)
8+
[`0504530`](https://github.com/graphql-hive/console/commit/05045306b789e97ec39cbd2c8ee2b4f1b721dc9e)
9+
Thanks [@n1ru4l](https://github.com/n1ru4l)! - Modify GraphQL fields used by CLI to accept an
10+
optional specified target that is used for identifying the affected target instead of resolving
11+
the target from the access token.
12+
13+
### Patch Changes
14+
15+
- [#6472](https://github.com/graphql-hive/console/pull/6472)
16+
[`4d3d6fc`](https://github.com/graphql-hive/console/commit/4d3d6fcdc2d7f65e6366fd76a058c3f687c4da4c)
17+
Thanks [@n1ru4l](https://github.com/n1ru4l)! - Improve the usage reporting endpoint error
18+
responses to include all the errors for invalid JSON bodies.
19+
20+
- [#6455](https://github.com/graphql-hive/console/pull/6455)
21+
[`6924a1a`](https://github.com/graphql-hive/console/commit/6924a1abf91c1c663d752949031e0a5c4078392a)
22+
Thanks [@jasonkuhrt](https://github.com/jasonkuhrt)! - A minor defect in Laboratory has been fixed
23+
that previously caused the application to crash when local storage was in a particular state.
24+
325
## 5.0.0
426

527
### Major 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": "5.0.0",
3+
"version": "5.1.0",
44
"private": true,
55
"scripts": {
66
"generate": "tsx generate.ts",

packages/libraries/cli/CHANGELOG.md

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

3+
## 0.47.0
4+
5+
### Minor Changes
6+
7+
- [#6449](https://github.com/graphql-hive/console/pull/6449)
8+
[`0504530`](https://github.com/graphql-hive/console/commit/05045306b789e97ec39cbd2c8ee2b4f1b721dc9e)
9+
Thanks [@n1ru4l](https://github.com/n1ru4l)! - Add `--target` flag for commands `app:create`,
10+
`app:publish`, `operations:check`, `schema:check`, `schema:delete`, `schema:fetch`,
11+
`schema:publish` and `dev`.
12+
13+
The `--target` flag can be used to specify the target on which the operation should be performed.
14+
Either a slug or ID of the target can be provided.
15+
16+
A provided slug must follow the format `$organizationSlug/$projectSlug/$targetSlug` (e.g.
17+
`the-guild/graphql-hive/staging`).
18+
19+
**Example using target slug**
20+
21+
```bash
22+
hive schema:publish --target the-guild/graphql-hive/production ./my-schema.graphql
23+
```
24+
25+
A target id, must be a valid target UUID.
26+
27+
**Example using target id**
28+
29+
```bash
30+
hive schema:publish --target a0f4c605-6541-4350-8cfe-b31f21a4bf80 ./my-schema.graphql
31+
```
32+
33+
**Note:** We encourage starting to use the `--target` flag today. In the future the flag will
34+
become mandatory as we are moving to a more flexible approach of access tokens that can be granted
35+
access to multiple targets.
36+
337
## 0.46.1
438

539
### Patch Changes

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

packages/libraries/yoga/CHANGELOG.md

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

3+
## 0.39.4
4+
5+
### Patch Changes
6+
7+
- [#6473](https://github.com/graphql-hive/console/pull/6473)
8+
[`bba81de`](https://github.com/graphql-hive/console/commit/bba81def2962ddcda5dcec389f70dca1356f2815)
9+
Thanks [@n1ru4l](https://github.com/n1ru4l)! - Correctly extract client information when using the
10+
response cache plugin.
11+
12+
The client information was not reported for GraphQL responses served from the response cache
13+
plugin.
14+
315
## 0.39.3
416

517
### Patch Changes

0 commit comments

Comments
 (0)