Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
with:
npmTag: alpha
buildScript: build
nodeVersion: 22
nodeVersion: 24
secrets:
githubToken: ${{ secrets.GITHUB_TOKEN }}
npmToken: ${{ secrets.NODE_AUTH_TOKEN }}
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
uses: the-guild-org/shared-config/.github/workflows/release-stable.yml@main
with:
releaseScript: release
nodeVersion: 22
nodeVersion: 24
secrets:
githubToken: ${{ secrets.GITHUB_TOKEN }}
npmToken: ${{ secrets.NODE_AUTH_TOKEN }}
34 changes: 9 additions & 25 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Setup env
uses: the-guild-org/shared-config/setup@main
with:
nodeVersion: 22
nodeVersion: 24

- name: Use GraphQL v15
run: node ./scripts/match-graphql.js 15
Expand All @@ -43,7 +43,7 @@ jobs:
- name: Setup env
uses: the-guild-org/shared-config/setup@main
with:
nodeVersion: 22
nodeVersion: 24
- name: Prettier
run: yarn prettier:check
- name: Lint
Expand All @@ -61,11 +61,13 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest] # remove windows to speed up the tests
node-version: [18, 20, 22, 23]
node-version: [18, 22, 24]
graphql_version:
- 15
- 16
include:
- node-version: 18
os: ubuntu-latest
graphql_version: 15
- node-version: 18
os: windows-latest
graphql_version: 16
Expand Down Expand Up @@ -106,38 +108,20 @@ jobs:
max_attempts: 5
command: yarn test:leaks --ci
test-bun:
name: Unit Test on Bun (${{matrix.os}}) and GraphQL v${{matrix.graphql_version}}
name: Unit Test on Bun
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest] # remove windows to speed up the tests
graphql_version:
- 15
- 16
steps:
- name: Checkout Master
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4

- name: Setup env
uses: the-guild-org/shared-config/setup@main
with:
nodeVersion: 23

- name: Use GraphQL v${{matrix.graphql_version}}
run: node ./scripts/match-graphql.js ${{matrix.graphql_version}}
- name: Install Dependencies using Yarn
run: yarn install --ignore-engines && git checkout yarn.lock
nodeVersion: 24
- name: Build
run: yarn build
- name: Unit Tests
uses: nick-fields/retry@ce71cc2ab81d554ebbe88c79ab5975992d79ba08 # v3
with:
timeout_minutes: 10
max_attempts: 5
command: yarn test:bun --ci --reporter=junit --reporter-outfile=./junit.xml
- name: Publish Test Report
uses: mikepenz/action-junit-report@cf701569b05ccdd861a76b8607a66d76f6fd4857 # v5
if: success() || failure() # always run even if the previous step fails
with:
report_paths: './junit.xml'
command: yarn test:bun --ci
24 changes: 12 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,37 +53,37 @@
"@babel/preset-typescript": "7.27.1",
"@changesets/changelog-github": "0.5.1",
"@changesets/cli": "2.29.4",
"@envelop/core": "5.2.3",
"@envelop/core": "5.3.0",
"@theguild/prettier-config": "3.0.1",
"@types/jest": "29.5.14",
"@types/node": "22.15.29",
"@types/node": "22.15.33",
"@typescript-eslint/eslint-plugin": "8.32.1",
"@typescript-eslint/parser": "8.32.1",
"@urql/core": "5.1.1",
"babel-jest": "30.0.0",
"bob-the-bundler": "7.0.1",
"bun": "1.2.15",
"bun": "1.2.17",
"chalk": "5.4.1",
"concurrently": "9.1.2",
"concurrently": "9.2.0",
"cross-env": "7.0.3",
"eslint": "9.28.0",
"eslint": "9.29.0",
"eslint-config-prettier": "10.1.5",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-n": "17.19.0",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-n": "17.20.0",
"eslint-plugin-promise": "7.2.1",
"eslint-plugin-standard": "5.0.0",
"globby": "11.1.0",
"graphql": "16.11.0",
"graphql-yoga": "5.13.5",
"husky": "9.1.7",
"jest": "30.0.0",
"lint-staged": "16.1.0",
"lint-staged": "16.1.2",
"patch-package": "8.0.0",
"prettier": "3.5.3",
"prettier-plugin-tailwindcss": "0.6.12",
"ts-jest": "29.3.4",
"tsx": "4.19.4",
"prettier": "3.6.1",
"prettier-plugin-tailwindcss": "0.6.13",
"ts-jest": "29.4.0",
"tsx": "4.20.3",
"typedoc": "0.25.13",
"typedoc-plugin-markdown": "3.17.1",
"typedoc-plugin-rename-defaults": "0.7.3",
Expand Down
2 changes: 1 addition & 1 deletion packages/executors/envelop/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
"tslib": "^2.3.1"
},
"devDependencies": {
"@envelop/core": "5.2.3"
"@envelop/core": "5.3.0"
},
"publishConfig": {
"directory": "dist",
Expand Down
8 changes: 4 additions & 4 deletions packages/graphql-tag-pluck/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,13 +59,13 @@
"tslib": "^2.4.0"
},
"devDependencies": {
"@astrojs/compiler": "2.12.0",
"@astrojs/compiler": "2.12.2",
"@types/babel__traverse": "7.20.7",
"@vue/compiler-sfc": "3.5.16",
"@vue/compiler-sfc": "3.5.17",
"astrojs-compiler-sync": "1.1.1",
"content-tag": "4.0.0",
"svelte": "5.33.14",
"svelte2tsx": "0.7.39"
"svelte": "5.34.8",
"svelte2tsx": "0.7.40"
},
"publishConfig": {
"directory": "dist",
Expand Down
6 changes: 3 additions & 3 deletions packages/loaders/url/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,17 +65,17 @@
"ws": "^8.17.1"
},
"devDependencies": {
"@envelop/core": "5.2.3",
"@envelop/core": "5.3.0",
"@envelop/live-query": "8.1.3",
"@graphql-yoga/plugin-defer-stream": "3.13.5",
"@types/express": "5.0.2",
"@types/express": "5.0.3",
"@types/valid-url": "1.0.7",
"babel-loader": "10.0.0",
"express": "5.1.0",
"graphql-sse": "2.5.4",
"graphql-upload": "17.0.0",
"graphql-yoga": "5.13.5",
"puppeteer": "24.10.0",
"puppeteer": "24.10.2",
"subscriptions-transport-ws": "0.11.0",
"webpack": "5.99.9"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/resolvers-composition/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
"tslib": "^2.4.0"
},
"devDependencies": {
"@types/lodash": "4.17.17",
"@types/lodash": "4.17.18",
"@types/micromatch": "4.0.9"
},
"publishConfig": {
Expand Down
33 changes: 0 additions & 33 deletions patches/jest-leak-detector+29.7.0.patch

This file was deleted.

10 changes: 5 additions & 5 deletions website/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@
},
"devDependencies": {
"@theguild/tailwind-config": "0.6.3",
"@types/node": "22.15.29",
"@types/react": "19.1.6",
"@types/node": "22.15.33",
"@types/react": "19.1.8",
"pagefind": "^1.3.0",
"postcss": "8.5.4",
"postcss-import": "16.1.0",
"postcss": "8.5.6",
"postcss-import": "16.1.1",
"postcss-lightningcss": "1.0.1",
"tailwindcss": "3.4.17",
"typescript": "5.8.3",
"wrangler": "4.18.0"
"wrangler": "4.21.2"
}
}
1 change: 0 additions & 1 deletion website/src/content/generate-schema.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,6 @@ const jsSchema = makeExecutableSchema({

- `resolverValidationOptions` is an optional argument with the following properties, each of which
can be set to `error`, `warn`, or `ignore`:

- `requireResolversForArgs` will cause `makeExecutableSchema` to throw an error (`error`) or issue
a warning (`warn`)unless a resolver is defined for every field with arguments. The default is
`ignore`, causing this validator to be skipped.
Expand Down
Loading
Loading