Skip to content

Commit d47ed2e

Browse files
renovate[bot]favna
andauthored
fix(deps): update all non-major dependencies (#1025)
* fix(deps): update all non-major dependencies [skip publish] * chore: freemasonry * chore: this is the last time we let sepehr commit ascii porn in the comments. --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Jeroen Claassens <support@favware.tech>
1 parent eb7a536 commit d47ed2e

File tree

5 files changed

+268
-47
lines changed

5 files changed

+268
-47
lines changed

.github/workflows/branch-imager.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: Checkout Project
1515
uses: actions/checkout@v4
1616
- name: Setup Docker Buildx
17-
uses: docker/setup-buildx-action@v3.7.1
17+
uses: docker/setup-buildx-action@v3.8.0
1818
- name: Login to DockerHub
1919
uses: docker/login-action@v3.3.0
2020
with:

.github/workflows/continuous-deployment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Checkout Project
2626
uses: actions/checkout@v4
2727
- name: Setup Docker Buildx
28-
uses: docker/setup-buildx-action@v3.7.1
28+
uses: docker/setup-buildx-action@v3.8.0
2929
- name: Login to DockerHub
3030
uses: docker/login-action@v3.3.0
3131
with:
Lines changed: 206 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,206 @@
1+
diff --git a/package.json b/package.json
2+
index 2c4d734674ce9bf1f58515fa782f93c97e807ee8..6080e53ce16efe879ff205e96e448c1c8313eda4 100644
3+
--- a/package.json
4+
+++ b/package.json
5+
@@ -3,8 +3,200 @@
6+
"version": "16.10.0",
7+
"description": "A Query Language and Runtime which can target any service.",
8+
"license": "MIT",
9+
- "main": "index",
10+
+ "main": "index.js",
11+
"module": "index.mjs",
12+
+ "exports": {
13+
+ ".": {
14+
+ "import": {
15+
+ "types": "./index.d.ts",
16+
+ "default": "./index.mjs"
17+
+ },
18+
+ "require": {
19+
+ "types": "./index.d.ts",
20+
+ "default": "./index.js"
21+
+ }
22+
+ },
23+
+ "./graphql": {
24+
+ "import": {
25+
+ "types": "./graphql.d.ts",
26+
+ "default": "./graphql.mjs"
27+
+ },
28+
+ "require": {
29+
+ "types": "./graphql.d.ts",
30+
+ "default": "./graphql.js"
31+
+ }
32+
+ },
33+
+ "./version": {
34+
+ "import": {
35+
+ "types": "./version.d.ts",
36+
+ "default": "./version.mjs"
37+
+ },
38+
+ "require": {
39+
+ "types": "./version.d.ts",
40+
+ "default": "./version.js"
41+
+ }
42+
+ },
43+
+ "./error": {
44+
+ "import": {
45+
+ "types": "./error/index.d.ts",
46+
+ "default": "./error/index.mjs"
47+
+ },
48+
+ "require": {
49+
+ "types": "./error/index.d.ts",
50+
+ "default": "./error/index.js"
51+
+ }
52+
+ },
53+
+ "./error/*": {
54+
+ "import": {
55+
+ "types": "./error/*.d.ts",
56+
+ "default": "./error/*.mjs"
57+
+ },
58+
+ "require": {
59+
+ "types": "./error/*.d.ts",
60+
+ "default": "./error/*.js"
61+
+ }
62+
+ },
63+
+ "./execution": {
64+
+ "import": {
65+
+ "types": "./execution/index.d.ts",
66+
+ "default": "./execution/index.mjs"
67+
+ },
68+
+ "require": {
69+
+ "types": "./execution/index.d.ts",
70+
+ "default": "./execution/index.js"
71+
+ }
72+
+ },
73+
+ "./execution/*": {
74+
+ "import": {
75+
+ "types": "./execution/*.d.ts",
76+
+ "default": "./execution/*.mjs"
77+
+ },
78+
+ "require": {
79+
+ "types": "./execution/*.d.ts",
80+
+ "default": "./execution/*.js"
81+
+ }
82+
+ },
83+
+ "./jsutils": {
84+
+ "import": {
85+
+ "types": "./jsutils/index.d.ts",
86+
+ "default": "./jsutils/index.mjs"
87+
+ },
88+
+ "require": {
89+
+ "types": "./jsutils/index.d.ts",
90+
+ "default": "./jsutils/index.js"
91+
+ }
92+
+ },
93+
+ "./jsutils/*": {
94+
+ "import": {
95+
+ "types": "./jsutils/*.d.ts",
96+
+ "default": "./jsutils/*.mjs"
97+
+ },
98+
+ "require": {
99+
+ "types": "./jsutils/*.d.ts",
100+
+ "default": "./jsutils/*.js"
101+
+ }
102+
+ },
103+
+ "./language": {
104+
+ "import": {
105+
+ "types": "./language/index.d.ts",
106+
+ "default": "./language/index.mjs"
107+
+ },
108+
+ "require": {
109+
+ "types": "./language/index.d.ts",
110+
+ "default": "./language/index.js"
111+
+ }
112+
+ },
113+
+ "./language/*": {
114+
+ "import": {
115+
+ "types": "./language/*.d.ts",
116+
+ "default": "./language/*.mjs"
117+
+ },
118+
+ "require": {
119+
+ "types": "./language/*.d.ts",
120+
+ "default": "./language/*.js"
121+
+ }
122+
+ },
123+
+ "./subscription": {
124+
+ "import": {
125+
+ "types": "./subscription/index.d.ts",
126+
+ "default": "./subscription/index.mjs"
127+
+ },
128+
+ "require": {
129+
+ "types": "./subscription/index.d.ts",
130+
+ "default": "./subscription/index.js"
131+
+ }
132+
+ },
133+
+ "./subscription/*": {
134+
+ "import": {
135+
+ "types": "./subscription/*.d.ts",
136+
+ "default": "./subscription/*.mjs"
137+
+ },
138+
+ "require": {
139+
+ "types": "./subscription/*.d.ts",
140+
+ "default": "./subscription/*.js"
141+
+ }
142+
+ },
143+
+ "./type": {
144+
+ "import": {
145+
+ "types": "./type/index.d.ts",
146+
+ "default": "./type/index.mjs"
147+
+ },
148+
+ "require": {
149+
+ "types": "./type/index.d.ts",
150+
+ "default": "./type/index.js"
151+
+ }
152+
+ },
153+
+ "./type/*": {
154+
+ "import": {
155+
+ "types": "./type/*.d.ts",
156+
+ "default": "./type/*.mjs"
157+
+ },
158+
+ "require": {
159+
+ "types": "./type/*.d.ts",
160+
+ "default": "./type/*.js"
161+
+ }
162+
+ },
163+
+ "./utilities": {
164+
+ "import": {
165+
+ "types": "./utilities/index.d.ts",
166+
+ "default": "./utilities/index.mjs"
167+
+ },
168+
+ "require": {
169+
+ "types": "./utilities/index.d.ts",
170+
+ "default": "./utilities/index.js"
171+
+ }
172+
+ },
173+
+ "./utilities/*": {
174+
+ "import": {
175+
+ "types": "./utilities/*.d.ts",
176+
+ "default": "./utilities/*.mjs"
177+
+ },
178+
+ "require": {
179+
+ "types": "./utilities/*.d.ts",
180+
+ "default": "./utilities/*.js"
181+
+ }
182+
+ },
183+
+ "./validation": {
184+
+ "import": {
185+
+ "types": "./validation/index.d.ts",
186+
+ "default": "./validation/index.mjs"
187+
+ },
188+
+ "require": {
189+
+ "types": "./validation/index.d.ts",
190+
+ "default": "./validation/index.js"
191+
+ }
192+
+ },
193+
+ "./validation/*": {
194+
+ "import": {
195+
+ "types": "./validation/*.d.ts",
196+
+ "default": "./validation/*.mjs"
197+
+ },
198+
+ "require": {
199+
+ "types": "./validation/*.d.ts",
200+
+ "default": "./validation/*.js"
201+
+ }
202+
+ }
203+
+ },
204+
"typesVersions": {
205+
">=4.1.0": {
206+
"*": [

package.json

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -72,12 +72,12 @@
7272
"au:cries": "yarn tsx ./scripts/data-gen-scripts/scripted-updaters/cries-updater/cry-updater.ts"
7373
},
7474
"dependencies": {
75-
"graphql": "^16.9.0"
75+
"graphql": "^16.10.0"
7676
},
7777
"devDependencies": {
7878
"@apollo/server": "^4.11.2",
7979
"@as-integrations/koa": "^1.1.1",
80-
"@commitlint/cli": "^19.6.0",
80+
"@commitlint/cli": "^19.6.1",
8181
"@commitlint/config-conventional": "^19.6.0",
8282
"@discordjs/collection": "^2.1.1",
8383
"@favware/cliff-jumper": "^5.0.0",
@@ -116,9 +116,9 @@
116116
"koa": "^2.15.3",
117117
"koa-bodyparser": "^4.4.1",
118118
"lint-staged": "^15.2.11",
119-
"npm-run-all2": "^7.0.1",
119+
"npm-run-all2": "^7.0.2",
120120
"prettier": "^3.4.2",
121-
"replace-in-file": "^8.2.0",
121+
"replace-in-file": "^8.3.0",
122122
"rimraf": "^6.0.1",
123123
"tsup": "^8.3.5",
124124
"tsx": "^4.19.2",
@@ -128,9 +128,10 @@
128128
"resolutions": {
129129
"ansi-regex": "^5.0.1",
130130
"minimist": "^1.2.8",
131-
"graphql@npm:^16.9.0": "patch:graphql@npm%3A16.9.0#~/.yarn/patches/graphql-npm-16.9.0-a36f71845f.patch",
131+
"graphql@npm:16.9.0": "patch:graphql@npm%3A16.9.0#~/.yarn/patches/graphql-npm-16.9.0-a36f71845f.patch",
132132
"@graphql-tools/merge@npm:^9.0.0": "patch:@graphql-tools/merge@npm%3A9.0.4#~/.yarn/patches/@graphql-tools-merge-npm-9.0.4-169df8c300.patch",
133-
"@graphql-tools/merge@npm:^9.0.3": "patch:@graphql-tools/merge@npm%3A9.0.4#~/.yarn/patches/@graphql-tools-merge-npm-9.0.4-169df8c300.patch"
133+
"@graphql-tools/merge@npm:^9.0.3": "patch:@graphql-tools/merge@npm%3A9.0.4#~/.yarn/patches/@graphql-tools-merge-npm-9.0.4-169df8c300.patch",
134+
"graphql@npm:^16.10.0": "patch:graphql@npm%3A16.10.0#~/.yarn/patches/graphql-npm-16.10.0-bc1b088de1.patch"
134135
},
135136
"files": [
136137
"dist/",

0 commit comments

Comments
 (0)