Upcoming Release Changes (#6342)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
TheGuildBot 2025-01-16 20:54:48 +07:00 committed by GitHub
parent 0c2e953fac
commit b2d2fb7d91
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
15 changed files with 78 additions and 69 deletions

View file

@ -1,5 +0,0 @@
---
'hive': minor
---
Remove the legacy member role assignment wizard.

View file

@ -1,5 +0,0 @@
---
'hive': patch
---
Assigns custom roles to members without a role to complete https://the-guild.dev/graphql/hive/product-updates/2023-12-05-member-roles

View file

@ -1,5 +0,0 @@
---
'hive': patch
---
Fix the audit log export

View file

@ -1,6 +0,0 @@
---
'hive': major
---
No longer support the legacy registry models. Announcement
https://the-guild.dev/blog/graphql-hive-improvements-in-schema-registry

View file

@ -1,5 +0,0 @@
---
'hive': patch
---
Fix connecting slack integration.

View file

@ -1,5 +0,0 @@
---
'hive': patch
---
Fix release and package flow for Docker images of `hive`

View file

@ -1,5 +0,0 @@
---
'hive': minor
---
Allow to close the last tab in Laboratory

View file

@ -1,14 +0,0 @@
---
'@graphql-hive/cli': minor
---
Add experimental json file flag to command `schema:check`.
On the `schema:check` command, you can now use the flag `--experimental-json-file ./path/to/schema-check-result.json` to output a JSON file containing the command's result.
This experimental feature is designed to help you with scripting, typically in CI/CD pipelines.
Please note that this is an experimental feature, and therefore is:
1. likely to change or be removed in a future version
2. not covered by semantic versioning.

View file

@ -1,5 +0,0 @@
---
'hive': minor
---
Add option for checking breaking changes by a fixed request count

View file

@ -1,5 +0,0 @@
---
'@graphql-hive/cli': minor
---
cli schema:fetch targets latest if actionId argument is missing

View file

@ -1,7 +0,0 @@
---
'@graphql-hive/cli': minor
---
BREAKING: Remove config commands
This prepares for the addition of JSON format output in other commands.

View file

@ -1,5 +1,50 @@
# hive
## 4.0.0
### Major Changes
- [#6259](https://github.com/graphql-hive/console/pull/6259)
[`1168564`](https://github.com/graphql-hive/console/commit/1168564ef06e10e90381ad7808f46c5f205be3ea)
Thanks [@kamilkisiela](https://github.com/kamilkisiela)! - No longer support the legacy registry
models. Announcement https://the-guild.dev/blog/graphql-hive-improvements-in-schema-registry
### Minor Changes
- [#6340](https://github.com/graphql-hive/console/pull/6340)
[`3183f5a`](https://github.com/graphql-hive/console/commit/3183f5a9b40ab389b413199747aeff4b9ea1cbe8)
Thanks [@n1ru4l](https://github.com/n1ru4l)! - Remove the legacy member role assignment wizard.
- [#6341](https://github.com/graphql-hive/console/pull/6341)
[`2fa3352`](https://github.com/graphql-hive/console/commit/2fa33520b36e4a0662ab9c74abc06fb4705d2a53)
Thanks [@kamilkisiela](https://github.com/kamilkisiela)! - Allow to close the last tab in
Laboratory
- [#6254](https://github.com/graphql-hive/console/pull/6254)
[`b58d2c5`](https://github.com/graphql-hive/console/commit/b58d2c5fdb856a3f0710d1551e1e9306eb7cbcc0)
Thanks [@jdolle](https://github.com/jdolle)! - Add option for checking breaking changes by a fixed
request count
### Patch Changes
- [#6332](https://github.com/graphql-hive/console/pull/6332)
[`6b9192c`](https://github.com/graphql-hive/console/commit/6b9192c71845d3312cb2a9b1e7c1d9a552fb6f8f)
Thanks [@kamilkisiela](https://github.com/kamilkisiela)! - Assigns custom roles to members without
a role to complete https://the-guild.dev/graphql/hive/product-updates/2023-12-05-member-roles
- [#6369](https://github.com/graphql-hive/console/pull/6369)
[`b40cabd`](https://github.com/graphql-hive/console/commit/b40cabda747641f13fcf183557ce023d12eec2b1)
Thanks [@kamilkisiela](https://github.com/kamilkisiela)! - Fix the audit log export
- [#6368](https://github.com/graphql-hive/console/pull/6368)
[`0c2e953`](https://github.com/graphql-hive/console/commit/0c2e953fac76cff1c7cb397468c480c28366f665)
Thanks [@n1ru4l](https://github.com/n1ru4l)! - Fix connecting slack integration.
- [#6365](https://github.com/graphql-hive/console/pull/6365)
[`bab2cf0`](https://github.com/graphql-hive/console/commit/bab2cf08a596892bc2c7ac0a1e5b00673808bff6)
Thanks [@dotansimha](https://github.com/dotansimha)! - Fix release and package flow for Docker
images of `hive`
## 3.0.0
### Major Changes

View file

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

View file

@ -1,5 +1,36 @@
# @graphql-hive/cli
## 0.46.0
### Minor Changes
- [#6357](https://github.com/graphql-hive/console/pull/6357)
[`e10cc2d`](https://github.com/graphql-hive/console/commit/e10cc2db4297dafabbbf4996d501384dd0884c4a)
Thanks [@jasonkuhrt](https://github.com/jasonkuhrt)! - Add experimental json file flag to command
`schema:check`.
On the `schema:check` command, you can now use the flag
`--experimental-json-file ./path/to/schema-check-result.json` to output a JSON file containing the
command's result.
This experimental feature is designed to help you with scripting, typically in CI/CD pipelines.
Please note that this is an experimental feature, and therefore is:
1. likely to change or be removed in a future version
2. not covered by semantic versioning.
- [#6338](https://github.com/graphql-hive/console/pull/6338)
[`f6565fc`](https://github.com/graphql-hive/console/commit/f6565fc8996922bfd657e83a8b53b8b473858154)
Thanks [@jdolle](https://github.com/jdolle)! - cli schema:fetch targets latest if actionId
argument is missing
- [#6333](https://github.com/graphql-hive/console/pull/6333)
[`0a84187`](https://github.com/graphql-hive/console/commit/0a84187051ae121f06bacc6b99da96d81e775dcd)
Thanks [@jasonkuhrt](https://github.com/jasonkuhrt)! - BREAKING: Remove config commands
This prepares for the addition of JSON format output in other commands.
## 0.45.0
### Minor Changes

View file

@ -1,6 +1,6 @@
{
"name": "@graphql-hive/cli",
"version": "0.45.0",
"version": "0.46.0",
"description": "A CLI util to manage and control your GraphQL Hive",
"repository": {
"type": "git",