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 Jan 29, 2025
1 parent b7e4052 commit c8b8bfe
Show file tree
Hide file tree
Showing 13 changed files with 87 additions and 64 deletions.
5 changes: 0 additions & 5 deletions .changeset/dry-news-join.md

This file was deleted.

18 changes: 0 additions & 18 deletions .changeset/empty-rockets-smell.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/ka-f-ka.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/nine-meals-raise.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/rare-paws-boil.md

This file was deleted.

16 changes: 0 additions & 16 deletions .changeset/tall-islands-occur.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/three-random-words.md

This file was deleted.

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

## 5.0.0

### Major Changes

- [#6231](https://github.com/graphql-hive/console/pull/6231)
[`b7e4052`](https://github.com/graphql-hive/console/commit/b7e4052ecfd8f70fefe39c27886619a24faa7526)
Thanks [@n1ru4l](https://github.com/n1ru4l)! - Introduce new permission system for organization
member roles.

The existing scopes assigned to organization member users are now replaced with permissions. Using
the permissions allows more granular access control to features in Hive.

This introduces the following breaking changes:

- Organization members with the default `Viewer` role, will experience downgraded permissions.
They will no longer be able to create targets or projects.
- Organization member roles permissions for inviting, removing or assigning roles have been
revoked. A organization admin will have to re-apply the permissions to the desired member roles.
- Organization members with permissions for managing invites, removing members, assigning roles or
modifying roles are no longer restrained in granting more rights to other users. Please be aware
when granting these permissions to a user role. We recommend only assigning these to member
roles that are considered "Admin" user roles.

A future update will introduce resource based access control (based on project, target, service or
app deployments) for organization members.

### Minor Changes

- [#6378](https://github.com/graphql-hive/console/pull/6378)
[`f14daa8`](https://github.com/graphql-hive/console/commit/f14daa89760149d6b1eb45d5351d73c4376b7418)
Thanks [@jasonkuhrt](https://github.com/jasonkuhrt)! - You can now set HTTP headers in your
[Laboratory Preflight Script](https://the-guild.dev/graphql/hive/docs/dashboard/laboratory/preflight-scripts).
Every time you run a request from Laboratory, your preflight headers, if any, will be merged into
the request before it is sent.

You achieve this by interacting with the
[`Headers`](https://developer.mozilla.org/docs/web/api/headers) instance newly available at
`lab.request.headers`. For example, this script would would add a `foo` header with the value
`bar` to every Laboratory request.

```ts
lab.request.headers.set('foo', 'bar')
```

A few notes about how headers are merged:

1. Unlike static headers, preflight headers do not receive environment variable substitutions on
their values.
2. Preflight headers take precedence, overwriting any same-named headers already in the Laboratory
request.

Documentation for this new feature is available at
https://the-guild.dev/graphql/hive/docs/dashboard/laboratory/preflight-scripts#http-headers.

- [#6123](https://github.com/graphql-hive/console/pull/6123)
[`abfd1b1`](https://github.com/graphql-hive/console/commit/abfd1b1ea9b6850683f31c152516d9e0d97d94aa)
Thanks [@Intellicode](https://github.com/Intellicode)! - encode postgres variables and introduce
optional password

- [#6412](https://github.com/graphql-hive/console/pull/6412)
[`f352bba`](https://github.com/graphql-hive/console/commit/f352bbac977902120527fbea2afb0b0b7dd253fb)
Thanks [@Intellicode](https://github.com/Intellicode)! - Added a new environment variable
`PROMETHEUS_METRICS_PORT` to control the promethus port of the policy service. The default value
is `10254` (no action needed).

### Patch Changes

- [#6398](https://github.com/graphql-hive/console/pull/6398)
[`0e4be14`](https://github.com/graphql-hive/console/commit/0e4be14256937f492efcb4a7dc97b59918274a2a)
Thanks [@kamilkisiela](https://github.com/kamilkisiela)! - Remove the db leftovers related to
activities (no longer a thing)

- [#6374](https://github.com/graphql-hive/console/pull/6374)
[`393ece7`](https://github.com/graphql-hive/console/commit/393ece7eab93ed0b7873e4428f78a5c27cf764fa)
Thanks [@kamilkisiela](https://github.com/kamilkisiela)! - Adjust the Kafka message size
estimation only when Kafka gives back `MESSAGE_TOO_LARGE` error

- [#6358](https://github.com/graphql-hive/console/pull/6358)
[`ab06518`](https://github.com/graphql-hive/console/commit/ab065182d89e6d7e4c90469d0bcaadacfa4c3b1e)
Thanks [@jdolle](https://github.com/jdolle)! - Use sum instead of max of top request counts for
breaking changes calculation

## 4.1.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": "4.1.0",
"version": "5.0.0",
"private": true,
"scripts": {
"generate": "tsx generate.ts",
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.36.4';
export const version = '0.36.5';
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.8.3';
export const version = '0.8.4';
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.33.12';
export const version = '0.33.13';
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.39.2';
export const version = '0.39.3';

0 comments on commit c8b8bfe

Please sign in to comment.