Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upcoming Release Changes #6463

Merged
merged 1 commit into from
Feb 5, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions .changeset/hungry-files-sneeze.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/small-readers-melt.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/tall-lies-raise.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/three-stingrays-do.md

This file was deleted.

30 changes: 0 additions & 30 deletions .changeset/wet-eggs-rule.md

This file was deleted.

22 changes: 22 additions & 0 deletions deployment/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,27 @@
# hive

## 5.1.0

### Minor Changes

- [#6449](https://github.com/graphql-hive/console/pull/6449)
[`0504530`](https://github.com/graphql-hive/console/commit/05045306b789e97ec39cbd2c8ee2b4f1b721dc9e)
Thanks [@n1ru4l](https://github.com/n1ru4l)! - Modify GraphQL fields used by CLI to accept an
optional specified target that is used for identifying the affected target instead of resolving
the target from the access token.

### Patch Changes

- [#6472](https://github.com/graphql-hive/console/pull/6472)
[`4d3d6fc`](https://github.com/graphql-hive/console/commit/4d3d6fcdc2d7f65e6366fd76a058c3f687c4da4c)
Thanks [@n1ru4l](https://github.com/n1ru4l)! - Improve the usage reporting endpoint error
responses to include all the errors for invalid JSON bodies.

- [#6455](https://github.com/graphql-hive/console/pull/6455)
[`6924a1a`](https://github.com/graphql-hive/console/commit/6924a1abf91c1c663d752949031e0a5c4078392a)
Thanks [@jasonkuhrt](https://github.com/jasonkuhrt)! - A minor defect in Laboratory has been fixed
that previously caused the application to crash when local storage was in a particular state.

## 5.0.0

### Major Changes
Expand Down
2 changes: 1 addition & 1 deletion deployment/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "hive",
"version": "5.0.0",
"version": "5.1.0",
"private": true,
"scripts": {
"generate": "tsx generate.ts",
Expand Down
34 changes: 34 additions & 0 deletions packages/libraries/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,39 @@
# @graphql-hive/cli

## 0.47.0

### Minor Changes

- [#6449](https://github.com/graphql-hive/console/pull/6449)
[`0504530`](https://github.com/graphql-hive/console/commit/05045306b789e97ec39cbd2c8ee2b4f1b721dc9e)
Thanks [@n1ru4l](https://github.com/n1ru4l)! - Add `--target` flag for commands `app:create`,
`app:publish`, `operations:check`, `schema:check`, `schema:delete`, `schema:fetch`,
`schema:publish` and `dev`.

The `--target` flag can be used to specify the target on which the operation should be performed.
Either a slug or ID of the target can be provided.

A provided slug must follow the format `$organizationSlug/$projectSlug/$targetSlug` (e.g.
`the-guild/graphql-hive/staging`).

**Example using target slug**

```bash
hive schema:publish --target the-guild/graphql-hive/production ./my-schema.graphql
```

A target id, must be a valid target UUID.

**Example using target id**

```bash
hive schema:publish --target a0f4c605-6541-4350-8cfe-b31f21a4bf80 ./my-schema.graphql
```

**Note:** We encourage starting to use the `--target` flag today. In the future the flag will
become mandatory as we are moving to a more flexible approach of access tokens that can be granted
access to multiple targets.

## 0.46.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/libraries/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@graphql-hive/cli",
"version": "0.46.1",
"version": "0.47.0",
"description": "A CLI util to manage and control your GraphQL Hive",
"repository": {
"type": "git",
Expand Down
12 changes: 12 additions & 0 deletions packages/libraries/yoga/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# @graphql-hive/yoga

## 0.39.4

### Patch Changes

- [#6473](https://github.com/graphql-hive/console/pull/6473)
[`bba81de`](https://github.com/graphql-hive/console/commit/bba81def2962ddcda5dcec389f70dca1356f2815)
Thanks [@n1ru4l](https://github.com/n1ru4l)! - Correctly extract client information when using the
response cache plugin.

The client information was not reported for GraphQL responses served from the response cache
plugin.

## 0.39.3

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/libraries/yoga/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@graphql-hive/yoga",
"version": "0.39.3",
"version": "0.39.4",
"type": "module",
"description": "GraphQL Hive + GraphQL Yoga",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion packages/libraries/yoga/src/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const version = '0.39.3';
export const version = '0.39.4';
Loading