Skip to content

Commit c778450

Browse files
Upcoming Release Changes (#7263)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent e2169cf commit c778450

28 files changed

+214
-100
lines changed

.changeset/common-crabs-grow.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/lemon-hairs-sort.md

Lines changed: 0 additions & 30 deletions
This file was deleted.

.changeset/odd-mammals-admire.md

Lines changed: 0 additions & 29 deletions
This file was deleted.

.changeset/proud-jobs-say.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/strong-carrots-sniff.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

deployment/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# hive
22

3+
## 8.8.0
4+
5+
### Minor Changes
6+
7+
- [#7252](https://github.com/graphql-hive/console/pull/7252)
8+
[`717b5aa`](https://github.com/graphql-hive/console/commit/717b5aa6e839c0e73b85322908331768f0cdcc57)
9+
Thanks [@n1ru4l](https://github.com/n1ru4l)! - Support selecting resources when inviting a user
10+
via email.
11+
12+
- [#7252](https://github.com/graphql-hive/console/pull/7252)
13+
[`717b5aa`](https://github.com/graphql-hive/console/commit/717b5aa6e839c0e73b85322908331768f0cdcc57)
14+
Thanks [@n1ru4l](https://github.com/n1ru4l)! - Support assigning default resources for new OIDC
15+
members.
16+
317
## 8.7.1
418

519
### Patch Changes

deployment/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "hive",
3-
"version": "8.7.1",
3+
"version": "8.8.0",
44
"private": true,
55
"scripts": {
66
"generate": "tsx generate.ts",

packages/libraries/apollo/CHANGELOG.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,42 @@
11
# @graphql-hive/apollo
22

3+
## 0.41.0
4+
5+
### Minor Changes
6+
7+
- [#7264](https://github.com/graphql-hive/console/pull/7264)
8+
[`582bc0e`](https://github.com/graphql-hive/console/commit/582bc0e2a4a95d0023d1cdbe627bc6147f82af8e)
9+
Thanks [@n1ru4l](https://github.com/n1ru4l)! - Introduce debug log level. HTTP retry log pollute
10+
the error log. The retries are now logged to the debug level. In order to see debug logs set the
11+
`debug` option to true.
12+
13+
```ts
14+
const hive = createHive({
15+
debug: true
16+
})
17+
```
18+
19+
If you are using a custom logger, make sure to provide a `debug` logging method implementation.
20+
21+
```ts
22+
const hive = createHive({
23+
debug: true,
24+
agent: {
25+
logger: {
26+
info() {},
27+
error() {},
28+
debug() {}
29+
}
30+
}
31+
})
32+
```
33+
34+
### Patch Changes
35+
36+
- Updated dependencies
37+
[[`582bc0e`](https://github.com/graphql-hive/console/commit/582bc0e2a4a95d0023d1cdbe627bc6147f82af8e)]:
38+
- @graphql-hive/core@0.14.0
39+
340
## 0.40.2
441

542
### Patch Changes

packages/libraries/apollo/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@graphql-hive/apollo",
3-
"version": "0.40.2",
3+
"version": "0.41.0",
44
"type": "module",
55
"description": "GraphQL Hive + Apollo Server",
66
"repository": {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const version = '0.40.2';
1+
export const version = '0.41.0';

0 commit comments

Comments
 (0)