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 Feb 4, 2025
1 parent 0504530 commit 7b8a43c
Show file tree
Hide file tree
Showing 7 changed files with 53 additions and 43 deletions.
6 changes: 0 additions & 6 deletions .changeset/hungry-files-sneeze.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/tall-lies-raise.md

This file was deleted.

30 changes: 0 additions & 30 deletions .changeset/wet-eggs-rule.md

This file was deleted.

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

## 5.1.0

### Minor Changes

- [#6449](https://github.com/graphql-hive/console/pull/6449)
[`0504530`](https://github.com/graphql-hive/console/commit/05045306b789e97ec39cbd2c8ee2b4f1b721dc9e)
Thanks [@n1ru4l](https://github.com/n1ru4l)! - Modify GraphQL fields used by CLI to accept an
optional specified target that is used for identifying the affected target instead of resolving
the target from the access token.

### Patch Changes

- [#6455](https://github.com/graphql-hive/console/pull/6455)
[`6924a1a`](https://github.com/graphql-hive/console/commit/6924a1abf91c1c663d752949031e0a5c4078392a)
Thanks [@jasonkuhrt](https://github.com/jasonkuhrt)! - A minor defect in Laboratory has been fixed
that previously caused the application to crash when local storage was in a particular state.

## 5.0.0

### Major 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.0.0",
"version": "5.1.0",
"private": true,
"scripts": {
"generate": "tsx generate.ts",
Expand Down
34 changes: 34 additions & 0 deletions packages/libraries/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,39 @@
# @graphql-hive/cli

## 0.47.0

### Minor Changes

- [#6449](https://github.com/graphql-hive/console/pull/6449)
[`0504530`](https://github.com/graphql-hive/console/commit/05045306b789e97ec39cbd2c8ee2b4f1b721dc9e)
Thanks [@n1ru4l](https://github.com/n1ru4l)! - Add `--target` flag for commands `app:create`,
`app:publish`, `operations:check`, `schema:check`, `schema:delete`, `schema:fetch`,
`schema:publish` and `dev`.

The `--target` flag can be used to specify the target on which the operation should be performed.
Either a slug or ID of the target can be provided.

A provided slug must follow the format `$organizationSlug/$projectSlug/$targetSlug` (e.g.
`the-guild/graphql-hive/staging`).

**Example using target slug**

```bash
hive schema:publish --target the-guild/graphql-hive/production ./my-schema.graphql
```

A target id, must be a valid target UUID.

**Example using target id**

```bash
hive schema:publish --target a0f4c605-6541-4350-8cfe-b31f21a4bf80 ./my-schema.graphql
```

**Note:** We encourage starting to use the `--target` flag today. In the future the flag will
become mandatory as we are moving to a more flexible approach of access tokens that can be granted
access to multiple targets.

## 0.46.1

### 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.46.1",
"version": "0.47.0",
"description": "A CLI util to manage and control your GraphQL Hive",
"repository": {
"type": "git",
Expand Down

0 comments on commit 7b8a43c

Please sign in to comment.