Upcoming Release Changes (#7668)

This commit is contained in:
TheGuildBot 2026-02-10 13:23:10 +02:00 committed by GitHub
parent 7b1ccede4a
commit aec59f9723
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
18 changed files with 72 additions and 63 deletions

View file

@ -1,5 +0,0 @@
---
'hive': patch
---
Fix for schema sdl resolver to ignore auto fix composite schema execution in case of monolith

View file

@ -1,5 +0,0 @@
---
'hive': patch
---
Fix stale app deployments query returning empty results for targets with >1000 deployments

View file

@ -1,5 +0,0 @@
---
'@graphql-hive/yoga': patch
---
Fix 500 error when malformed document IDs are passed to persisted documents. Now returns a proper GraphQL error with `INVALID_DOCUMENT_ID` code.

View file

@ -1,5 +0,0 @@
---
'hive': patch
---
Add created at, last used, and total docs to app deployment view

View file

@ -1,5 +0,0 @@
---
'hive': patch
---
Fix exception raised when performing an email invite.

View file

@ -1,5 +0,0 @@
---
'hive': patch
---
Fix Clickhouse "Field value too long" error when querying stale app deployments on targets with 1000+ deployments

View file

@ -1,5 +0,0 @@
---
'hive': minor
---
Add `Mutation.updateSchemaComposition` to the public GraphQL API schema.

View file

@ -1,5 +0,0 @@
---
'hive': patch
---
Update dependency `axios` to `1.13.5`, to address vulnerability `CVE-2026-25639`.

View file

@ -1,6 +0,0 @@
---
'hive': patch
---
Remove initialChecks from schema proposal creation mutation; Show proposal schema check updates in a
dialog box

View file

@ -1,5 +0,0 @@
---
'hive': patch
---
added light mode to console

View file

@ -1,5 +0,0 @@
---
'hive': minor
---
Add Mutation.retireAppDeployments to the public API

1
.gitignore vendored
View file

@ -144,3 +144,4 @@ docker/docker-compose.override.yml
test-results/
Cargo.lock
Cargo.lock
Cargo.lock

View file

@ -1,5 +1,59 @@
# hive
## 9.4.0
### Minor Changes
- [#7635](https://github.com/graphql-hive/console/pull/7635)
[`6c6f5ab`](https://github.com/graphql-hive/console/commit/6c6f5ab5f25a19ca5f2a7f1016ae1bd967542bc8)
Thanks [@n1ru4l](https://github.com/n1ru4l)! - Add `Mutation.updateSchemaComposition` to the
public GraphQL API schema.
- [#7642](https://github.com/graphql-hive/console/pull/7642)
[`a65b0bc`](https://github.com/graphql-hive/console/commit/a65b0bc7721c2b84417d6ba1052ffd03a34b556d)
Thanks [@jdolle](https://github.com/jdolle)! - Add Mutation.retireAppDeployments to the public API
### Patch Changes
- [#7614](https://github.com/graphql-hive/console/pull/7614)
[`e853916`](https://github.com/graphql-hive/console/commit/e85391651342ab23c0b19b03a93501a4f9abe2d2)
Thanks [@mskorokhodov](https://github.com/mskorokhodov)! - Fix for schema sdl resolver to ignore
auto fix composite schema execution in case of monolith
- [#7624](https://github.com/graphql-hive/console/pull/7624)
[`8afab7d`](https://github.com/graphql-hive/console/commit/8afab7d822527e4eb5d20b59c33d58881afefa3f)
Thanks [@adambenhassen](https://github.com/adambenhassen)! - Fix stale app deployments query
returning empty results for targets with >1000 deployments
- [#7628](https://github.com/graphql-hive/console/pull/7628)
[`c15775a`](https://github.com/graphql-hive/console/commit/c15775a7dcca75d3c82f438baa721f19de79351b)
Thanks [@jdolle](https://github.com/jdolle)! - Add created at, last used, and total docs to app
deployment view
- [#7622](https://github.com/graphql-hive/console/pull/7622)
[`d79d9f1`](https://github.com/graphql-hive/console/commit/d79d9f139e319734ed40c1f886531bcfa20d76b6)
Thanks [@n1ru4l](https://github.com/n1ru4l)! - Fix exception raised when performing an email
invite.
- [#7653](https://github.com/graphql-hive/console/pull/7653)
[`8857722`](https://github.com/graphql-hive/console/commit/88577222d2fa39fa37af363a80b69cafcddb4679)
Thanks [@adambenhassen](https://github.com/adambenhassen)! - Fix Clickhouse "Field value too long"
error when querying stale app deployments on targets with 1000+ deployments
- [#7667](https://github.com/graphql-hive/console/pull/7667)
[`0803ced`](https://github.com/graphql-hive/console/commit/0803cedb3ac585d0e84c2e251f520a5baee36aa1)
Thanks [@n1ru4l](https://github.com/n1ru4l)! - Update dependency `axios` to `1.13.5`, to address
vulnerability `CVE-2026-25639`.
- [#7619](https://github.com/graphql-hive/console/pull/7619)
[`a0e4bbf`](https://github.com/graphql-hive/console/commit/a0e4bbfa5d6109dbee01f6f15b1eaf0a7735887d)
Thanks [@jdolle](https://github.com/jdolle)! - Remove initialChecks from schema proposal creation
mutation; Show proposal schema check updates in a dialog box
- [#7592](https://github.com/graphql-hive/console/pull/7592)
[`6709e71`](https://github.com/graphql-hive/console/commit/6709e719c14ca097761f9eb1f81115c69dc369d4)
Thanks [@jonathanawesome](https://github.com/jonathanawesome)! - added light mode to console
## 9.3.0
### Minor Changes

View file

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

View file

@ -1,5 +1,15 @@
# @graphql-hive/yoga
## 0.47.3
### Patch Changes
- [#7605](https://github.com/graphql-hive/console/pull/7605)
[`efa0772`](https://github.com/graphql-hive/console/commit/efa077294bd759e5814f03dab9edac1d3141cea8)
Thanks [@adambenhassen](https://github.com/adambenhassen)! - Fix 500 error when malformed document
IDs are passed to persisted documents. Now returns a proper GraphQL error with
`INVALID_DOCUMENT_ID` code.
## 0.47.2
### Patch Changes

View file

@ -1,6 +1,6 @@
{
"name": "@graphql-hive/yoga",
"version": "0.47.2",
"version": "0.47.3",
"type": "module",
"description": "GraphQL Hive + GraphQL Yoga",
"repository": {

View file

@ -1 +1 @@
export const version = '0.47.2';
export const version = '0.47.3';

View file

@ -152,7 +152,7 @@ using the link below
<Tabs.Tab>
```sh
curl -O https://raw.githubusercontent.com/graphql-hive/console/hive@9.3.0/docker/docker-compose.community.yml
curl -O https://raw.githubusercontent.com/graphql-hive/console/hive@9.4.0/docker/docker-compose.community.yml
```
</Tabs.Tab>
@ -160,7 +160,7 @@ curl -O https://raw.githubusercontent.com/graphql-hive/console/hive@9.3.0/docker
<Tabs.Tab>
```sh
wget https://raw.githubusercontent.com/graphql-hive/console/hive@9.3.0/docker/docker-compose.community.yml
wget https://raw.githubusercontent.com/graphql-hive/console/hive@9.4.0/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.3.0"
export DOCKER_TAG=":9.4.0"
```
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.3.0" # Pin this to an exact version
export DOCKER_TAG=":9.4.0" # 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"