Upcoming Release Changes (#7716)

This commit is contained in:
TheGuildBot 2026-02-20 20:12:51 +02:00 committed by GitHub
parent a95deb7563
commit fb0bea7bb3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 24 additions and 20 deletions

View file

@ -1,7 +0,0 @@
---
'@graphql-hive/cli': patch
---
Replace custom regex logic that stripped all spaces on publish. Use graphqljs' stripIgnoredCharacters
function instead. This maintains the useful spacing in multiline descriptions while stripping out other
unnecessary characters

1
.gitignore vendored
View file

@ -147,3 +147,4 @@ Cargo.lock
Cargo.lock
Cargo.lock
Cargo.lock
Cargo.lock

View file

@ -1,5 +1,15 @@
# @graphql-hive/cli
## 0.58.3
### Patch Changes
- [#7712](https://github.com/graphql-hive/console/pull/7712)
[`a95deb7`](https://github.com/graphql-hive/console/commit/a95deb75632ae63cb812731f914000e75c010ea8)
Thanks [@jdolle](https://github.com/jdolle)! - Replace custom regex logic that stripped all spaces
on publish. Use graphqljs' stripIgnoredCharacters function instead. This maintains the useful
spacing in multiline descriptions while stripping out other unnecessary characters
## 0.58.2
### Patch Changes

View file

@ -81,7 +81,7 @@ DESCRIPTION
```
_See code:
[src/commands/app/create.ts](https://github.com/graphql-hive/platform/blob/v0.58.2/src/commands/app/create.ts)_
[src/commands/app/create.ts](https://github.com/graphql-hive/platform/blob/v0.58.3/src/commands/app/create.ts)_
## `hive app:publish`
@ -108,7 +108,7 @@ DESCRIPTION
```
_See code:
[src/commands/app/publish.ts](https://github.com/graphql-hive/platform/blob/v0.58.2/src/commands/app/publish.ts)_
[src/commands/app/publish.ts](https://github.com/graphql-hive/platform/blob/v0.58.3/src/commands/app/publish.ts)_
## `hive app:retire`
@ -136,7 +136,7 @@ DESCRIPTION
```
_See code:
[src/commands/app/retire.ts](https://github.com/graphql-hive/platform/blob/v0.58.2/src/commands/app/retire.ts)_
[src/commands/app/retire.ts](https://github.com/graphql-hive/platform/blob/v0.58.3/src/commands/app/retire.ts)_
## `hive artifact:fetch`
@ -160,7 +160,7 @@ DESCRIPTION
```
_See code:
[src/commands/artifact/fetch.ts](https://github.com/graphql-hive/platform/blob/v0.58.2/src/commands/artifact/fetch.ts)_
[src/commands/artifact/fetch.ts](https://github.com/graphql-hive/platform/blob/v0.58.3/src/commands/artifact/fetch.ts)_
## `hive dev`
@ -203,7 +203,7 @@ DESCRIPTION
```
_See code:
[src/commands/dev.ts](https://github.com/graphql-hive/platform/blob/v0.58.2/src/commands/dev.ts)_
[src/commands/dev.ts](https://github.com/graphql-hive/platform/blob/v0.58.3/src/commands/dev.ts)_
## `hive help [COMMAND]`
@ -247,7 +247,7 @@ DESCRIPTION
```
_See code:
[src/commands/introspect.ts](https://github.com/graphql-hive/platform/blob/v0.58.2/src/commands/introspect.ts)_
[src/commands/introspect.ts](https://github.com/graphql-hive/platform/blob/v0.58.3/src/commands/introspect.ts)_
## `hive operations:check FILE`
@ -306,7 +306,7 @@ DESCRIPTION
```
_See code:
[src/commands/operations/check.ts](https://github.com/graphql-hive/platform/blob/v0.58.2/src/commands/operations/check.ts)_
[src/commands/operations/check.ts](https://github.com/graphql-hive/platform/blob/v0.58.3/src/commands/operations/check.ts)_
## `hive schema:check FILE`
@ -351,7 +351,7 @@ DESCRIPTION
```
_See code:
[src/commands/schema/check.ts](https://github.com/graphql-hive/platform/blob/v0.58.2/src/commands/schema/check.ts)_
[src/commands/schema/check.ts](https://github.com/graphql-hive/platform/blob/v0.58.3/src/commands/schema/check.ts)_
## `hive schema:delete SERVICE`
@ -383,7 +383,7 @@ DESCRIPTION
```
_See code:
[src/commands/schema/delete.ts](https://github.com/graphql-hive/platform/blob/v0.58.2/src/commands/schema/delete.ts)_
[src/commands/schema/delete.ts](https://github.com/graphql-hive/platform/blob/v0.58.3/src/commands/schema/delete.ts)_
## `hive schema:fetch [COMMIT]`
@ -416,7 +416,7 @@ DESCRIPTION
```
_See code:
[src/commands/schema/fetch.ts](https://github.com/graphql-hive/platform/blob/v0.58.2/src/commands/schema/fetch.ts)_
[src/commands/schema/fetch.ts](https://github.com/graphql-hive/platform/blob/v0.58.3/src/commands/schema/fetch.ts)_
## `hive schema:publish FILE`
@ -460,7 +460,7 @@ DESCRIPTION
```
_See code:
[src/commands/schema/publish.ts](https://github.com/graphql-hive/platform/blob/v0.58.2/src/commands/schema/publish.ts)_
[src/commands/schema/publish.ts](https://github.com/graphql-hive/platform/blob/v0.58.3/src/commands/schema/publish.ts)_
## `hive update [CHANNEL]`
@ -523,7 +523,7 @@ DESCRIPTION
```
_See code:
[src/commands/whoami.ts](https://github.com/graphql-hive/platform/blob/v0.58.2/src/commands/whoami.ts)_
[src/commands/whoami.ts](https://github.com/graphql-hive/platform/blob/v0.58.3/src/commands/whoami.ts)_
<!-- commandsstop -->

View file

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