Skip to content

Commit

Permalink
chore(release): update monorepo packages versions (#3678)
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 Jan 20, 2025
1 parent c9fdec9 commit 4afbeb1
Show file tree
Hide file tree
Showing 12 changed files with 67 additions and 45 deletions.
5 changes: 0 additions & 5 deletions .changeset/@graphql-yoga_nestjs-3676-dependencies.md

This file was deleted.

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/funny-baboons-prove.md

This file was deleted.

26 changes: 0 additions & 26 deletions .changeset/tasty-seas-juggle.md

This file was deleted.

14 changes: 14 additions & 0 deletions packages/nestjs-federation/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# @graphql-yoga/nestjs-federation

## 3.10.11

### Patch Changes

- [#3676](https://github.com/dotansimha/graphql-yoga/pull/3676)
[`c9b167b`](https://github.com/dotansimha/graphql-yoga/commit/c9b167bc8fdf8478649f6507426b336836098c11)
Thanks [@renovate](https://github.com/apps/renovate)! - dependencies updates:
- Updated dependency
[`@nestjs/graphql@^13.0.0` ↗︎](https://www.npmjs.com/package/@nestjs/graphql/v/13.0.0) (from
`^12.0.0`, in `peerDependencies`)
- Updated dependencies
[[`c9b167b`](https://github.com/dotansimha/graphql-yoga/commit/c9b167bc8fdf8478649f6507426b336836098c11)]:
- @graphql-yoga/nestjs@3.10.11

## 3.10.10

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/nestjs-federation/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@graphql-yoga/nestjs-federation",
"version": "3.10.10",
"version": "3.10.11",
"type": "module",
"description": "GraphQL Yoga driver with Apollo Federation for NestJS GraphQL.",
"repository": {
Expand Down
11 changes: 11 additions & 0 deletions packages/nestjs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# @graphql-yoga/nestjs

## 3.10.11

### Patch Changes

- [#3676](https://github.com/dotansimha/graphql-yoga/pull/3676)
[`c9b167b`](https://github.com/dotansimha/graphql-yoga/commit/c9b167bc8fdf8478649f6507426b336836098c11)
Thanks [@renovate](https://github.com/apps/renovate)! - dependencies updates:
- Updated dependency
[`@nestjs/graphql@^13.0.0` ↗︎](https://www.npmjs.com/package/@nestjs/graphql/v/13.0.0) (from
`^12.0.0`, in `peerDependencies`)

## 3.10.10

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/nestjs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@graphql-yoga/nestjs",
"version": "3.10.10",
"version": "3.10.11",
"type": "module",
"description": "GraphQL Yoga driver for NestJS GraphQL.",
"repository": {
Expand Down
29 changes: 29 additions & 0 deletions packages/plugins/disable-introspection/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,34 @@
# @graphql-yoga/plugin-disable-introspection

## 2.11.0

### Minor Changes

- [#3677](https://github.com/dotansimha/graphql-yoga/pull/3677)
[`7419797`](https://github.com/dotansimha/graphql-yoga/commit/7419797246eb4e955337096b8e46cffa34c22aa1)
Thanks [@ardatan](https://github.com/ardatan)! - Expose the server context as the second
parameter, so introspection can be disabled based on the context

```ts "Disabling GraphQL schema introspection based on the context" {7}
import { createYoga } from 'graphql-yoga'
import { useDisableIntrospection } from '@graphql-yoga/plugin-disable-introspection'

// Provide your schema
const yoga = createYoga({
graphiql: false,
plugins: [
useDisableIntrospection({
isDisabled: (_req, ctx) => !ctx.jwt
})
]
})

const server = createServer(yoga)
server.listen(4000, () => {
console.info('Server is running on http://localhost:4000/graphql')
})
```

## 2.10.10

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/plugins/disable-introspection/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@graphql-yoga/plugin-disable-introspection",
"version": "2.10.10",
"version": "2.11.0",
"type": "module",
"description": "Disable Introspection plugin for GraphQL Yoga.",
"repository": {
Expand Down
9 changes: 9 additions & 0 deletions packages/plugins/jwt/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @graphql-yoga/plugin-jwt

## 3.4.12

### Patch Changes

- [#3677](https://github.com/dotansimha/graphql-yoga/pull/3677)
[`7419797`](https://github.com/dotansimha/graphql-yoga/commit/7419797246eb4e955337096b8e46cffa34c22aa1)
Thanks [@ardatan](https://github.com/ardatan)! - Ensure the JWT context has been added before any
GraphQL Execution hooks when the plugin is used via Yoga

## 3.4.11

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/plugins/jwt/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@graphql-yoga/plugin-jwt",
"version": "3.4.11",
"version": "3.4.12",
"type": "module",
"description": "jwt plugin for GraphQL Yoga.",
"repository": {
Expand Down

0 comments on commit 4afbeb1

Please sign in to comment.