Skip to content

Commit

Permalink
Upcoming Release Changes (#5303)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
theguild-bot and github-actions[bot] authored Aug 2, 2024
1 parent e6dc5c9 commit e22512b
Show file tree
Hide file tree
Showing 13 changed files with 93 additions and 44 deletions.
27 changes: 0 additions & 27 deletions .changeset/chilly-balloons-cover.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/fuzzy-readers-melt.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/stupid-rabbits-swim.md

This file was deleted.

41 changes: 41 additions & 0 deletions packages/libraries/apollo/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,46 @@
# @graphql-hive/apollo

## 0.34.0

### Minor Changes

- [#5234](https://github.com/kamilkisiela/graphql-hive/pull/5234)
[`e6dc5c9`](https://github.com/kamilkisiela/graphql-hive/commit/e6dc5c9df34c30c52555b27b0bca50e0be75480b)
Thanks [@n1ru4l](https://github.com/n1ru4l)! - Better HTTP info, error and debug logging.

For the supergraph manager, pass a `console` instance as the `logger` property.

```ts
import { createSupergraphManager } from '@graphql-hive/apollo'

const manager = createSupergraphManager({
...otherOptions,
logger: console
})
```

For the supergraph SDL fetcher pass a `console` instance as the `logger` property.

```ts
import { createSupergraphSDLFetcher } from '@graphql-hive/apollo'
const manager = createSupergraphSDLFetcher({
...otherOptions,
logger: console
})
```

- [#5234](https://github.com/kamilkisiela/graphql-hive/pull/5234)
[`e6dc5c9`](https://github.com/kamilkisiela/graphql-hive/commit/e6dc5c9df34c30c52555b27b0bca50e0be75480b)
Thanks [@n1ru4l](https://github.com/n1ru4l)! - Improved logging output of HTTP requests and
retires.

### Patch Changes

- Updated dependencies
[[`e6dc5c9`](https://github.com/kamilkisiela/graphql-hive/commit/e6dc5c9df34c30c52555b27b0bca50e0be75480b)]:
- @graphql-hive/core@0.6.0

## 0.33.4

### 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.33.4",
"version": "0.34.0",
"type": "module",
"description": "GraphQL Hive + Apollo Server",
"repository": {
Expand Down
15 changes: 15 additions & 0 deletions packages/libraries/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# @graphql-hive/cli

## 0.40.0

### Minor Changes

- [#5234](https://github.com/kamilkisiela/graphql-hive/pull/5234)
[`e6dc5c9`](https://github.com/kamilkisiela/graphql-hive/commit/e6dc5c9df34c30c52555b27b0bca50e0be75480b)
Thanks [@n1ru4l](https://github.com/n1ru4l)! - Provide debug logging for HTTP requests when
providing the `--debug` flag.

### Patch Changes

- Updated dependencies
[[`e6dc5c9`](https://github.com/kamilkisiela/graphql-hive/commit/e6dc5c9df34c30c52555b27b0bca50e0be75480b)]:
- @graphql-hive/core@0.6.0

## 0.39.0

### Minor Changes
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.39.0",
"version": "0.40.0",
"description": "A CLI util to manage and control your GraphQL Hive",
"repository": {
"type": "git",
Expand Down
9 changes: 9 additions & 0 deletions packages/libraries/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @graphql-hive/core

## 0.6.0

### Minor Changes

- [#5234](https://github.com/kamilkisiela/graphql-hive/pull/5234)
[`e6dc5c9`](https://github.com/kamilkisiela/graphql-hive/commit/e6dc5c9df34c30c52555b27b0bca50e0be75480b)
Thanks [@n1ru4l](https://github.com/n1ru4l)! - Improved logging output of HTTP requests and
retires.

## 0.5.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/libraries/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@graphql-hive/core",
"version": "0.5.0",
"version": "0.6.0",
"type": "module",
"repository": {
"type": "git",
Expand Down
8 changes: 8 additions & 0 deletions packages/libraries/envelop/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @graphql-hive/envelop

## 0.33.4

### Patch Changes

- Updated dependencies
[[`e6dc5c9`](https://github.com/kamilkisiela/graphql-hive/commit/e6dc5c9df34c30c52555b27b0bca50e0be75480b)]:
- @graphql-hive/core@0.6.0

## 0.33.3

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/libraries/envelop/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@graphql-hive/envelop",
"version": "0.33.3",
"version": "0.33.4",
"type": "module",
"description": "GraphQL Hive + GraphQL Envelop",
"repository": {
Expand Down
15 changes: 15 additions & 0 deletions packages/libraries/yoga/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# @graphql-hive/yoga

## 0.34.0

### Minor Changes

- [#5234](https://github.com/kamilkisiela/graphql-hive/pull/5234)
[`e6dc5c9`](https://github.com/kamilkisiela/graphql-hive/commit/e6dc5c9df34c30c52555b27b0bca50e0be75480b)
Thanks [@n1ru4l](https://github.com/n1ru4l)! - Improved logging output of HTTP requests and
retires.

### Patch Changes

- Updated dependencies
[[`e6dc5c9`](https://github.com/kamilkisiela/graphql-hive/commit/e6dc5c9df34c30c52555b27b0bca50e0be75480b)]:
- @graphql-hive/core@0.6.0

## 0.33.3

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/libraries/yoga/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@graphql-hive/yoga",
"version": "0.33.3",
"version": "0.34.0",
"type": "module",
"description": "GraphQL Hive + GraphQL Yoga",
"repository": {
Expand Down

0 comments on commit e22512b

Please sign in to comment.