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
5 changes: 0 additions & 5 deletions .changeset/discord-webhook-alerts.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/puny-roses-shine.md

This file was deleted.

9 changes: 0 additions & 9 deletions .changeset/smtp-ignore-tls.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/violet-kings-sell.md

This file was deleted.

13 changes: 0 additions & 13 deletions .changeset/workflows-encryption-secret.md

This file was deleted.

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

## 11.10.0

### Minor Changes

- [#8184](https://github.com/graphql-hive/console/pull/8184)
[`4540184`](https://github.com/graphql-hive/console/commit/4540184353ce927d41296f75113a7bce334b28bb)
Thanks [@ben-m-klein](https://github.com/ben-m-klein)! - Add Discord as a first-class alert
channel with Discord webhook formatting for alert notifications.

### Patch Changes

- [#8301](https://github.com/graphql-hive/console/pull/8301)
[`df4ba0c`](https://github.com/graphql-hive/console/commit/df4ba0c2896b3d6683493dd4e225f6b5dae4e195)
Thanks [@overpod](https://github.com/overpod)! - Add `EMAIL_PROVIDER_SMTP_IGNORE_TLS` environment
variable for the `smtp` email provider.

Set it to `1` to never use STARTTLS, even when the SMTP server advertises support for it. This
allows sending emails through servers without working TLS support. The variable is opt-in and
defaults to `0`, so existing deployments keep their current behaviour.

- [#8296](https://github.com/graphql-hive/console/pull/8296)
[`e239df7`](https://github.com/graphql-hive/console/commit/e239df71d4981f4a4acda865dd19a79eaf91bbe4)
Thanks [@n1ru4l](https://github.com/n1ru4l)! - cleanup old unused database tables

- [#8305](https://github.com/graphql-hive/console/pull/8305)
[`dee12d9`](https://github.com/graphql-hive/console/commit/dee12d9aa030ac3da5d6c87ea8d85bfc7276c3ab)
Thanks [@jonathanawesome](https://github.com/jonathanawesome)! - Add `ENCRYPTION_SECRET`
environment variable to the `workflows` service.

The service needs it to decrypt the Slack token stored by the API service when it dispatches
metric-alert notifications. Set it to the same value as `ENCRYPTION_SECRET` on the server and
schema services, otherwise the token cannot be decrypted and Slack notifications fail.

The variable is optional, so existing deployments keep booting after an upgrade. When it is not
set the service starts normally and every other task keeps running, but Slack metric-alert
notifications are skipped.

## 11.9.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": "11.9.0",
"version": "11.10.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.48.3

### Patch Changes

- Updated dependencies
[[`3dbda7d`](https://github.com/graphql-hive/console/commit/3dbda7dbe895173578cc4c452a85ef6c2ce07383)]:
- @graphql-hive/core@0.22.1

## 0.48.2

### 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.48.2",
"version": "0.48.3",
"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.48.2';
export const version = '0.48.3';
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.61.3

### Patch Changes

- Updated dependencies
[[`3dbda7d`](https://github.com/graphql-hive/console/commit/3dbda7dbe895173578cc4c452a85ef6c2ce07383)]:
- @graphql-hive/core@0.22.1

## 0.61.2

### Patch Changes
Expand Down
26 changes: 13 additions & 13 deletions packages/libraries/cli/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ DESCRIPTION
```

_See code:
[src/commands/app/create.ts](https://github.com/graphql-hive/console/blob/v0.61.2/src/commands/app/create.ts)_
[src/commands/app/create.ts](https://github.com/graphql-hive/console/blob/v0.61.3/src/commands/app/create.ts)_

## `hive app:publish`

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

_See code:
[src/commands/app/publish.ts](https://github.com/graphql-hive/console/blob/v0.61.2/src/commands/app/publish.ts)_
[src/commands/app/publish.ts](https://github.com/graphql-hive/console/blob/v0.61.3/src/commands/app/publish.ts)_

## `hive app:retire`

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

_See code:
[src/commands/app/retire.ts](https://github.com/graphql-hive/console/blob/v0.61.2/src/commands/app/retire.ts)_
[src/commands/app/retire.ts](https://github.com/graphql-hive/console/blob/v0.61.3/src/commands/app/retire.ts)_

## `hive artifact:fetch`

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

_See code:
[src/commands/artifact/fetch.ts](https://github.com/graphql-hive/console/blob/v0.61.2/src/commands/artifact/fetch.ts)_
[src/commands/artifact/fetch.ts](https://github.com/graphql-hive/console/blob/v0.61.3/src/commands/artifact/fetch.ts)_

## `hive dev`

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

_See code:
[src/commands/dev.ts](https://github.com/graphql-hive/console/blob/v0.61.2/src/commands/dev.ts)_
[src/commands/dev.ts](https://github.com/graphql-hive/console/blob/v0.61.3/src/commands/dev.ts)_

## `hive help [COMMAND]`

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

_See code:
[src/commands/introspect.ts](https://github.com/graphql-hive/console/blob/v0.61.2/src/commands/introspect.ts)_
[src/commands/introspect.ts](https://github.com/graphql-hive/console/blob/v0.61.3/src/commands/introspect.ts)_

## `hive operations:check FILE`

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

_See code:
[src/commands/operations/check.ts](https://github.com/graphql-hive/console/blob/v0.61.2/src/commands/operations/check.ts)_
[src/commands/operations/check.ts](https://github.com/graphql-hive/console/blob/v0.61.3/src/commands/operations/check.ts)_

## `hive schema:check FILE`

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

_See code:
[src/commands/schema/check.ts](https://github.com/graphql-hive/console/blob/v0.61.2/src/commands/schema/check.ts)_
[src/commands/schema/check.ts](https://github.com/graphql-hive/console/blob/v0.61.3/src/commands/schema/check.ts)_

## `hive schema:delete SERVICE`

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

_See code:
[src/commands/schema/delete.ts](https://github.com/graphql-hive/console/blob/v0.61.2/src/commands/schema/delete.ts)_
[src/commands/schema/delete.ts](https://github.com/graphql-hive/console/blob/v0.61.3/src/commands/schema/delete.ts)_

## `hive schema:fetch [COMMIT]`

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

_See code:
[src/commands/schema/fetch.ts](https://github.com/graphql-hive/console/blob/v0.61.2/src/commands/schema/fetch.ts)_
[src/commands/schema/fetch.ts](https://github.com/graphql-hive/console/blob/v0.61.3/src/commands/schema/fetch.ts)_

## `hive schema:promote`

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

_See code:
[src/commands/schema/promote.ts](https://github.com/graphql-hive/console/blob/v0.61.2/src/commands/schema/promote.ts)_
[src/commands/schema/promote.ts](https://github.com/graphql-hive/console/blob/v0.61.3/src/commands/schema/promote.ts)_

## `hive schema:publish FILE`

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

_See code:
[src/commands/schema/publish.ts](https://github.com/graphql-hive/console/blob/v0.61.2/src/commands/schema/publish.ts)_
[src/commands/schema/publish.ts](https://github.com/graphql-hive/console/blob/v0.61.3/src/commands/schema/publish.ts)_

## `hive update [CHANNEL]`

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

_See code:
[src/commands/whoami.ts](https://github.com/graphql-hive/console/blob/v0.61.2/src/commands/whoami.ts)_
[src/commands/whoami.ts](https://github.com/graphql-hive/console/blob/v0.61.3/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.61.2",
"version": "0.61.3",
"description": "A CLI util to manage and control your GraphQL Hive",
"repository": {
"type": "git",
Expand Down
11 changes: 11 additions & 0 deletions packages/libraries/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# @graphql-hive/core

## 0.22.1

### Patch Changes

- [#8308](https://github.com/graphql-hive/console/pull/8308)
[`3dbda7d`](https://github.com/graphql-hive/console/commit/3dbda7dbe895173578cc4c452a85ef6c2ce07383)
Thanks [@jdolle](https://github.com/jdolle)! - Fix usage collector error catching.

When async event collection fails, the error is now caught internally and logged rather than
leaking an unhandled promise rejection that would crash the node application.

## 0.22.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.22.0",
"version": "0.22.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.22.0';
export const version = '0.22.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.40.8

### Patch Changes

- Updated dependencies
[[`3dbda7d`](https://github.com/graphql-hive/console/commit/3dbda7dbe895173578cc4c452a85ef6c2ce07383)]:
- @graphql-hive/core@0.22.1

## 0.40.7

### 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.40.7",
"version": "0.40.8",
"type": "module",
"description": "Hive Console + 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.40.7';
export const version = '0.40.8';
8 changes: 8 additions & 0 deletions packages/libraries/gateway-plugin-console-sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @graphql-hive/gateway-plugin-console-sdk

## 0.1.1

### Patch Changes

- Updated dependencies
[[`3dbda7d`](https://github.com/graphql-hive/console/commit/3dbda7dbe895173578cc4c452a85ef6c2ce07383)]:
- @graphql-hive/core@0.22.1

## 0.1.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/libraries/gateway-plugin-console-sdk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@graphql-hive/gateway-plugin-console-sdk",
"version": "0.1.0",
"version": "0.1.1",
"type": "module",
"description": "Hive Console + Hive Gateway",
"repository": {
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const version = '0.1.0';
export const version = '0.1.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.49.1

### Patch Changes

- Updated dependencies
[[`3dbda7d`](https://github.com/graphql-hive/console/commit/3dbda7dbe895173578cc4c452a85ef6c2ce07383)]:
- @graphql-hive/core@0.22.1

## 0.49.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.49.0",
"version": "0.49.1",
"type": "module",
"description": "Hive Console + 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.49.0';
export const version = '0.49.1';
Loading