mirror of
https://github.com/graphql-hive/console
synced 2026-04-21 14:37:17 +00:00
Upcoming Release Changes (#7830)
This commit is contained in:
parent
5726de69f3
commit
a4640db48e
5 changed files with 15 additions and 10 deletions
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
'hive': patch
|
||||
---
|
||||
|
||||
Adjust app deployment schema check to perform database queries in parallel
|
||||
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -153,3 +153,4 @@ Cargo.lock
|
|||
Cargo.lock
|
||||
Cargo.lock
|
||||
Cargo.lock
|
||||
Cargo.lock
|
||||
|
|
|
|||
|
|
@ -1,5 +1,14 @@
|
|||
# hive
|
||||
|
||||
## 9.7.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- [#7828](https://github.com/graphql-hive/console/pull/7828)
|
||||
[`1b31761`](https://github.com/graphql-hive/console/commit/1b31761cc3f94693ad74498f70cf89faff373b2f)
|
||||
Thanks [@jdolle](https://github.com/jdolle)! - Adjust app deployment schema check to perform
|
||||
database queries in parallel
|
||||
|
||||
## 9.7.0
|
||||
|
||||
### Minor Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "hive",
|
||||
"version": "9.7.0",
|
||||
"version": "9.7.1",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"generate": "tsx generate.ts",
|
||||
|
|
|
|||
|
|
@ -152,7 +152,7 @@ using the link below
|
|||
<Tabs.Tab>
|
||||
|
||||
```sh
|
||||
curl -O https://raw.githubusercontent.com/graphql-hive/console/hive@9.7.0/docker/docker-compose.community.yml
|
||||
curl -O https://raw.githubusercontent.com/graphql-hive/console/hive@9.7.1/docker/docker-compose.community.yml
|
||||
```
|
||||
|
||||
</Tabs.Tab>
|
||||
|
|
@ -160,7 +160,7 @@ curl -O https://raw.githubusercontent.com/graphql-hive/console/hive@9.7.0/docker
|
|||
<Tabs.Tab>
|
||||
|
||||
```sh
|
||||
wget https://raw.githubusercontent.com/graphql-hive/console/hive@9.7.0/docker/docker-compose.community.yml
|
||||
wget https://raw.githubusercontent.com/graphql-hive/console/hive@9.7.1/docker/docker-compose.community.yml
|
||||
```
|
||||
|
||||
</Tabs.Tab>
|
||||
|
|
@ -179,7 +179,7 @@ We recommend sticking to a specific version to avoid breaking changes. The `late
|
|||
corresponds to the latest stable release.
|
||||
|
||||
```sh
|
||||
export DOCKER_TAG=":9.7.0"
|
||||
export DOCKER_TAG=":9.7.1"
|
||||
```
|
||||
|
||||
After picking a version set the `DOCKER_TAG` environment variable to that value.
|
||||
|
|
@ -188,7 +188,7 @@ After picking a version set the `DOCKER_TAG` environment variable to that value.
|
|||
|
||||
```bash
|
||||
export DOCKER_REGISTRY="ghcr.io/graphql-hive/"
|
||||
export DOCKER_TAG=":9.7.0" # Pin this to an exact version
|
||||
export DOCKER_TAG=":9.7.1" # Pin this to an exact version
|
||||
export HIVE_ENCRYPTION_SECRET=$(openssl rand -hex 16)
|
||||
export HIVE_APP_BASE_URL="http://localhost:8080"
|
||||
export HIVE_EMAIL_FROM="no-reply@graphql-hive.com"
|
||||
|
|
|
|||
Loading…
Reference in a new issue