Skip to content

Commit

Permalink
chore(release): update monorepo packages versions
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Mar 7, 2025
1 parent e10de03 commit 5e9c080
Show file tree
Hide file tree
Showing 27 changed files with 173 additions and 123 deletions.
5 changes: 0 additions & 5 deletions .changeset/cyan-ears-shout.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/eleven-brooms-happen.md

This file was deleted.

19 changes: 0 additions & 19 deletions .changeset/five-stingrays-search.md

This file was deleted.

19 changes: 0 additions & 19 deletions .changeset/good-rocks-appear.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/honest-apples-tap.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/light-llamas-divide.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/red-needles-know.md

This file was deleted.

19 changes: 0 additions & 19 deletions .changeset/rotten-hairs-pay.md

This file was deleted.

19 changes: 0 additions & 19 deletions .changeset/tame-paws-float.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/wet-panthers-notice.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/wicked-plants-float.md

This file was deleted.

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

## 5.1.3

### Patch Changes

- [#6553](https://github.com/graphql-hive/console/pull/6553)
[`f0fe03c`](https://github.com/graphql-hive/console/commit/f0fe03c9464815b5f11b8e4715f0182959e8d363)
Thanks [@kamilkisiela](https://github.com/kamilkisiela)! - Standardize the design and content of
all email templates for consistency.

- [#6571](https://github.com/graphql-hive/console/pull/6571)
[`bf06e94`](https://github.com/graphql-hive/console/commit/bf06e94f5f115770f229b0b6e9961a44f057fa4d)
Thanks [@kamilkisiela](https://github.com/kamilkisiela)! - Adds ability to all services to write a
heap dump to a disk when SIGUSR1 signal is received

- [#6582](https://github.com/graphql-hive/console/pull/6582)
[`bb2f2aa`](https://github.com/graphql-hive/console/commit/bb2f2aa30f6cd4a5427e7d977c816d7e78499ea2)
Thanks [@jdolle](https://github.com/jdolle)! - Adds optional url argument to schema checks

- [#6586](https://github.com/graphql-hive/console/pull/6586)
[`e10de03`](https://github.com/graphql-hive/console/commit/e10de0370cd713db1815eee9cabb52725cf5c3b9)
Thanks [@kamilkisiela](https://github.com/kamilkisiela)! - Corrected an issue where fields from
type extensions were not marked as unused when appropriate

- [#6542](https://github.com/graphql-hive/console/pull/6542)
[`719e3e6`](https://github.com/graphql-hive/console/commit/719e3e68643c673c5539cc18b68772661e52a857)
Thanks [@kamilkisiela](https://github.com/kamilkisiela)! - Consolidates email templating logic
into the `emails` service.

## 5.1.2

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

## 0.38.0

### Minor Changes

- [#6574](https://github.com/graphql-hive/console/pull/6574)
[`494697e`](https://github.com/graphql-hive/console/commit/494697e20f67ef877cd5dd63ccd29984c719ab44)
Thanks [@n1ru4l](https://github.com/n1ru4l)! - Add support for providing a target for usage
reporting with organization access tokens. This can either be a slug following the format
`$organizationSlug/$projectSlug/$targetSlug` (e.g `the-guild/graphql-hive/staging`) or an UUID
(e.g. `a0f4c605-6541-4350-8cfe-b31f21a4bf80`)

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

const hivePlugin = useHive({
enabled: true,
token: 'ORGANIZATION_ACCESS_TOKEN',
usage: {
target: 'my-org/my-project/my-target'
}
})
```

### Patch Changes

- [#6539](https://github.com/graphql-hive/console/pull/6539)
[`a9fc409`](https://github.com/graphql-hive/console/commit/a9fc40920b50d13b8725bb4b424fc3c24d76b7af)
Thanks [@tmair](https://github.com/tmair)! - Prevent GraphQL document with selection set not
satisfiable by the server to cause unhandled rejections for Apollo Server v3 (see
https://github.com/graphql-hive/console/pull/4958 and
https://github.com/graphql-hive/console/issues/4935).
- Updated dependencies
[[`494697e`](https://github.com/graphql-hive/console/commit/494697e20f67ef877cd5dd63ccd29984c719ab44)]:
- @graphql-hive/core@0.10.0

## 0.37.1

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

## 0.49.0

### Minor Changes

- [#6573](https://github.com/graphql-hive/console/pull/6573)
[`3bf0598`](https://github.com/graphql-hive/console/commit/3bf05980759d90a9ab80aeb05a8fb0646af1b451)
Thanks [@n1ru4l](https://github.com/n1ru4l)! - Better error handling for missing `--target` option
when required.

### Patch Changes

- [#6582](https://github.com/graphql-hive/console/pull/6582)
[`bb2f2aa`](https://github.com/graphql-hive/console/commit/bb2f2aa30f6cd4a5427e7d977c816d7e78499ea2)
Thanks [@jdolle](https://github.com/jdolle)! - Adds optional url argument to schema checks

- Updated dependencies
[[`494697e`](https://github.com/graphql-hive/console/commit/494697e20f67ef877cd5dd63ccd29984c719ab44)]:
- @graphql-hive/core@0.10.0

## 0.48.3

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

## 0.10.0

### Minor Changes

- [#6574](https://github.com/graphql-hive/console/pull/6574)
[`494697e`](https://github.com/graphql-hive/console/commit/494697e20f67ef877cd5dd63ccd29984c719ab44)
Thanks [@n1ru4l](https://github.com/n1ru4l)! - Add support for providing a target for usage
reporting with organization access tokens. This can either be a slug following the format
`$organizationSlug/$projectSlug/$targetSlug` (e.g `the-guild/graphql-hive/staging`) or an UUID
(e.g. `a0f4c605-6541-4350-8cfe-b31f21a4bf80`)

```ts
import { createHive } from '@graphql-hive/core'

const hive = createHive({
enabled: true,
token: 'ORGANIZATION_ACCESS_TOKEN',
usage: {
target: 'my-org/my-project/my-target'
}
})
```

## 0.9.1

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

## 0.35.0

### Minor Changes

- [#6574](https://github.com/graphql-hive/console/pull/6574)
[`494697e`](https://github.com/graphql-hive/console/commit/494697e20f67ef877cd5dd63ccd29984c719ab44)
Thanks [@n1ru4l](https://github.com/n1ru4l)! - Add support for providing a target for usage
reporting with organization access tokens. This can either be a slug following the format
`$organizationSlug/$projectSlug/$targetSlug` (e.g `the-guild/graphql-hive/staging`) or an UUID
(e.g. `a0f4c605-6541-4350-8cfe-b31f21a4bf80`)

```ts
import { useHive } from '@graphql-hive/envelop'

const hivePlugin = useHive({
enabled: true,
token: 'ORGANIZATION_ACCESS_TOKEN',
usage: {
target: 'my-org/my-project/my-target'
}
})
```

### Patch Changes

- Updated dependencies
[[`494697e`](https://github.com/graphql-hive/console/commit/494697e20f67ef877cd5dd63ccd29984c719ab44)]:
- @graphql-hive/core@0.10.0

## 0.34.1

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

## 0.41.0

### Minor Changes

- [#6574](https://github.com/graphql-hive/console/pull/6574)
[`494697e`](https://github.com/graphql-hive/console/commit/494697e20f67ef877cd5dd63ccd29984c719ab44)
Thanks [@n1ru4l](https://github.com/n1ru4l)! - Add support for providing a target for usage
reporting with organization access tokens. This can either be a slug following the format
`$organizationSlug/$projectSlug/$targetSlug` (e.g `the-guild/graphql-hive/staging`) or an UUID
(e.g. `a0f4c605-6541-4350-8cfe-b31f21a4bf80`)

```ts
import { useHive } from '@graphql-hive/yoga'

const hivePlugin = useHive({
enabled: true,
token: 'ORGANIZATION_ACCESS_TOKEN',
usage: {
target: 'my-org/my-project/my-target'
}
})
```

### Patch Changes

- Updated dependencies
[[`494697e`](https://github.com/graphql-hive/console/commit/494697e20f67ef877cd5dd63ccd29984c719ab44)]:
- @graphql-hive/core@0.10.0

## 0.40.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.40.1",
"version": "0.41.0",
"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.40.1';
export const version = '0.41.0';

0 comments on commit 5e9c080

Please sign in to comment.