Skip to content

Commit

Permalink
chore(deps): bump graphql from 16.7.1 to 16.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
MichalLytek committed Oct 4, 2023
1 parent 1534eb0 commit c318270
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 11 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
### Features

- **Breaking Change**: expose shim as a package entry point `type-graphql/shim` (and `/node_modules/type-graphql/build/typings/shim.ts`)
- **Breaking Change**: update `graphql-js` peer dependency to `^16.8.1`
- support defining directives on `@Field` of `@Args`
- support defining directives on inline `@Arg`
- allow passing custom validation function as `validateFn` option of `@Arg` and `@Args` decorators
Expand Down
16 changes: 8 additions & 8 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@
},
"peerDependencies": {
"class-validator": ">=0.14.0",
"graphql": "^16.7.1",
"graphql": "^16.8.1",
"graphql-scalars": "^1.22.2"
},
"peerDependenciesMeta": {
Expand Down Expand Up @@ -155,7 +155,7 @@
"expect": "^29.6.1",
"express": "^4.18.2",
"glob": "^10.3.3",
"graphql": "^16.7.1",
"graphql": "^16.8.1",
"graphql-redis-subscriptions": "^2.6.0",
"graphql-scalars": "^1.22.2",
"graphql-tag": "^2.12.6",
Expand Down
2 changes: 1 addition & 1 deletion src/utils/graphql-version.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import semVer from "semver";
import { UnmetGraphQLPeerDependencyError } from "../errors";

// This must be kept in sync with 'package.json'
export const graphQLPeerDependencyVersion = "^16.7.1";
export const graphQLPeerDependencyVersion = "^16.8.1";

export function ensureInstalledCorrectGraphQLPackage() {
if (!semVer.satisfies(graphql.version, graphQLPeerDependencyVersion)) {
Expand Down

0 comments on commit c318270

Please sign in to comment.