Skip to content

Commit

Permalink
update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
hayes committed May 9, 2024
1 parent 7ec7856 commit 5a2449a
Show file tree
Hide file tree
Showing 44 changed files with 12,445 additions and 9,856 deletions.
1 change: 1 addition & 0 deletions eslint.config.js
Expand Up @@ -109,6 +109,7 @@ const ignores = [
'website/public',
'website/tailwind.config.js',
'website/util/search-index.js',
'website/.next/*',
];

module.exports = [
Expand Down
14 changes: 7 additions & 7 deletions examples/complex-app/package.json
Expand Up @@ -18,22 +18,22 @@
"dependencies": {
"@faker-js/faker": "^8.4.1",
"@graphql-typed-document-node/core": "^3.2.0",
"@pothos/core": "^3.41.1",
"@pothos/core": "workspace:*",
"@pothos/plugin-dataloader": "workspace:*",
"@pothos/plugin-prisma": "workspace:*",
"@pothos/plugin-prisma-utils": "workspace:*",
"@pothos/plugin-relay": "workspace:*",
"@pothos/plugin-scope-auth": "workspace:*",
"@pothos/plugin-simple-objects": "workspace:*",
"@pothos/plugin-validation": "workspace:*",
"@prisma/client": "^5.12.1",
"@prisma/client": "^5.13.0",
"graphql": "16.8.1",
"graphql-scalars": "^1.23.0",
"graphql-yoga": "5.3.0",
"prisma": "^5.12.1",
"react": "^18.2.0",
"graphql-yoga": "5.3.1",
"prisma": "^5.13.0",
"react": "^18.3.1",
"urql": "^4.0.7",
"zod": "^3.22.4"
"zod": "^3.23.8"
},
"publishConfig": {
"access": "public"
Expand All @@ -43,7 +43,7 @@
"@graphql-codegen/client-preset": "4.2.5",
"@graphql-codegen/introspection": "4.0.3",
"@graphql-codegen/schema-ast": "^4.0.2",
"@types/node": "^20.12.7",
"@types/node": "^20.12.11",
"typescript": "^5.4.5"
}
}
4 changes: 3 additions & 1 deletion examples/complex-app/src/builder.ts
@@ -1,5 +1,5 @@
import { DateTimeResolver } from 'graphql-scalars';
import SchemaBuilder from '@pothos/core';
import SchemaBuilder, { RootFieldBuilder } from '@pothos/core';
import DataloaderPlugin from '@pothos/plugin-dataloader';
import PrismaPlugin from '@pothos/plugin-prisma';
import PrismaUtilsPlugin from '@pothos/plugin-prisma-utils';
Expand All @@ -10,6 +10,8 @@ import ValidationPlugin from '@pothos/plugin-validation';
import type PrismaTypes from '../prisma/generated';
import { db } from './db';

console.log(RootFieldBuilder.prototype)

export const builder = new SchemaBuilder<{
PrismaTypes: PrismaTypes;
Scalars: {
Expand Down
4 changes: 2 additions & 2 deletions examples/envelope-helix-fastify/package.json
Expand Up @@ -9,10 +9,10 @@
"type": "tsc --noEmit"
},
"dependencies": {
"@envelop/core": "^5.0.0",
"@envelop/core": "^5.0.1",
"@faker-js/faker": "^8.4.1",
"@pothos/core": "workspace:*",
"fastify": "^4.26.2",
"fastify": "^4.27.0",
"graphql": "16.8.1",
"graphql-helix": "^1.13.0"
},
Expand Down
10 changes: 5 additions & 5 deletions examples/federation/package.json
Expand Up @@ -14,16 +14,16 @@
"seed": "node -r @swc-node/register prisma/seed.ts"
},
"dependencies": {
"@apollo/gateway": "2.7.2",
"@apollo/server": "^4.10.2",
"@apollo/subgraph": "2.7.2",
"@apollo/gateway": "2.7.6",
"@apollo/server": "^4.10.4",
"@apollo/subgraph": "2.7.6",
"@faker-js/faker": "^8.4.1",
"@pothos/core": "workspace:*",
"@pothos/plugin-directives": "workspace:*",
"@pothos/plugin-federation": "workspace:*",
"@prisma/client": "^5.12.1",
"@prisma/client": "^5.13.0",
"graphql": "16.8.1",
"prisma": "^5.12.1"
"prisma": "^5.13.0"
},
"publishConfig": {
"access": "public"
Expand Down
2 changes: 1 addition & 1 deletion examples/graphql-shield/package.json
Expand Up @@ -14,7 +14,7 @@
"graphql": "16.8.1",
"graphql-middleware": "^6.1.35",
"graphql-shield": "^7.6.5",
"graphql-yoga": "5.3.0"
"graphql-yoga": "5.3.1"
},
"publishConfig": {
"access": "public"
Expand Down
18 changes: 9 additions & 9 deletions examples/nextjs/package.json
Expand Up @@ -10,16 +10,16 @@
"start": "next start"
},
"dependencies": {
"@apollo/client": "^3.9.11",
"@apollo/client": "^3.10.3",
"@faker-js/faker": "^8.4.1",
"@pothos/core": "workspace:*",
"@tanstack/react-query": "^5.29.2",
"@tanstack/react-query": "^5.35.1",
"graphql": "16.8.1",
"graphql-tag": "^2.12.6",
"graphql-yoga": "5.3.0",
"next": "14.2.1",
"react": "18.2.0",
"react-dom": "18.2.0"
"graphql-yoga": "5.3.1",
"next": "14.2.3",
"react": "18.3.1",
"react-dom": "18.3.1"
},
"devDependencies": {
"@graphql-codegen/cli": "^5.0.2",
Expand All @@ -28,9 +28,9 @@
"@graphql-codegen/typescript": "^4.0.6",
"@graphql-codegen/typescript-operations": "^4.2.0",
"@graphql-codegen/typescript-react-apollo": "^4.3.0",
"@types/node": "20.12.7",
"@types/react": "18.2.78",
"@types/react-dom": "18.2.25",
"@types/node": "20.12.11",
"@types/react": "18.3.1",
"@types/react-dom": "18.3.0",
"concurrently": "^8.2.2",
"typescript": "^5.4.5"
},
Expand Down
12 changes: 6 additions & 6 deletions examples/open-telemetry/package.json
Expand Up @@ -5,17 +5,17 @@
"license": "MIT",
"dependencies": {
"@opentelemetry/api": "^1.8.0",
"@opentelemetry/exporter-zipkin": "^1.23.0",
"@opentelemetry/instrumentation": "^0.50.0",
"@opentelemetry/instrumentation-http": "^0.50.0",
"@opentelemetry/sdk-trace-base": "^1.23.0",
"@opentelemetry/sdk-trace-node": "^1.23.0",
"@opentelemetry/exporter-zipkin": "^1.24.1",
"@opentelemetry/instrumentation": "^0.51.1",
"@opentelemetry/instrumentation-http": "^0.51.1",
"@opentelemetry/sdk-trace-base": "^1.24.1",
"@opentelemetry/sdk-trace-node": "^1.24.1",
"@pothos/core": "workspace:*",
"@pothos/plugin-tracing": "workspace:*",
"@pothos/tracing-opentelemetry": "workspace:*",
"bema": "^0.1.2",
"graphql": "16.8.1",
"graphql-yoga": "5.3.0",
"graphql-yoga": "5.3.1",
"tsm": "^2.3.0"
},
"publishConfig": {
Expand Down
10 changes: 5 additions & 5 deletions examples/prisma-federation/package.json
Expand Up @@ -14,18 +14,18 @@
"seed": "node -r @swc-node/register prisma/seed.ts"
},
"dependencies": {
"@apollo/gateway": "2.7.2",
"@apollo/server": "^4.10.2",
"@apollo/subgraph": "2.7.2",
"@apollo/gateway": "2.7.6",
"@apollo/server": "^4.10.4",
"@apollo/subgraph": "2.7.6",
"@faker-js/faker": "^8.4.1",
"@pothos/core": "workspace:*",
"@pothos/plugin-directives": "workspace:*",
"@pothos/plugin-federation": "workspace:*",
"@pothos/plugin-prisma": "workspace:*",
"@pothos/plugin-relay": "workspace:*",
"@prisma/client": "^5.12.1",
"@prisma/client": "^5.13.0",
"graphql": "16.8.1",
"prisma": "^5.12.1"
"prisma": "^5.13.0"
},
"publishConfig": {
"access": "public"
Expand Down
8 changes: 4 additions & 4 deletions examples/prisma-relay/package.json
Expand Up @@ -15,13 +15,13 @@
},
"dependencies": {
"@faker-js/faker": "^8.4.1",
"@pothos/core": "^3.41.1",
"@pothos/core": "workspace:*",
"@pothos/plugin-prisma": "workspace:*",
"@pothos/plugin-relay": "workspace:*",
"@prisma/client": "^5.12.1",
"@prisma/client": "^5.13.0",
"graphql": "16.8.1",
"graphql-yoga": "5.3.0",
"prisma": "^5.12.1"
"graphql-yoga": "5.3.1",
"prisma": "^5.13.0"
},
"publishConfig": {
"access": "public"
Expand Down
8 changes: 4 additions & 4 deletions examples/prisma-smart-subscriptions-apollo/package.json
Expand Up @@ -14,20 +14,20 @@
"seed": "node -r @swc-node/register prisma/seed.ts"
},
"dependencies": {
"@apollo/server": "^4.10.2",
"@apollo/server": "^4.10.4",
"@faker-js/faker": "^8.4.1",
"@pothos/core": "workspace:*",
"@pothos/plugin-prisma": "workspace:*",
"@pothos/plugin-smart-subscriptions": "workspace:*",
"@prisma/client": "^5.12.1",
"@prisma/client": "^5.13.0",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"express": "^4.19.2",
"graphql": "16.8.1",
"graphql-subscriptions": "^2.0.0",
"graphql-ws": "^5.16.0",
"prisma": "^5.12.1",
"ws": "^8.16.0"
"prisma": "^5.13.0",
"ws": "^8.17.0"
},
"publishConfig": {
"access": "public"
Expand Down
6 changes: 3 additions & 3 deletions examples/prisma-subscriptions/package.json
Expand Up @@ -17,11 +17,11 @@
"@faker-js/faker": "^8.4.1",
"@pothos/core": "workspace:*",
"@pothos/plugin-prisma": "workspace:*",
"@prisma/client": "^5.12.1",
"@prisma/client": "^5.13.0",
"graphql": "16.8.1",
"graphql-subscriptions": "^2.0.0",
"graphql-yoga": "5.3.0",
"prisma": "^5.12.1"
"graphql-yoga": "5.3.1",
"prisma": "^5.13.0"
},
"publishConfig": {
"access": "public"
Expand Down
6 changes: 3 additions & 3 deletions examples/prisma/package.json
Expand Up @@ -17,10 +17,10 @@
"@faker-js/faker": "^8.4.1",
"@pothos/core": "workspace:*",
"@pothos/plugin-prisma": "workspace:*",
"@prisma/client": "^5.12.1",
"@prisma/client": "^5.13.0",
"graphql": "16.8.1",
"graphql-yoga": "5.3.0",
"prisma": "^5.12.1"
"graphql-yoga": "5.3.1",
"prisma": "^5.13.0"
},
"publishConfig": {
"access": "public"
Expand Down
4 changes: 2 additions & 2 deletions examples/relay-windowed-pagination/package.json
Expand Up @@ -16,8 +16,8 @@
"@pothos/core": "workspace:*",
"@pothos/plugin-relay": "workspace:*",
"graphql": "16.8.1",
"graphql-yoga": "5.3.0",
"prisma": "^5.12.1"
"graphql-yoga": "5.3.1",
"prisma": "^5.13.0"
},
"publishConfig": {
"access": "public"
Expand Down
2 changes: 1 addition & 1 deletion examples/simple-classes/package.json
Expand Up @@ -12,7 +12,7 @@
"@faker-js/faker": "^8.4.1",
"@pothos/core": "workspace:*",
"graphql": "16.8.1",
"graphql-yoga": "5.3.0"
"graphql-yoga": "5.3.1"
},
"publishConfig": {
"access": "public"
Expand Down
2 changes: 1 addition & 1 deletion examples/simple-interfaces/package.json
Expand Up @@ -12,7 +12,7 @@
"@faker-js/faker": "^8.4.1",
"@pothos/core": "workspace:*",
"graphql": "16.8.1",
"graphql-yoga": "5.3.0"
"graphql-yoga": "5.3.1"
},
"publishConfig": {
"access": "public"
Expand Down
22 changes: 11 additions & 11 deletions package.json
Expand Up @@ -35,29 +35,29 @@
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@faker-js/faker": "^8.4.1",
"@swc-node/register": "^1.9.0",
"@swc-node/register": "^1.9.1",
"@swc/cli": "^0.3.12",
"@swc/core": "^1.4.14",
"@swc/core": "^1.5.5",
"@swc/jest": "^0.2.36",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.7",
"@types/node": "^20.12.11",
"@vitest/coverage-c8": "^0.33.0",
"eslint": "^9.0.0",
"eslint-config-moon": "^3.0.0",
"eslint": "^9.2.0",
"eslint-config-moon": "^3.1.0",
"eslint-plugin-mdx": "^3.1.5",
"eslint-plugin-prettier": "^5.1.3",
"globals": "^15.0.0",
"globals": "^15.2.0",
"graphql": "16.8.1",
"graphql-helix": "^1.13.0",
"graphql-tag": "^2.12.6",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"tsx": "^4.7.2",
"turbo": "^1.13.2",
"tsx": "^4.9.3",
"turbo": "^1.13.3",
"typescript": "5.4.5",
"typescript-eslint": "^7.7.0",
"typescript-eslint": "^7.8.0",
"typescript-json-schema": "^0.63.0",
"vitest": "^1.5.0"
"vitest": "^1.6.0"
},
"resolutions": {
"graphql": "16.8.1",
Expand All @@ -73,7 +73,7 @@
"url": "https://github.com/hayes/pothos/issues"
},
"homepage": "https://pothos-graphql.dev",
"packageManager": "pnpm@8.6.5",
"packageManager": "pnpm@9.1.0+sha512.67f5879916a9293e5cf059c23853d571beaf4f753c707f40cb22bed5fb1578c6aad3b6c4107ccb3ba0b35be003eb621a16471ac836c87beb53f9d54bb4612724",
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Expand Up @@ -47,7 +47,7 @@
"provenance": true
},
"peerDependencies": {
"graphql": ">=15.1.0"
"graphql": "16.8.1"
},
"devDependencies": {
"@pothos/test-utils": "workspace:*",
Expand Down
2 changes: 1 addition & 1 deletion packages/plugin-add-graphql/package.json
Expand Up @@ -46,7 +46,7 @@
},
"peerDependencies": {
"@pothos/core": "*",
"graphql": ">=15.1.0"
"graphql": "16.8.1"
},
"devDependencies": {
"@pothos/core": "workspace:*",
Expand Down
2 changes: 1 addition & 1 deletion packages/plugin-authz/package.json
Expand Up @@ -44,7 +44,7 @@
},
"peerDependencies": {
"@graphql-authz/core": "*",
"graphql": ">=15.1.0"
"graphql": "16.8.1"
},
"devDependencies": {
"@graphql-authz/core": "^1.3.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/plugin-complexity/package.json
Expand Up @@ -47,7 +47,7 @@
},
"peerDependencies": {
"@pothos/core": "*",
"graphql": ">=15.1.0"
"graphql": "16.8.1"
},
"devDependencies": {
"@pothos/core": "workspace:*",
Expand Down
2 changes: 1 addition & 1 deletion packages/plugin-dataloader/package.json
Expand Up @@ -45,7 +45,7 @@
"peerDependencies": {
"@pothos/core": "*",
"dataloader": "2",
"graphql": ">=15.1.0"
"graphql": "16.8.1"
},
"devDependencies": {
"@pothos/core": "workspace:*",
Expand Down

0 comments on commit 5a2449a

Please sign in to comment.