mirror of
https://github.com/graphql-hive/console
synced 2026-04-21 14:37:17 +00:00
Upcoming Release Changes (#7809)
This commit is contained in:
parent
08949d5167
commit
7557b5f3ce
7 changed files with 29 additions and 21 deletions
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
'hive': patch
|
||||
---
|
||||
|
||||
Propagate updated email address from OIDC provider. This fixes a bug where a user was locked out of the Hive account after the email of the user on the OIDC provider side changed.
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
---
|
||||
'hive': minor
|
||||
---
|
||||
|
||||
Allow organization owners register domain ownership.
|
||||
The registration will allow users with matching email domains bypassing mandatory email verification.
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
'hive': patch
|
||||
---
|
||||
|
||||
Explorer page unions now link to the contained types
|
||||
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -152,3 +152,4 @@ Cargo.lock
|
|||
Cargo.lock
|
||||
Cargo.lock
|
||||
Cargo.lock
|
||||
Cargo.lock
|
||||
|
|
|
|||
|
|
@ -1,5 +1,28 @@
|
|||
# hive
|
||||
|
||||
## 9.7.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- [#7745](https://github.com/graphql-hive/console/pull/7745)
|
||||
[`33bff41`](https://github.com/graphql-hive/console/commit/33bff4134240964bbf3bd97b878572202c13c256)
|
||||
Thanks [@n1ru4l](https://github.com/n1ru4l)! - Allow organization owners register domain
|
||||
ownership. The registration will allow users with matching email domains bypassing mandatory email
|
||||
verification.
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- [#7810](https://github.com/graphql-hive/console/pull/7810)
|
||||
[`7aac422`](https://github.com/graphql-hive/console/commit/7aac422acc3ef13ec1c199259f5c9c4522481c6f)
|
||||
Thanks [@n1ru4l](https://github.com/n1ru4l)! - Propagate updated email address from OIDC provider.
|
||||
This fixes a bug where a user was locked out of the Hive account after the email of the user on
|
||||
the OIDC provider side changed.
|
||||
|
||||
- [#7812](https://github.com/graphql-hive/console/pull/7812)
|
||||
[`2c55d5b`](https://github.com/graphql-hive/console/commit/2c55d5bd1188bc003ccf537095b9813127928693)
|
||||
Thanks [@jdolle](https://github.com/jdolle)! - Explorer page unions now link to the contained
|
||||
types
|
||||
|
||||
## 9.6.1
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "hive",
|
||||
"version": "9.6.1",
|
||||
"version": "9.7.0",
|
||||
"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.6.1/docker/docker-compose.community.yml
|
||||
curl -O https://raw.githubusercontent.com/graphql-hive/console/hive@9.7.0/docker/docker-compose.community.yml
|
||||
```
|
||||
|
||||
</Tabs.Tab>
|
||||
|
|
@ -160,7 +160,7 @@ curl -O https://raw.githubusercontent.com/graphql-hive/console/hive@9.6.1/docker
|
|||
<Tabs.Tab>
|
||||
|
||||
```sh
|
||||
wget https://raw.githubusercontent.com/graphql-hive/console/hive@9.6.1/docker/docker-compose.community.yml
|
||||
wget https://raw.githubusercontent.com/graphql-hive/console/hive@9.7.0/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.6.1"
|
||||
export DOCKER_TAG=":9.7.0"
|
||||
```
|
||||
|
||||
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.6.1" # Pin this to an exact version
|
||||
export DOCKER_TAG=":9.7.0" # 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