Skip to content

Commit 9e46359

Browse files
theguild-botgithub-actions[bot]dotansimha
authored
Upcoming Release Changes (#7186)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Dotan Simha <[email protected]>
1 parent b80e896 commit 9e46359

File tree

12 files changed

+57
-31
lines changed

12 files changed

+57
-31
lines changed

.changeset/funny-rockets-speak.md

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

.changeset/nasty-emus-win.md

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

.changeset/six-teeth-attack.md

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

configs/cargo/Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

deployment/CHANGELOG.md

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

3+
## 8.5.2
4+
5+
### Patch Changes
6+
7+
- [#7185](https://github.com/graphql-hive/console/pull/7185)
8+
[`7457e4d`](https://github.com/graphql-hive/console/commit/7457e4de75c51a218493b6c7ea5b0e3823d99f6a)
9+
Thanks [@adambenhassen](https://github.com/adambenhassen)! - Fix schema check approval to properly
10+
reject checks with policy errors and return descriptive error message instead of generic error
11+
312
## 8.5.1
413

514
### Patch Changes
615

716
- [#7177](https://github.com/graphql-hive/console/pull/7177)
817
[`1f7f195`](https://github.com/graphql-hive/console/commit/1f7f1951b2b1ef76d0853a6588e39458e5e1a982)
9-
Thanks [@n1ru4l](https://github.com/n1ru4l)! - Fix issue with native
10-
federation public SDL generation around inaccessible interfaces.
18+
Thanks [@n1ru4l](https://github.com/n1ru4l)! - Fix issue with native federation public SDL
19+
generation around inaccessible interfaces.
1120

1221
**Example supergraph:**
1322

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": "8.5.1",
3+
"version": "8.5.2",
44
"private": true,
55
"scripts": {
66
"generate": "tsx generate.ts",

packages/libraries/router/CHANGELOG.md

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

3+
## 2.3.0
4+
5+
### Minor Changes
6+
7+
- [#7143](https://github.com/graphql-hive/console/pull/7143)
8+
[`b80e896`](https://github.com/graphql-hive/console/commit/b80e8960f492e3bcfe1012caab294d9066d86fe3)
9+
Thanks [@ardatan](https://github.com/ardatan)! - Extract Hive Console integration implementation
10+
into a new package `hive-console-sdk` which can be used by any Rust library for Hive Console
11+
integration
12+
13+
It also includes a refactor to use less Mutexes like replacing `lru` + `Mutex` with the
14+
thread-safe `moka` package. Only one place that handles queueing uses `Mutex` now.
15+
16+
### Patch Changes
17+
18+
- [#7143](https://github.com/graphql-hive/console/pull/7143)
19+
[`b80e896`](https://github.com/graphql-hive/console/commit/b80e8960f492e3bcfe1012caab294d9066d86fe3)
20+
Thanks [@ardatan](https://github.com/ardatan)! - Fixes a bug when Persisted Operations are enabled
21+
by default which should be explicitly enabled
22+
23+
- Updated dependencies
24+
[[`b80e896`](https://github.com/graphql-hive/console/commit/b80e8960f492e3bcfe1012caab294d9066d86fe3)]:
25+
26+
327
## 2.2.0
428

529
### Minor Changes

packages/libraries/router/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ repository = "https://github.com/graphql-hive/console/"
55
edition = "2021"
66
license = "MIT"
77
publish = true
8-
version = "2.2.0"
8+
version = "2.3.0"
99
description = "Apollo-Router Plugin for Hive"
1010

1111
[[bin]]
@@ -19,7 +19,7 @@ path = "src/lib.rs"
1919
[dependencies]
2020
apollo-router = { version = "^2.0.0" }
2121
axum-core = "0.5"
22-
hive-console-sdk = { path = "../sdk-rs" }
22+
hive-console-sdk = { path = "../sdk-rs", version = "0" }
2323
thiserror = "2.0.11"
2424
reqwest = { version = "0.12.0", default-features = false, features = [
2525
"rustls-tls",

packages/libraries/router/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "hive-apollo-router-plugin",
3-
"version": "2.2.0",
3+
"version": "2.3.0",
44
"private": true,
55
"scripts": {
66
"sync-cargo-file": "./sync-cargo-file.sh"
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# hive-console-sdk-rs
2+
3+
## 0.0.1
4+
5+
### Patch Changes
6+
7+
- [#7143](https://github.com/graphql-hive/console/pull/7143)
8+
[`b80e896`](https://github.com/graphql-hive/console/commit/b80e8960f492e3bcfe1012caab294d9066d86fe3)
9+
Thanks [@ardatan](https://github.com/ardatan)! - Extract Hive Console integration implementation
10+
into a new package `hive-console-sdk` which can be used by any Rust library for Hive Console
11+
integration
12+
13+
It also includes a refactor to use less Mutexes like replacing `lru` + `Mutex` with the
14+
thread-safe `moka` package. Only one place that handles queueing uses `Mutex` now.

0 commit comments

Comments
 (0)