mirror of
https://github.com/graphql-hive/console
synced 2026-04-21 14:37:17 +00:00
Upcoming Release Changes (#7351)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
This commit is contained in:
parent
dab506aaba
commit
5f5884deaf
11 changed files with 37 additions and 21 deletions
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
'hive': patch
|
||||
---
|
||||
|
||||
Fix invalid materialized view definition causing failing ClickHouse migrations
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
'hive-console-sdk-rs': patch
|
||||
---
|
||||
|
||||
Fix the bug where reports were not being sent correctly due to missing headers
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
'hive': patch
|
||||
---
|
||||
|
||||
Stricter CORS assessment for requests sending a Origin header.
|
||||
|
|
@ -1,5 +1,19 @@
|
|||
# hive
|
||||
|
||||
## 8.12.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- [#7350](https://github.com/graphql-hive/console/pull/7350)
|
||||
[`46ccf46`](https://github.com/graphql-hive/console/commit/46ccf4611eefd36ee20ec8598730d5f8b05c743a)
|
||||
Thanks [@n1ru4l](https://github.com/n1ru4l)! - Fix invalid materialized view definition causing
|
||||
failing ClickHouse migrations
|
||||
|
||||
- [#7349](https://github.com/graphql-hive/console/pull/7349)
|
||||
[`cf91128`](https://github.com/graphql-hive/console/commit/cf91128bc47b1d3980f5fdc6a05603503274d8ee)
|
||||
Thanks [@n1ru4l](https://github.com/n1ru4l)! - Stricter CORS assessment for requests sending a
|
||||
Origin header.
|
||||
|
||||
## 8.12.0
|
||||
|
||||
### Minor Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "hive",
|
||||
"version": "8.12.0",
|
||||
"version": "8.12.1",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"generate": "tsx generate.ts",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,13 @@
|
|||
# 16.10.2024
|
||||
|
||||
## 2.3.4
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
[[`69e2f74`](https://github.com/graphql-hive/console/commit/69e2f74ab867ee5e97bbcfcf6a1b69bb23ccc7b2)]:
|
||||
- hive-console-sdk-rs@0.2.1
|
||||
|
||||
## 2.3.3
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ repository = "https://github.com/graphql-hive/console/"
|
|||
edition = "2021"
|
||||
license = "MIT"
|
||||
publish = true
|
||||
version = "2.3.3"
|
||||
version = "2.3.4"
|
||||
description = "Apollo-Router Plugin for Hive"
|
||||
|
||||
[[bin]]
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "hive-apollo-router-plugin",
|
||||
"version": "2.3.3",
|
||||
"version": "2.3.4",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"sync-cargo-file": "./sync-cargo-file.sh"
|
||||
|
|
|
|||
|
|
@ -1,5 +1,14 @@
|
|||
# hive-console-sdk-rs
|
||||
|
||||
## 0.2.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- [#7364](https://github.com/graphql-hive/console/pull/7364)
|
||||
[`69e2f74`](https://github.com/graphql-hive/console/commit/69e2f74ab867ee5e97bbcfcf6a1b69bb23ccc7b2)
|
||||
Thanks [@ardatan](https://github.com/ardatan)! - Fix the bug where reports were not being sent
|
||||
correctly due to missing headers
|
||||
|
||||
## 0.2.0
|
||||
|
||||
### Minor Changes
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ repository = "https://github.com/graphql-hive/console/"
|
|||
edition = "2021"
|
||||
license = "MIT"
|
||||
publish = true
|
||||
version = "0.2.0"
|
||||
version = "0.2.1"
|
||||
description = "Rust SDK for Hive Console"
|
||||
|
||||
[lib]
|
||||
|
|
@ -34,4 +34,4 @@ sha2 = { version = "0.10.8", features = ["std"] }
|
|||
tokio-util = "0.7.16"
|
||||
|
||||
[dev-dependencies]
|
||||
mockito = "1.7.0"
|
||||
mockito = "1.7.0"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "hive-console-sdk-rs",
|
||||
"version": "0.2.0",
|
||||
"version": "0.2.1",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"sync-cargo-file": "./sync-cargo-file.sh"
|
||||
|
|
|
|||
Loading…
Reference in a new issue