Skip to content

Commit 7c66a2b

Browse files
committedJan 5, 2025··
chore(deps): upgrade dependencies
Remove fragment masking. It is a bit useless with TypeScript and could slow down the app and the development. Also the new Apollo has the feature integraded that is incompatible with gql-gen. We may re-enable it at some point but for now it is useless for us, TypeScript provides enough security.
1 parent d53fd47 commit 7c66a2b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

65 files changed

+2414
-2562
lines changed
 

‎apps/backend/package.json

+18-18
Original file line numberDiff line numberDiff line change
@@ -27,26 +27,26 @@
2727
"watch-server": "sleep 2 && concurrently \"npm:watch-server-*\""
2828
},
2929
"dependencies": {
30-
"@apollo/server": "^4.11.2",
30+
"@apollo/server": "^4.11.3",
3131
"@argos/knex-scripts": "workspace:*",
3232
"@argos/tsconfig": "workspace:*",
3333
"@argos/util": "workspace:*",
34-
"@aws-sdk/client-s3": "^3.712.0",
35-
"@aws-sdk/s3-request-presigner": "^3.712.0",
36-
"@gitbeaker/rest": "^41.3.0",
37-
"@graphql-tools/schema": "^10.0.12",
34+
"@aws-sdk/client-s3": "^3.722.0",
35+
"@aws-sdk/s3-request-presigner": "^3.722.0",
36+
"@gitbeaker/rest": "^42.0.2",
37+
"@graphql-tools/schema": "^10.0.15",
3838
"@octokit/auth-app": "^7.1.3",
39-
"@octokit/core": "^6.1.2",
39+
"@octokit/core": "^6.1.3",
4040
"@octokit/openapi-types": "^22.2.0",
4141
"@octokit/plugin-retry": "^7.1.1",
4242
"@octokit/rest": "^21.0.2",
4343
"@octokit/webhooks": "^13.4.1",
4444
"@octokit/webhooks-types": "^7.6.1",
4545
"@react-email/components": "^0.0.31",
4646
"@react-email/render": "^1.0.3",
47-
"@sentry/node": "^8.45.0",
47+
"@sentry/node": "^8.47.0",
4848
"@sindresorhus/slugify": "^2.2.1",
49-
"@slack/bolt": "^4.1.1",
49+
"@slack/bolt": "^4.2.0",
5050
"ajv": "^8.17.1",
5151
"amqplib": "^0.10.5",
5252
"auth-header": "^1.0.0",
@@ -55,38 +55,38 @@
5555
"cookies": "^0.9.1",
5656
"cors": "^2.8.5",
5757
"dataloader": "^2.2.3",
58-
"discord.js": "^14.16.3",
58+
"discord.js": "^14.17.2",
5959
"dotenv": "^16.4.7",
6060
"express": "^4.21.2",
61-
"express-rate-limit": "^7.4.1",
61+
"express-rate-limit": "^7.5.0",
6262
"google-auth-library": "^9.15.0",
63-
"graphql": "^16.9.0",
63+
"graphql": "^16.10.0",
6464
"graphql-scalars": "^1.24.0",
6565
"graphql-tag": "^2.12.6",
6666
"helmet": "^8.0.0",
6767
"jsonwebtoken": "^9.0.2",
6868
"knex": "^3.1.0",
6969
"lodash-es": "^4.17.21",
70-
"mime": "^4.0.4",
70+
"mime": "^4.0.6",
7171
"minimatch": "^10.0.1",
7272
"moment": "^2.30.1",
7373
"morgan": "^1.10.0",
7474
"objection": "^3.1.4",
7575
"odiff-bin": "^3.2.0",
7676
"p-retry": "^6.2.1",
77-
"p-timeout": "^6.1.3",
77+
"p-timeout": "^6.1.4",
7878
"path-to-regexp": "^8.2.0",
7979
"pg": "^8.13.1",
8080
"rate-limit-redis": "^4.2.0",
8181
"react": "19.0.0",
8282
"redis": "^4.7.0",
8383
"resend": "^4.0.1",
8484
"sharp": "^0.33.5",
85-
"stripe": "^17.4.0",
85+
"stripe": "^17.5.0",
8686
"tmp": "^0.2.3",
87-
"yaml": "^2.6.1",
87+
"yaml": "^2.7.0",
8888
"zod": "^3.24.1",
89-
"zod-openapi": "^4.1.0"
89+
"zod-openapi": "^4.2.2"
9090
},
9191
"devDependencies": {
9292
"@argos/config-types": "workspace:*",
@@ -100,10 +100,10 @@
100100
"@types/jsonwebtoken": "^9.0.6",
101101
"@types/lodash-es": "^4.17.12",
102102
"@types/morgan": "^1.9.9",
103-
"@types/react": "19.0.1",
103+
"@types/react": "19.0.2",
104104
"@types/supertest": "^6.0.2",
105105
"@types/tmp": "^0.2.6",
106-
"concurrently": "^9.1.0",
106+
"concurrently": "^9.1.2",
107107
"factory-girl-ts": "^2.3.1",
108108
"moment": "^2.30.1",
109109
"openapi3-ts": "^4.4.0",

‎apps/backend/src/stripe/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ const timestampToISOString = (date: number) =>
101101
new Date(date * 1000).toISOString();
102102

103103
export const stripe = new Stripe(config.get("stripe.apiKey"), {
104-
apiVersion: "2024-11-20.acacia",
104+
apiVersion: "2024-12-18.acacia",
105105
typescript: true,
106106
});
107107

0 commit comments

Comments
 (0)
Please sign in to comment.