Skip to content

Commit

Permalink
Upcoming Release Changes (#6257)
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 Jan 10, 2025
1 parent 52e3be3 commit 008fdbb
Show file tree
Hide file tree
Showing 22 changed files with 132 additions and 72 deletions.
5 changes: 0 additions & 5 deletions .changeset/big-experts-melt.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/blue-actors-work.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/five-yaks-type.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/grumpy-lemons-do.md

This file was deleted.

8 changes: 0 additions & 8 deletions .changeset/hip-pumpkins-fold.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/perfect-files-yell.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/quiet-meals-refuse.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/selfish-worms-buy.md

This file was deleted.

10 changes: 0 additions & 10 deletions .changeset/spotty-toes-help.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/young-peas-battle.md

This file was deleted.

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

## 3.0.0

### Major Changes

- [#6066](https://github.com/graphql-hive/console/pull/6066)
[`e747e4c`](https://github.com/graphql-hive/console/commit/e747e4cd44e6516809754e1be2999a698153c598)
Thanks [@n1ru4l](https://github.com/n1ru4l)! - Drop user accounts and organization not linked to a
SuperTokens account.

This is mainly a cleanup for legacy accounts on Hive Cloud that were not migrated from Auth0 some
years ago. It should not affect self-hosters.

### Minor Changes

- [#6261](https://github.com/graphql-hive/console/pull/6261)
[`09c01d6`](https://github.com/graphql-hive/console/commit/09c01d6491dae9c3963de04c6e841ee9813bcaa3)
Thanks [@kamilkisiela](https://github.com/kamilkisiela)! - Adds a response validation of the POST
https://slack.com/api/oauth.v2.access request.

This request is made when connecting Slack to Hive. This is to ensure that the response is a JSON
object and that it contains the expected keys and provide informative error messages if it does
not.

### Patch Changes

- [#6265](https://github.com/graphql-hive/console/pull/6265)
[`cecd95b`](https://github.com/graphql-hive/console/commit/cecd95bc6cdc29f6b81df8b221858201b49184ce)
Thanks [@dotansimha](https://github.com/dotansimha)! - Relax `uuid` check for external IDs in
audit log metadata. Fixes https://github.com/graphql-hive/console/issues/6264

- [#6262](https://github.com/graphql-hive/console/pull/6262)
[`d98e146`](https://github.com/graphql-hive/console/commit/d98e1468a27fafde5b080c0b0ce02696ce4a589d)
Thanks [@kamilkisiela](https://github.com/kamilkisiela)! - Resolve the issue where the laboratory
mocked endpoint consistently returns: "Please publish your first schema to Hive."

- [#6267](https://github.com/graphql-hive/console/pull/6267)
[`817fed3`](https://github.com/graphql-hive/console/commit/817fed329bf10a1c31ab253c00bd4efa13e6699c)
Thanks [@dotansimha](https://github.com/dotansimha)! - bugfix: `scrollIntoView` is not a function
in lab page (fixed https://github.com/graphql-hive/console/issues/6263)

- [#6282](https://github.com/graphql-hive/console/pull/6282)
[`a7f9d50`](https://github.com/graphql-hive/console/commit/a7f9d50fb9026536311b4c973433d38e17ab0e73)
Thanks [@kamilkisiela](https://github.com/kamilkisiela)! - Fix editor state and operation handling
in Laboratory.

When opening a new tab or selecting a saved operation, the editor incorrectly populated the query,
defaulting to the active query. This made it impossible to view the selected operation.
Additionally, the submit button for saving an operation was always disabled, even when the form
was in a valid state.

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

## 0.36.4

### Patch Changes

- [#6118](https://github.com/graphql-hive/console/pull/6118)
[`039c66b`](https://github.com/graphql-hive/console/commit/039c66bd24d4339e56b4e1e1fc7f8fa68de7e954)
Thanks [@ardatan](https://github.com/ardatan)! - Remove internal `_testing_` option to replace the
underlying `fetch` implementation, and add `fetch` option to do the same as part of the public
API.
- Updated dependencies
[[`039c66b`](https://github.com/graphql-hive/console/commit/039c66bd24d4339e56b4e1e1fc7f8fa68de7e954)]:
- @graphql-hive/core@0.8.3

## 0.36.3

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

## 0.45.0

### Minor Changes

- [#6255](https://github.com/graphql-hive/console/pull/6255)
[`29c45df`](https://github.com/graphql-hive/console/commit/29c45dfbfc8ab87e9e84fec9c8def41ba01c3fe8)
Thanks [@jdolle](https://github.com/jdolle)! - Added subgraph type to schema:fetch cmd to print
subgraph details

### Patch Changes

- [#6252](https://github.com/graphql-hive/console/pull/6252)
[`5a6e565`](https://github.com/graphql-hive/console/commit/5a6e565be464983a5651a1349470415d3d93ba46)
Thanks [@jdolle](https://github.com/jdolle)! - Print a detailed error when a command is executed
without a hive access token

- Updated dependencies
[[`039c66b`](https://github.com/graphql-hive/console/commit/039c66bd24d4339e56b4e1e1fc7f8fa68de7e954)]:
- @graphql-hive/core@0.8.3

## 0.44.5

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

## 0.8.3

### Patch Changes

- [#6118](https://github.com/graphql-hive/console/pull/6118)
[`039c66b`](https://github.com/graphql-hive/console/commit/039c66bd24d4339e56b4e1e1fc7f8fa68de7e954)
Thanks [@ardatan](https://github.com/ardatan)! - Remove internal `_testing_` option to replace the
underlying `fetch` implementation, and add `fetch` option to do the same as part of the public
API.

## 0.8.2

### Patch 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.8.2",
"version": "0.8.3",
"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.12

### Patch Changes

- Updated dependencies
[[`039c66b`](https://github.com/graphql-hive/console/commit/039c66bd24d4339e56b4e1e1fc7f8fa68de7e954)]:
- @graphql-hive/core@0.8.3

## 0.33.11

### 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.11",
"version": "0.33.12",
"type": "module",
"description": "GraphQL Hive + GraphQL Envelop",
"repository": {
Expand Down
25 changes: 25 additions & 0 deletions packages/libraries/yoga/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,30 @@
# @graphql-hive/yoga

## 0.39.2

### Patch Changes

- [#6118](https://github.com/graphql-hive/console/pull/6118)
[`039c66b`](https://github.com/graphql-hive/console/commit/039c66bd24d4339e56b4e1e1fc7f8fa68de7e954)
Thanks [@ardatan](https://github.com/ardatan)! - Remove internal `_testing_` option to replace the
underlying `fetch` implementation, and add `fetch` option to do the same as part of the public
API.

- [#6118](https://github.com/graphql-hive/console/pull/6118)
[`039c66b`](https://github.com/graphql-hive/console/commit/039c66bd24d4339e56b4e1e1fc7f8fa68de7e954)
Thanks [@ardatan](https://github.com/ardatan)! - - Upgrade to `graphql-yoga` >= `5.10.4`
- Improve graceful process termination on Node.js by leveraging `graphql-yoga`'s
[dispose lifecycle hooks](https://the-guild.dev/graphql/yoga-server/docs/features/envelop-plugins#ondispose)
- Improve Cloudflare Worker runtime support by registering pending usage reporting requests using
the [`waitUntil` API](https://developers.cloudflare.com/workers/runtime-apis/context/#waituntil)
- Use the logger instance from the `graphql-yoga` instance, for a more unified logging experience
- Use the `fetch` API implementation on the `graphql-yoga` instance for HTTP calls
- Replace the internal \`tiny-lru\` dependency with `graphql-yoga`'s internal LRU cache
implementation
- Updated dependencies
[[`039c66b`](https://github.com/graphql-hive/console/commit/039c66bd24d4339e56b4e1e1fc7f8fa68de7e954)]:
- @graphql-hive/core@0.8.3

## 0.39.1

### 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.39.1",
"version": "0.39.2",
"type": "module",
"description": "GraphQL Hive + GraphQL Yoga",
"repository": {
Expand Down

0 comments on commit 008fdbb

Please sign in to comment.