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
73 changes: 0 additions & 73 deletions .changeset/big-pigs-help.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/brave-tigers-dance.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/loose-dots-learn.md

This file was deleted.

12 changes: 12 additions & 0 deletions deployment/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# hive

## 8.11.0

### Minor Changes

- [#7267](https://github.com/graphql-hive/console/pull/7267)
[`114cd80`](https://github.com/graphql-hive/console/commit/114cd80a8e419d6ff631631fee28a9922a7b9e5a)
Thanks [@jdolle](https://github.com/jdolle)! - Upgrade graphql-inspector/core to v7 and update the
models to be able to handle the new change objects. GraphQL Inspector now supports directive
changes and improves the accuracy of the severity level for several change types. This will
improve schema checks to make them more accurate and more complete. See graphql-inspector's
changelog for details.

## 8.10.0

### Minor Changes
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.10.0",
"version": "8.11.0",
"private": true,
"scripts": {
"generate": "tsx generate.ts",
Expand Down
82 changes: 82 additions & 0 deletions packages/libraries/apollo/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,87 @@
# @graphql-hive/apollo

## 0.43.0

### Minor Changes

- [#7290](https://github.com/graphql-hive/console/pull/7290)
[`5229612`](https://github.com/graphql-hive/console/commit/5229612d4fd17ed2535ed8d66160758103d2c00f)
Thanks [@n1ru4l](https://github.com/n1ru4l)! - Add support for providing a logger object via
`HivePluginOptions`.

It is possible to provide the following options:

- **'trace'**
- **'debug'**
- **'info'** default
- **'warn'**
- **'error'**

```ts
import { createHive } from '@graphql-hive/core'

const client = createHive({
logger: 'info'
})
```

In addition to that, it is also possible to provide a Hive Logger instance, that allows more
control over how you want to log and forward logs.

```ts
import { createHive } from '@graphql-hive/core'
import { Logger } from '@graphql-hive/logger'

const client = createHive({
logger: new Logger()
})
```

Head to our [Hive Logger documentation](https://the-guild.dev/graphql/hive/docs/logger) to learn
more.

***

**The `HivePluginOptions.debug` option is now deprecated.** Instead, please provide the option
`debug` instead for the logger.

```diff
import { createHive } from '@graphql-hive/core'

const client = createHive({
- debug: process.env.DEBUG === "1",
+ logger: process.env.DEBUG === "1" ? "debug" : "info",
})
```

**Note**: If the `logger` property is provided, the `debug` option is ignored.

***

**The `HivePluginOptions.agent.logger` option is now deprecated.** Instead, please provide
`HivePluginOptions.logger`.

```diff
import { createHive } from '@graphql-hive/core'

const logger = new Logger()

const client = createHive({
agent: {
- logger,
},
+ logger,
})
```

**Note**: If both options are provided, the `agent` option is ignored.

### Patch Changes

- Updated dependencies
[[`5229612`](https://github.com/graphql-hive/console/commit/5229612d4fd17ed2535ed8d66160758103d2c00f)]:
- @graphql-hive/[email protected]

## 0.42.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/libraries/apollo/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@graphql-hive/apollo",
"version": "0.42.1",
"version": "0.43.0",
"type": "module",
"description": "GraphQL Hive + Apollo Server",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion packages/libraries/apollo/src/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const version = '0.42.1';
export const version = '0.43.0';
23 changes: 23 additions & 0 deletions packages/libraries/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,28 @@
# @graphql-hive/cli

## 0.55.0

### Minor Changes

- [#7267](https://github.com/graphql-hive/console/pull/7267)
[`114cd80`](https://github.com/graphql-hive/console/commit/114cd80a8e419d6ff631631fee28a9922a7b9e5a)
Thanks [@jdolle](https://github.com/jdolle)! - Upgrade graphql-inspector/core to v7 and update the
models to be able to handle the new change objects. GraphQL Inspector now supports directive
changes and improves the accuracy of the severity level for several change types. This will
improve schema checks to make them more accurate and more complete. See graphql-inspector's
changelog for details.

### Patch Changes

- [#7321](https://github.com/graphql-hive/console/pull/7321)
[`316859e`](https://github.com/graphql-hive/console/commit/316859ebcb29108efc30de515276a39a1161d124)
Thanks [@adambenhassen](https://github.com/adambenhassen)! - handle escaped single-quoted strings
in schema changes

- Updated dependencies
[[`5229612`](https://github.com/graphql-hive/console/commit/5229612d4fd17ed2535ed8d66160758103d2c00f)]:
- @graphql-hive/[email protected]

## 0.54.0

### Minor Changes
Expand Down
24 changes: 12 additions & 12 deletions packages/libraries/cli/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ DESCRIPTION
```

_See code:
[src/commands/app/create.ts](https://github.com/graphql-hive/platform/blob/v0.54.0/src/commands/app/create.ts)_
[src/commands/app/create.ts](https://github.com/graphql-hive/platform/blob/v0.55.0/src/commands/app/create.ts)_

## `hive app:publish`

Expand All @@ -108,7 +108,7 @@ DESCRIPTION
```

_See code:
[src/commands/app/publish.ts](https://github.com/graphql-hive/platform/blob/v0.54.0/src/commands/app/publish.ts)_
[src/commands/app/publish.ts](https://github.com/graphql-hive/platform/blob/v0.55.0/src/commands/app/publish.ts)_

## `hive app:retire`

Expand All @@ -135,7 +135,7 @@ DESCRIPTION
```

_See code:
[src/commands/app/retire.ts](https://github.com/graphql-hive/platform/blob/v0.54.0/src/commands/app/retire.ts)_
[src/commands/app/retire.ts](https://github.com/graphql-hive/platform/blob/v0.55.0/src/commands/app/retire.ts)_

## `hive artifact:fetch`

Expand All @@ -159,7 +159,7 @@ DESCRIPTION
```

_See code:
[src/commands/artifact/fetch.ts](https://github.com/graphql-hive/platform/blob/v0.54.0/src/commands/artifact/fetch.ts)_
[src/commands/artifact/fetch.ts](https://github.com/graphql-hive/platform/blob/v0.55.0/src/commands/artifact/fetch.ts)_

## `hive dev`

Expand Down Expand Up @@ -202,7 +202,7 @@ DESCRIPTION
```

_See code:
[src/commands/dev.ts](https://github.com/graphql-hive/platform/blob/v0.54.0/src/commands/dev.ts)_
[src/commands/dev.ts](https://github.com/graphql-hive/platform/blob/v0.55.0/src/commands/dev.ts)_

## `hive help [COMMAND]`

Expand Down Expand Up @@ -246,7 +246,7 @@ DESCRIPTION
```

_See code:
[src/commands/introspect.ts](https://github.com/graphql-hive/platform/blob/v0.54.0/src/commands/introspect.ts)_
[src/commands/introspect.ts](https://github.com/graphql-hive/platform/blob/v0.55.0/src/commands/introspect.ts)_

## `hive operations:check FILE`

Expand Down Expand Up @@ -305,7 +305,7 @@ DESCRIPTION
```

_See code:
[src/commands/operations/check.ts](https://github.com/graphql-hive/platform/blob/v0.54.0/src/commands/operations/check.ts)_
[src/commands/operations/check.ts](https://github.com/graphql-hive/platform/blob/v0.55.0/src/commands/operations/check.ts)_

## `hive schema:check FILE`

Expand Down Expand Up @@ -349,7 +349,7 @@ DESCRIPTION
```

_See code:
[src/commands/schema/check.ts](https://github.com/graphql-hive/platform/blob/v0.54.0/src/commands/schema/check.ts)_
[src/commands/schema/check.ts](https://github.com/graphql-hive/platform/blob/v0.55.0/src/commands/schema/check.ts)_

## `hive schema:delete SERVICE`

Expand Down Expand Up @@ -381,7 +381,7 @@ DESCRIPTION
```

_See code:
[src/commands/schema/delete.ts](https://github.com/graphql-hive/platform/blob/v0.54.0/src/commands/schema/delete.ts)_
[src/commands/schema/delete.ts](https://github.com/graphql-hive/platform/blob/v0.55.0/src/commands/schema/delete.ts)_

## `hive schema:fetch [COMMIT]`

Expand Down Expand Up @@ -414,7 +414,7 @@ DESCRIPTION
```

_See code:
[src/commands/schema/fetch.ts](https://github.com/graphql-hive/platform/blob/v0.54.0/src/commands/schema/fetch.ts)_
[src/commands/schema/fetch.ts](https://github.com/graphql-hive/platform/blob/v0.55.0/src/commands/schema/fetch.ts)_

## `hive schema:publish FILE`

Expand Down Expand Up @@ -458,7 +458,7 @@ DESCRIPTION
```

_See code:
[src/commands/schema/publish.ts](https://github.com/graphql-hive/platform/blob/v0.54.0/src/commands/schema/publish.ts)_
[src/commands/schema/publish.ts](https://github.com/graphql-hive/platform/blob/v0.55.0/src/commands/schema/publish.ts)_

## `hive update [CHANNEL]`

Expand Down Expand Up @@ -520,7 +520,7 @@ DESCRIPTION
```

_See code:
[src/commands/whoami.ts](https://github.com/graphql-hive/platform/blob/v0.54.0/src/commands/whoami.ts)_
[src/commands/whoami.ts](https://github.com/graphql-hive/platform/blob/v0.55.0/src/commands/whoami.ts)_

<!-- commandsstop -->

Expand Down
2 changes: 1 addition & 1 deletion packages/libraries/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@graphql-hive/cli",
"version": "0.54.0",
"version": "0.55.0",
"description": "A CLI util to manage and control your GraphQL Hive",
"repository": {
"type": "git",
Expand Down
Loading
Loading