Skip to content

Commit 482499a

Browse files
fix(deps): update all non-major dependencies (#2479)
* fix(deps): update all non-major dependencies * chore(dependencies): updated changesets for modified dependencies --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent cc728cb commit 482499a

21 files changed

+891
-2014
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'graphql-modules': patch
3+
---
4+
dependencies updates:
5+
- Updated dependency [`ramda@^0.30.0` ↗︎](https://www.npmjs.com/package/ramda/v/0.30.0) (from `^0.29.0`, in `dependencies`)

.github/workflows/benchmark.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ jobs:
88
uses: the-guild-org/shared-config/.github/workflows/ci-node-matrix.yml@main
99
with:
1010
script: 'yarn build && yarn benchmark:basic'
11-
nodeVersions: '[16,18]'
11+
nodeVersions: '[18,20,22,23]'

.github/workflows/pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
with:
1111
npmTag: alpha
1212
buildScript: build
13-
nodeVersion: 18
13+
nodeVersion: 23
1414
secrets:
1515
githubToken: ${{ secrets.GITHUB_TOKEN }}
1616
npmToken: ${{ secrets.NODE_AUTH_TOKEN }}

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
uses: the-guild-org/shared-config/.github/workflows/release-stable.yml@main
1010
with:
1111
releaseScript: release
12-
nodeVersion: 18
12+
nodeVersion: 23
1313
secrets:
1414
githubToken: ${{ secrets.GITHUB_TOKEN }}
1515
npmToken: ${{ secrets.NODE_AUTH_TOKEN }}

.github/workflows/tests.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ jobs:
2828
- name: Setup env
2929
uses: the-guild-org/shared-config/setup@main
3030
with:
31-
nodeVersion: 18
31+
nodeVersion: 23
3232
- name: Use GraphQL v${{matrix.graphql_version}}
33-
run: node ./scripts/match-graphql.js ${{matrix.graphql_version}}
33+
run: node ./scripts/match-graphql.js ${{matrix.graphql_version}} && yarn install --no-frozen-lockfile
3434
- name: Type Check
3535
run: yarn ts:check
3636
test:
@@ -39,7 +39,7 @@ jobs:
3939
strategy:
4040
matrix:
4141
os: [ubuntu-latest] # remove windows to speed up the tests
42-
node-version: [12, 16, 18]
42+
node-version: [18, 20, 22, 23]
4343
graphql_version:
4444
- 15
4545
- 16
@@ -49,9 +49,9 @@ jobs:
4949
- name: Setup env
5050
uses: the-guild-org/shared-config/setup@main
5151
with:
52-
nodeVersion: 18
52+
nodeVersion: 23
5353
- name: Use GraphQL v${{matrix.graphql_version}}
54-
run: node ./scripts/match-graphql.js ${{matrix.graphql_version}}
54+
run: node ./scripts/match-graphql.js ${{matrix.graphql_version}} && yarn install --no-frozen-lockfile
5555
- name: Cache Jest
5656
uses: actions/cache@v3
5757
with:
@@ -72,7 +72,7 @@ jobs:
7272
- name: Setup env
7373
uses: the-guild-org/shared-config/setup@main
7474
with:
75-
nodeVersion: 18
75+
nodeVersion: 23
7676
- name: Build Packages
7777
run: yarn build
7878
- name: Test ESM

.github/workflows/website.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- uses: the-guild-org/shared-config/setup@main
2222
name: setup env
2323
with:
24-
nodeVersion: 18
24+
nodeVersion: 23
2525
packageManager: yarn
2626

2727
- uses: the-guild-org/shared-config/website-cf@main

.husky/pre-commit

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1 @@
1-
#!/bin/sh
2-
. "$(dirname "$0")/_/husky.sh"
3-
41
yarn lint-staged

.npmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
save-exact=true
2+
ignore-engines=true

.prettierignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ website/src/pages/docs/advanced/middlewares.mdx
22
website/src/pages/docs/advanced/subscriptions.mdx
33
website/src/pages/docs/di/providers.mdx
44
website/src/pages/docs/recipes/migration.mdx
5+
website/out

jest.config.base.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ const { pathsToModuleNameMapper } = require('ts-jest');
33

44
const ROOT_DIR = __dirname;
55
const TSCONFIG_PATH = resolve(ROOT_DIR, 'tsconfig.json');
6-
const TSCONFIG_TEST_PATH = resolve(ROOT_DIR, 'tsconfig.test.json');
76
const tsconfig = require(TSCONFIG_PATH);
87
const CI = !!process.env.CI;
98

@@ -12,7 +11,7 @@ module.exports = (dir) => {
1211
testEnvironment: 'node',
1312
rootDir: dir,
1413
reporters: ['default'],
15-
modulePathIgnorePatterns: ['dist'],
14+
modulePathIgnorePatterns: ['dist', '.bob'],
1615
moduleNameMapper: pathsToModuleNameMapper(tsconfig.compilerOptions.paths, {
1716
prefix: `${ROOT_DIR}/`,
1817
}),

0 commit comments

Comments
 (0)