Skip to content

Commit

Permalink
chore(release): update monorepo packages versions (#2336)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
theguild-bot and github-actions[bot] authored Dec 11, 2024
1 parent 8b7e657 commit f7be09b
Show file tree
Hide file tree
Showing 14 changed files with 83 additions and 61 deletions.
5 changes: 0 additions & 5 deletions .changeset/@envelop_generic-auth-2347-dependencies.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/@envelop_response-cache-2337-dependencies.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/@envelop_statsd-1709-dependencies.md

This file was deleted.

32 changes: 0 additions & 32 deletions .changeset/proud-tomatoes-film.md

This file was deleted.

9 changes: 0 additions & 9 deletions .changeset/wet-spoons-remember.md

This file was deleted.

43 changes: 43 additions & 0 deletions packages/plugins/generic-auth/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,48 @@
# @envelop/generic-auth

## 8.0.1

### Patch Changes

- [#2347](https://github.com/n1ru4l/envelop/pull/2347)
[`8b7e657`](https://github.com/n1ru4l/envelop/commit/8b7e657997cff286db145502d6d86cf7bc956cd0)
Thanks [@ardatan](https://github.com/ardatan)! - dependencies updates:

- Added dependency
[`@graphql-tools/executor@^1.3.6` ↗︎](https://www.npmjs.com/package/@graphql-tools/executor/v/1.3.6)
(to `dependencies`)

- [#2347](https://github.com/n1ru4l/envelop/pull/2347)
[`8b7e657`](https://github.com/n1ru4l/envelop/commit/8b7e657997cff286db145502d6d86cf7bc956cd0)
Thanks [@ardatan](https://github.com/ardatan)! - Handle operations with \`@include\` and \`@skip\`
correctly when they have default values in the operation definition

```ts
{
query: /* GraphQL */ `
query MyQuery($include: Boolean = true) {
field @include(if: $include)
}
`,
variables: {}
}
```

should be considered same as

```ts
{
query: /* GraphQL */ `
query MyQuery($include: Boolean!) {
field @include(if: $include)
}
`,
variables: {
include: true
}
}
```

## 8.0.0

### Major Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/plugins/generic-auth/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@envelop/generic-auth",
"version": "8.0.0",
"version": "8.0.1",
"type": "module",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/plugins/response-cache-cloudflare-kv/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
"typings": "dist/typings/index.d.ts",
"peerDependencies": {
"@cloudflare/workers-types": "^4.20231121.0",
"@envelop/response-cache": "^6.2.4",
"@envelop/response-cache": "^6.2.5",
"graphql": "^14.0.0 || ^15.0.0 || ^16.0.0"
},
"peerDependenciesMeta": {
Expand Down
11 changes: 11 additions & 0 deletions packages/plugins/response-cache/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# @envelop/response-cache

## 6.2.5

### Patch Changes

- [#2337](https://github.com/n1ru4l/envelop/pull/2337)
[`931a6da`](https://github.com/n1ru4l/envelop/commit/931a6dad4b179c77d061c6da90e858c49ab3092d)
Thanks [@renovate](https://github.com/apps/renovate)! - dependencies updates:
- Updated dependency
[`@whatwg-node/fetch@^0.10.0` ↗︎](https://www.npmjs.com/package/@whatwg-node/fetch/v/0.10.0)
(from `^0.9.0`, in `dependencies`)

## 6.2.4

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/plugins/response-cache/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@envelop/response-cache",
"version": "6.2.4",
"version": "6.2.5",
"type": "module",
"repository": {
"type": "git",
Expand Down
14 changes: 14 additions & 0 deletions packages/plugins/sentry/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# @envelop/sentry

## 11.0.0

### Major Changes

- [#2335](https://github.com/n1ru4l/envelop/pull/2335)
[`073774c`](https://github.com/n1ru4l/envelop/commit/073774ce7eb06b6b8f13d758046cfa8e5d4eb654)
Thanks [@EmrysMyrddin](https://github.com/EmrysMyrddin)! - Fix: Update code to better feat the new
Sentry v8 API

**Breaking Change:**

- `startTransaction` option has been removed.
- `forceTransaction` option has been added, disabled by default.

## 10.0.0

### Major Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/plugins/sentry/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@envelop/sentry",
"version": "10.0.0",
"version": "11.0.0",
"type": "module",
"repository": {
"type": "git",
Expand Down
10 changes: 10 additions & 0 deletions packages/plugins/statsd/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @envelop/statsd

## 5.0.1

### Patch Changes

- [#1709](https://github.com/n1ru4l/envelop/pull/1709)
[`e6aac57`](https://github.com/n1ru4l/envelop/commit/e6aac57c612607c5f14f9eb5cc1d6cf9bf4be2e1)
Thanks [@renovate](https://github.com/apps/renovate)! - dependencies updates:
- Updated dependency [`hot-shots@^10.0.0` ↗︎](https://www.npmjs.com/package/hot-shots/v/10.0.0)
(from `^8.0.0 || ^9.0.0`, in `peerDependencies`)

## 5.0.0

### Major Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/plugins/statsd/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@envelop/statsd",
"version": "5.0.0",
"version": "5.0.1",
"type": "module",
"repository": {
"type": "git",
Expand Down

0 comments on commit f7be09b

Please sign in to comment.