Upcoming Release Changes (#7186)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Dotan Simha <dotansimha@gmail.com>
This commit is contained in:
TheGuildBot 2025-10-30 09:45:54 +02:00 committed by GitHub
parent b80e8960f4
commit 9e46359c01
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
12 changed files with 57 additions and 31 deletions

View file

@ -1,10 +0,0 @@
---
'hive-console-sdk-rs': patch
'hive-apollo-router-plugin': minor
---
Extract Hive Console integration implementation into a new package `hive-console-sdk` which can
be used by any Rust library for Hive Console integration
It also includes a refactor to use less Mutexes like replacing `lru` + `Mutex` with the thread-safe `moka` package.
Only one place that handles queueing uses `Mutex` now.

View file

@ -1,6 +0,0 @@
---
'hive': patch
---
Fix schema check approval to properly reject checks with policy errors and return descriptive error
message instead of generic error

View file

@ -1,5 +0,0 @@
---
'hive-apollo-router-plugin': patch
---
Fixes a bug when Persisted Operations are enabled by default which should be explicitly enabled

View file

@ -2614,7 +2614,7 @@ dependencies = [
[[package]]
name = "hive-apollo-router-plugin"
version = "2.2.0"
version = "2.3.0"
dependencies = [
"anyhow",
"apollo-router",
@ -2648,7 +2648,7 @@ dependencies = [
[[package]]
name = "hive-console-sdk"
version = "0.0.0"
version = "0.0.1"
dependencies = [
"anyhow",
"async-trait",

View file

@ -1,13 +1,22 @@
# hive
## 8.5.2
### Patch Changes
- [#7185](https://github.com/graphql-hive/console/pull/7185)
[`7457e4d`](https://github.com/graphql-hive/console/commit/7457e4de75c51a218493b6c7ea5b0e3823d99f6a)
Thanks [@adambenhassen](https://github.com/adambenhassen)! - Fix schema check approval to properly
reject checks with policy errors and return descriptive error message instead of generic error
## 8.5.1
### Patch Changes
- [#7177](https://github.com/graphql-hive/console/pull/7177)
[`1f7f195`](https://github.com/graphql-hive/console/commit/1f7f1951b2b1ef76d0853a6588e39458e5e1a982)
Thanks [@n1ru4l](https://github.com/n1ru4l)! - Fix issue with native
federation public SDL generation around inaccessible interfaces.
Thanks [@n1ru4l](https://github.com/n1ru4l)! - Fix issue with native federation public SDL
generation around inaccessible interfaces.
**Example supergraph:**

View file

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

View file

@ -1,5 +1,29 @@
# 16.10.2024
## 2.3.0
### Minor Changes
- [#7143](https://github.com/graphql-hive/console/pull/7143)
[`b80e896`](https://github.com/graphql-hive/console/commit/b80e8960f492e3bcfe1012caab294d9066d86fe3)
Thanks [@ardatan](https://github.com/ardatan)! - Extract Hive Console integration implementation
into a new package `hive-console-sdk` which can be used by any Rust library for Hive Console
integration
It also includes a refactor to use less Mutexes like replacing `lru` + `Mutex` with the
thread-safe `moka` package. Only one place that handles queueing uses `Mutex` now.
### Patch Changes
- [#7143](https://github.com/graphql-hive/console/pull/7143)
[`b80e896`](https://github.com/graphql-hive/console/commit/b80e8960f492e3bcfe1012caab294d9066d86fe3)
Thanks [@ardatan](https://github.com/ardatan)! - Fixes a bug when Persisted Operations are enabled
by default which should be explicitly enabled
- Updated dependencies
[[`b80e896`](https://github.com/graphql-hive/console/commit/b80e8960f492e3bcfe1012caab294d9066d86fe3)]:
- hive-console-sdk-rs@0.0.1
## 2.2.0
### Minor Changes

View file

@ -5,7 +5,7 @@ repository = "https://github.com/graphql-hive/console/"
edition = "2021"
license = "MIT"
publish = true
version = "2.2.0"
version = "2.3.0"
description = "Apollo-Router Plugin for Hive"
[[bin]]
@ -19,7 +19,7 @@ path = "src/lib.rs"
[dependencies]
apollo-router = { version = "^2.0.0" }
axum-core = "0.5"
hive-console-sdk = { path = "../sdk-rs" }
hive-console-sdk = { path = "../sdk-rs", version = "0" }
thiserror = "2.0.11"
reqwest = { version = "0.12.0", default-features = false, features = [
"rustls-tls",

View file

@ -1,6 +1,6 @@
{
"name": "hive-apollo-router-plugin",
"version": "2.2.0",
"version": "2.3.0",
"private": true,
"scripts": {
"sync-cargo-file": "./sync-cargo-file.sh"

View file

@ -0,0 +1,14 @@
# hive-console-sdk-rs
## 0.0.1
### Patch Changes
- [#7143](https://github.com/graphql-hive/console/pull/7143)
[`b80e896`](https://github.com/graphql-hive/console/commit/b80e8960f492e3bcfe1012caab294d9066d86fe3)
Thanks [@ardatan](https://github.com/ardatan)! - Extract Hive Console integration implementation
into a new package `hive-console-sdk` which can be used by any Rust library for Hive Console
integration
It also includes a refactor to use less Mutexes like replacing `lru` + `Mutex` with the
thread-safe `moka` package. Only one place that handles queueing uses `Mutex` now.

View file

@ -4,7 +4,7 @@ repository = "https://github.com/graphql-hive/console/"
edition = "2021"
license = "MIT"
publish = true
version = "0.0.0"
version = "0.0.1"
description = "Rust SDK for Hive Console"
[lib]

View file

@ -1,6 +1,6 @@
{
"name": "hive-console-sdk-rs",
"version": "0.0.0",
"version": "0.0.1",
"private": true,
"scripts": {
"sync-cargo-file": "./sync-cargo-file.sh"