Skip to content
Open
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
8 changes: 0 additions & 8 deletions .changeset/every-chefs-switch.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/great-boxes-buy.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/witty-jeans-hope.md

This file was deleted.

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

## 8.9.0

### Minor Changes

- [#7281](https://github.com/graphql-hive/console/pull/7281)
[`791c025`](https://github.com/graphql-hive/console/commit/791c0252a0933d0f5c933eef9053227d7f00c87e)
Thanks [@n1ru4l](https://github.com/n1ru4l)! - Introduce rate limiting for email sign up, sign in
and password rest. The IP value to use for the rate limiting can be specified via the
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

There's a typo in the changelog. It should be password reset instead of password rest to accurately describe the feature.

Suggested change
and password rest. The IP value to use for the rate limiting can be specified via the
and password reset. The IP value to use for the rate limiting can be specified via the

`SUPERTOKENS_RATE_LIMIT_IP_HEADER_NAME` environment variable. By default the `CF-Connecting-IP`
header is being used.

### Patch Changes

- [#7295](https://github.com/graphql-hive/console/pull/7295)
[`76c700f`](https://github.com/graphql-hive/console/commit/76c700f322d8ec81a4fcea0333283427633f8412)
Thanks [@jonathanawesome](https://github.com/jonathanawesome)! - Fixes a UI bug in
MembershipInvitation modal when there are many projects/targets/services.

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

## 0.42.1

### Patch Changes

- Updated dependencies
[[`64c8368`](https://github.com/graphql-hive/console/commit/64c8368c4b94b4ad2178d341442f0a0ffb4013f1)]:
- @graphql-hive/core@0.15.1

## 0.42.0

### Minor 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.0",
"version": "0.42.1",
"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.0';
export const version = '0.42.1';
8 changes: 8 additions & 0 deletions packages/libraries/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @graphql-hive/cli

## 0.53.5

### Patch Changes

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

## 0.53.4

### Patch 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.53.4/src/commands/app/create.ts)_
[src/commands/app/create.ts](https://github.com/graphql-hive/platform/blob/v0.53.5/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.53.4/src/commands/app/publish.ts)_
[src/commands/app/publish.ts](https://github.com/graphql-hive/platform/blob/v0.53.5/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.53.4/src/commands/app/retire.ts)_
[src/commands/app/retire.ts](https://github.com/graphql-hive/platform/blob/v0.53.5/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.53.4/src/commands/artifact/fetch.ts)_
[src/commands/artifact/fetch.ts](https://github.com/graphql-hive/platform/blob/v0.53.5/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.53.4/src/commands/dev.ts)_
[src/commands/dev.ts](https://github.com/graphql-hive/platform/blob/v0.53.5/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.53.4/src/commands/introspect.ts)_
[src/commands/introspect.ts](https://github.com/graphql-hive/platform/blob/v0.53.5/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.53.4/src/commands/operations/check.ts)_
[src/commands/operations/check.ts](https://github.com/graphql-hive/platform/blob/v0.53.5/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.53.4/src/commands/schema/check.ts)_
[src/commands/schema/check.ts](https://github.com/graphql-hive/platform/blob/v0.53.5/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.53.4/src/commands/schema/delete.ts)_
[src/commands/schema/delete.ts](https://github.com/graphql-hive/platform/blob/v0.53.5/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.53.4/src/commands/schema/fetch.ts)_
[src/commands/schema/fetch.ts](https://github.com/graphql-hive/platform/blob/v0.53.5/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.53.4/src/commands/schema/publish.ts)_
[src/commands/schema/publish.ts](https://github.com/graphql-hive/platform/blob/v0.53.5/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.53.4/src/commands/whoami.ts)_
[src/commands/whoami.ts](https://github.com/graphql-hive/platform/blob/v0.53.5/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.53.4",
"version": "0.53.5",
"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.15.1

### Patch Changes

- [#7297](https://github.com/graphql-hive/console/pull/7297)
[`64c8368`](https://github.com/graphql-hive/console/commit/64c8368c4b94b4ad2178d341442f0a0ffb4013f1)
Thanks [@ardatan](https://github.com/ardatan)! - Shutdown Circuit Breaker properly while disposing
Hive Client

## 0.15.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.15.0",
"version": "0.15.1",
"type": "module",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/libraries/core/src/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const version = '0.15.0';
export const version = '0.15.1';
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.38.1

### Patch Changes

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

## 0.38.0

### Minor 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.38.0",
"version": "0.38.1",
"type": "module",
"description": "GraphQL Hive + GraphQL Envelop",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion packages/libraries/envelop/src/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const version = '0.38.0';
export const version = '0.38.1';
8 changes: 8 additions & 0 deletions packages/libraries/yoga/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @graphql-hive/yoga

## 0.43.1

### Patch Changes

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

## 0.43.0

### Minor 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.43.0",
"version": "0.43.1",
"type": "module",
"description": "GraphQL Hive + GraphQL Yoga",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion packages/libraries/yoga/src/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const version = '0.43.0';
export const version = '0.43.1';
Loading