mirror of
https://github.com/graphql-hive/console
synced 2026-04-21 14:37:17 +00:00
Upcoming Release Changes (#7902)
This commit is contained in:
parent
078e6611cb
commit
3330308ef5
9 changed files with 50 additions and 34 deletions
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
'hive-apollo-router-plugin': patch
|
||||
---
|
||||
|
||||
Bump `hive-console-sdk` to `0.3.7` to pin `graphql-tools` to a compatible version. The previous `hive-console-sdk@0.3.5` allowed `graphql-tools@^0.5` which resolves to `0.5.2`, a version that removes public API traits (`SchemaDocumentExtension`, `FieldByNameExtension`, etc.) that `hive-console-sdk` depends on.
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
'hive': patch
|
||||
---
|
||||
|
||||
Fix legacy member scope mappings granting access to deleting projects.
|
||||
|
|
@ -1,21 +0,0 @@
|
|||
---
|
||||
'hive': major
|
||||
---
|
||||
|
||||
Improved performance when looking up affected app deployments for breaking change detection.
|
||||
|
||||
**BREAKING CHANGE**
|
||||
|
||||
This release introduces a breaking change because it depends on a manual database migration introduced in `10.1.0`.
|
||||
|
||||
If you use the app deployments feature for conditional breaking change detection, you should:
|
||||
1. Upgrade to `10.1.0`
|
||||
2. Perform the manual database migration steps described in that version
|
||||
3. Then upgrade to this release
|
||||
|
||||
**Alternative upgrade path**
|
||||
|
||||
If you want to avoid performing the manual database migration:
|
||||
1. Upgrade to `10.1.0`
|
||||
2. Wait until all app deployments created **before** the rollout of `10.1.0` are retired
|
||||
3. Then upgrade to this release
|
||||
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -158,3 +158,4 @@ Cargo.lock
|
|||
Cargo.lock
|
||||
Cargo.lock
|
||||
Cargo.lock
|
||||
Cargo.lock
|
||||
|
|
|
|||
|
|
@ -1,5 +1,40 @@
|
|||
# hive
|
||||
|
||||
## 11.0.0
|
||||
|
||||
### Major Changes
|
||||
|
||||
- [#7837](https://github.com/graphql-hive/console/pull/7837)
|
||||
[`c00ea50`](https://github.com/graphql-hive/console/commit/c00ea5091c4ce9c939f1072876e6ebc4e991b1eb)
|
||||
Thanks [@n1ru4l](https://github.com/n1ru4l)! - Improved performance when looking up affected app
|
||||
deployments for breaking change detection.
|
||||
|
||||
**BREAKING CHANGE**
|
||||
|
||||
This release introduces a breaking change because it depends on a manual database migration
|
||||
introduced in `10.1.0`.
|
||||
|
||||
If you use the app deployments feature for conditional breaking change detection, you should:
|
||||
|
||||
1. Upgrade to `10.1.0`
|
||||
2. Perform the manual database migration steps described in that version
|
||||
3. Then upgrade to this release
|
||||
|
||||
**Alternative upgrade path**
|
||||
|
||||
If you want to avoid performing the manual database migration:
|
||||
|
||||
1. Upgrade to `10.1.0`
|
||||
2. Wait until all app deployments created **before** the rollout of `10.1.0` are retired
|
||||
3. Then upgrade to this release
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- [#7866](https://github.com/graphql-hive/console/pull/7866)
|
||||
[`66a4f6b`](https://github.com/graphql-hive/console/commit/66a4f6bef8818dc160fce7e83e446063c262e2fc)
|
||||
Thanks [@n1ru4l](https://github.com/n1ru4l)! - Fix legacy member scope mappings granting access to
|
||||
deleting projects.
|
||||
|
||||
## 10.2.0
|
||||
|
||||
### Minor Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "hive",
|
||||
"version": "10.2.0",
|
||||
"version": "11.0.0",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"generate": "tsx generate.ts",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,16 @@
|
|||
# 16.10.2024
|
||||
|
||||
## 3.0.3
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- [#7815](https://github.com/graphql-hive/console/pull/7815)
|
||||
[`078e661`](https://github.com/graphql-hive/console/commit/078e6611cbbd94b2ba325dc35bfbf636d2458f24)
|
||||
Thanks [@ardatan](https://github.com/ardatan)! - Bump `hive-console-sdk` to `0.3.7` to pin
|
||||
`graphql-tools` to a compatible version. The previous `hive-console-sdk@0.3.5` allowed
|
||||
`graphql-tools@^0.5` which resolves to `0.5.2`, a version that removes public API traits
|
||||
(`SchemaDocumentExtension`, `FieldByNameExtension`, etc.) that `hive-console-sdk` depends on.
|
||||
|
||||
## 3.0.2
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ repository = "https://github.com/graphql-hive/console/"
|
|||
edition = "2021"
|
||||
license = "MIT"
|
||||
publish = true
|
||||
version = "3.0.2"
|
||||
version = "3.0.3"
|
||||
description = "Apollo-Router Plugin for Hive"
|
||||
|
||||
[[bin]]
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "hive-apollo-router-plugin",
|
||||
"version": "3.0.2",
|
||||
"version": "3.0.3",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"sync-cargo-file": "ls -l sync-cargo-file.sh && bash ./sync-cargo-file.sh"
|
||||
|
|
|
|||
Loading…
Reference in a new issue