Upcoming Release Changes (#7703)

This commit is contained in:
TheGuildBot 2026-02-18 18:43:01 +02:00 committed by GitHub
parent d112c78b42
commit e6cfdb01be
15 changed files with 68 additions and 59 deletions

View file

@ -1,5 +0,0 @@
---
'@graphql-hive/cli': patch
---
Do not minify multiline descriptions in SDL on check/push

View file

@ -1,5 +0,0 @@
---
'hive': patch
---
Fix service SDL being printed on a single line in check and publish views

View file

@ -1,6 +0,0 @@
---
'hive': patch
---
Fix unexpected error when attempting to select resources in a project without app
deployments/services

View file

@ -1,5 +0,0 @@
---
'hive': patch
---
Gracefully handle error when publish lock acquisition fails for clients not supporting retries.

View file

@ -1,5 +0,0 @@
---
'hive': patch
---
Hive Lab: Better initial state handling for env variables in preflight script

View file

@ -1,5 +0,0 @@
---
'hive': patch
---
Fix "see organization as admin" mode for debugging purposes.

View file

@ -1,5 +0,0 @@
---
'hive': patch
---
Add missing message for no details on schema check/push changes

View file

@ -1,5 +0,0 @@
---
'hive': patch
---
Add `lastUsed`, `createdAt`, `activatedAt`, and `status` columns to app deployments tables. Fix broken text colors on multiple pages after the recent color palette overhaul.

1
.gitignore vendored
View file

@ -145,3 +145,4 @@ test-results/
Cargo.lock
Cargo.lock
Cargo.lock
Cargo.lock

View file

@ -1,5 +1,45 @@
# hive
## 9.4.1
### Patch Changes
- [#7664](https://github.com/graphql-hive/console/pull/7664)
[`ddea09b`](https://github.com/graphql-hive/console/commit/ddea09bbc34f5486fa6ddddf4e60a899fc7f43b5)
Thanks [@jdolle](https://github.com/jdolle)! - Fix service SDL being printed on a single line in
check and publish views
- [#7688](https://github.com/graphql-hive/console/pull/7688)
[`fb14a99`](https://github.com/graphql-hive/console/commit/fb14a990871456730c7a5da92d157962fb0599a7)
Thanks [@n1ru4l](https://github.com/n1ru4l)! - Fix unexpected error when attempting to select
resources in a project without app deployments/services
- [#7687](https://github.com/graphql-hive/console/pull/7687)
[`c514e23`](https://github.com/graphql-hive/console/commit/c514e237daa125d8e64d350218ea553fbf4e44a3)
Thanks [@n1ru4l](https://github.com/n1ru4l)! - Gracefully handle error when publish lock
acquisition fails for clients not supporting retries.
- [#7670](https://github.com/graphql-hive/console/pull/7670)
[`8138a6c`](https://github.com/graphql-hive/console/commit/8138a6cb381f1f92eb514c0c9125d3c15df3e9b3)
Thanks [@mskorokhodov](https://github.com/mskorokhodov)! - Hive Lab: Better initial state handling
for env variables in preflight script
- [#7672](https://github.com/graphql-hive/console/pull/7672)
[`21f3aee`](https://github.com/graphql-hive/console/commit/21f3aeeb2a914f8da4bdc913aead3a9400bf75f4)
Thanks [@n1ru4l](https://github.com/n1ru4l)! - Fix "see organization as admin" mode for debugging
purposes.
- [#7675](https://github.com/graphql-hive/console/pull/7675)
[`30238d7`](https://github.com/graphql-hive/console/commit/30238d700b5b094358ebcd13f13b025b9fb33fe1)
Thanks [@jdolle](https://github.com/jdolle)! - Add missing message for no details on schema
check/push changes
- [#7669](https://github.com/graphql-hive/console/pull/7669)
[`a6f5ac4`](https://github.com/graphql-hive/console/commit/a6f5ac4cc61f7c5eee68768c3f82140cb0290dc1)
Thanks [@adambenhassen](https://github.com/adambenhassen)! - Add `lastUsed`, `createdAt`,
`activatedAt`, and `status` columns to app deployments tables. Fix broken text colors on multiple
pages after the recent color palette overhaul.
## 9.4.0
### Minor Changes

View file

@ -1,6 +1,6 @@
{
"name": "hive",
"version": "9.4.0",
"version": "9.4.1",
"private": true,
"scripts": {
"generate": "tsx generate.ts",

View file

@ -1,5 +1,14 @@
# @graphql-hive/cli
## 0.58.1
### Patch Changes
- [#7664](https://github.com/graphql-hive/console/pull/7664)
[`ddea09b`](https://github.com/graphql-hive/console/commit/ddea09bbc34f5486fa6ddddf4e60a899fc7f43b5)
Thanks [@jdolle](https://github.com/jdolle)! - Do not minify multiline descriptions in SDL on
check/push
## 0.58.0
### Minor Changes

View file

@ -81,7 +81,7 @@ DESCRIPTION
```
_See code:
[src/commands/app/create.ts](https://github.com/graphql-hive/platform/blob/v0.58.0/src/commands/app/create.ts)_
[src/commands/app/create.ts](https://github.com/graphql-hive/platform/blob/v0.58.1/src/commands/app/create.ts)_
## `hive app:publish`
@ -108,7 +108,7 @@ DESCRIPTION
```
_See code:
[src/commands/app/publish.ts](https://github.com/graphql-hive/platform/blob/v0.58.0/src/commands/app/publish.ts)_
[src/commands/app/publish.ts](https://github.com/graphql-hive/platform/blob/v0.58.1/src/commands/app/publish.ts)_
## `hive app:retire`
@ -136,7 +136,7 @@ DESCRIPTION
```
_See code:
[src/commands/app/retire.ts](https://github.com/graphql-hive/platform/blob/v0.58.0/src/commands/app/retire.ts)_
[src/commands/app/retire.ts](https://github.com/graphql-hive/platform/blob/v0.58.1/src/commands/app/retire.ts)_
## `hive artifact:fetch`
@ -160,7 +160,7 @@ DESCRIPTION
```
_See code:
[src/commands/artifact/fetch.ts](https://github.com/graphql-hive/platform/blob/v0.58.0/src/commands/artifact/fetch.ts)_
[src/commands/artifact/fetch.ts](https://github.com/graphql-hive/platform/blob/v0.58.1/src/commands/artifact/fetch.ts)_
## `hive dev`
@ -203,7 +203,7 @@ DESCRIPTION
```
_See code:
[src/commands/dev.ts](https://github.com/graphql-hive/platform/blob/v0.58.0/src/commands/dev.ts)_
[src/commands/dev.ts](https://github.com/graphql-hive/platform/blob/v0.58.1/src/commands/dev.ts)_
## `hive help [COMMAND]`
@ -247,7 +247,7 @@ DESCRIPTION
```
_See code:
[src/commands/introspect.ts](https://github.com/graphql-hive/platform/blob/v0.58.0/src/commands/introspect.ts)_
[src/commands/introspect.ts](https://github.com/graphql-hive/platform/blob/v0.58.1/src/commands/introspect.ts)_
## `hive operations:check FILE`
@ -306,7 +306,7 @@ DESCRIPTION
```
_See code:
[src/commands/operations/check.ts](https://github.com/graphql-hive/platform/blob/v0.58.0/src/commands/operations/check.ts)_
[src/commands/operations/check.ts](https://github.com/graphql-hive/platform/blob/v0.58.1/src/commands/operations/check.ts)_
## `hive schema:check FILE`
@ -351,7 +351,7 @@ DESCRIPTION
```
_See code:
[src/commands/schema/check.ts](https://github.com/graphql-hive/platform/blob/v0.58.0/src/commands/schema/check.ts)_
[src/commands/schema/check.ts](https://github.com/graphql-hive/platform/blob/v0.58.1/src/commands/schema/check.ts)_
## `hive schema:delete SERVICE`
@ -383,7 +383,7 @@ DESCRIPTION
```
_See code:
[src/commands/schema/delete.ts](https://github.com/graphql-hive/platform/blob/v0.58.0/src/commands/schema/delete.ts)_
[src/commands/schema/delete.ts](https://github.com/graphql-hive/platform/blob/v0.58.1/src/commands/schema/delete.ts)_
## `hive schema:fetch [COMMIT]`
@ -416,7 +416,7 @@ DESCRIPTION
```
_See code:
[src/commands/schema/fetch.ts](https://github.com/graphql-hive/platform/blob/v0.58.0/src/commands/schema/fetch.ts)_
[src/commands/schema/fetch.ts](https://github.com/graphql-hive/platform/blob/v0.58.1/src/commands/schema/fetch.ts)_
## `hive schema:publish FILE`
@ -460,7 +460,7 @@ DESCRIPTION
```
_See code:
[src/commands/schema/publish.ts](https://github.com/graphql-hive/platform/blob/v0.58.0/src/commands/schema/publish.ts)_
[src/commands/schema/publish.ts](https://github.com/graphql-hive/platform/blob/v0.58.1/src/commands/schema/publish.ts)_
## `hive update [CHANNEL]`
@ -523,7 +523,7 @@ DESCRIPTION
```
_See code:
[src/commands/whoami.ts](https://github.com/graphql-hive/platform/blob/v0.58.0/src/commands/whoami.ts)_
[src/commands/whoami.ts](https://github.com/graphql-hive/platform/blob/v0.58.1/src/commands/whoami.ts)_
<!-- commandsstop -->

View file

@ -1,6 +1,6 @@
{
"name": "@graphql-hive/cli",
"version": "0.58.0",
"version": "0.58.1",
"description": "A CLI util to manage and control your GraphQL Hive",
"repository": {
"type": "git",

View file

@ -152,7 +152,7 @@ using the link below
<Tabs.Tab>
```sh
curl -O https://raw.githubusercontent.com/graphql-hive/console/hive@9.4.0/docker/docker-compose.community.yml
curl -O https://raw.githubusercontent.com/graphql-hive/console/hive@9.4.1/docker/docker-compose.community.yml
```
</Tabs.Tab>
@ -160,7 +160,7 @@ curl -O https://raw.githubusercontent.com/graphql-hive/console/hive@9.4.0/docker
<Tabs.Tab>
```sh
wget https://raw.githubusercontent.com/graphql-hive/console/hive@9.4.0/docker/docker-compose.community.yml
wget https://raw.githubusercontent.com/graphql-hive/console/hive@9.4.1/docker/docker-compose.community.yml
```
</Tabs.Tab>
@ -179,7 +179,7 @@ We recommend sticking to a specific version to avoid breaking changes. The `late
correspons to the latest stable release.
```sh
export DOCKER_TAG=":9.4.0"
export DOCKER_TAG=":9.4.1"
```
After picking a version set the `DOCKER_TAG` environment variable to that value.
@ -188,7 +188,7 @@ After picking a version set the `DOCKER_TAG` environment variable to that value.
```bash
export DOCKER_REGISTRY="ghcr.io/graphql-hive/"
export DOCKER_TAG=":9.4.0" # Pin this to an exact version
export DOCKER_TAG=":9.4.1" # Pin this to an exact version
export HIVE_ENCRYPTION_SECRET=$(openssl rand -hex 16)
export HIVE_APP_BASE_URL="http://localhost:8080"
export HIVE_EMAIL_FROM="no-reply@graphql-hive.com"