Skip to content
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
10 changes: 0 additions & 10 deletions .changeset/funny-rockets-speak.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/nasty-emus-win.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/six-teeth-attack.md

This file was deleted.

4 changes: 2 additions & 2 deletions configs/cargo/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 11 additions & 2 deletions deployment/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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:**

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": "8.5.1",
"version": "8.5.2",
"private": true,
"scripts": {
"generate": "tsx generate.ts",
Expand Down
24 changes: 24 additions & 0 deletions packages/libraries/router/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)]:
- [email protected]

## 2.2.0

### Minor Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/libraries/router/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]]
Expand All @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion packages/libraries/router/package.json
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
14 changes: 14 additions & 0 deletions packages/libraries/sdk-rs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
2 changes: 1 addition & 1 deletion packages/libraries/sdk-rs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion packages/libraries/sdk-rs/package.json
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
Loading