mirror of
https://github.com/graphql-hive/console
synced 2026-04-21 14:37:17 +00:00
update node to 24.14.1 and @types/node to 24.12.2 to address Aikido i… (#7946)
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> Co-authored-by: Laurin Quast <laurinquast@googlemail.com>
This commit is contained in:
parent
9ce8fda7f8
commit
ca69b1c59f
14 changed files with 301 additions and 301 deletions
2
.github/workflows/pr.yaml
vendored
2
.github/workflows/pr.yaml
vendored
|
|
@ -93,7 +93,7 @@ jobs:
|
||||||
restoreDeletedChangesets: true
|
restoreDeletedChangesets: true
|
||||||
buildScript: build:libraries
|
buildScript: build:libraries
|
||||||
packageManager: pnpm
|
packageManager: pnpm
|
||||||
nodeVersion: '24.13'
|
nodeVersion: '24.14'
|
||||||
secrets:
|
secrets:
|
||||||
githubToken: ${{ secrets.GITHUB_TOKEN }}
|
githubToken: ${{ secrets.GITHUB_TOKEN }}
|
||||||
npmToken: ${{ secrets.NPM_TOKEN }}
|
npmToken: ${{ secrets.NPM_TOKEN }}
|
||||||
|
|
|
||||||
2
.github/workflows/release-alpha.yaml
vendored
2
.github/workflows/release-alpha.yaml
vendored
|
|
@ -13,7 +13,7 @@ jobs:
|
||||||
npmTag: alpha
|
npmTag: alpha
|
||||||
buildScript: build:libraries
|
buildScript: build:libraries
|
||||||
packageManager: pnpm
|
packageManager: pnpm
|
||||||
nodeVersion: '24.13'
|
nodeVersion: '24.14'
|
||||||
secrets:
|
secrets:
|
||||||
githubToken: ${{ secrets.GITHUB_TOKEN }}
|
githubToken: ${{ secrets.GITHUB_TOKEN }}
|
||||||
npmToken: ${{ secrets.NPM_TOKEN }}
|
npmToken: ${{ secrets.NPM_TOKEN }}
|
||||||
|
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
24.13
|
24.14.1
|
||||||
|
|
|
||||||
|
|
@ -25,7 +25,7 @@
|
||||||
"@graphql-hive/gateway": "^2.1.19",
|
"@graphql-hive/gateway": "^2.1.19",
|
||||||
"@types/js-yaml": "4.0.9",
|
"@types/js-yaml": "4.0.9",
|
||||||
"@types/mime-types": "2.1.4",
|
"@types/mime-types": "2.1.4",
|
||||||
"@types/node": "24.10.9",
|
"@types/node": "24.12.2",
|
||||||
"@types/tmp": "0.2.6",
|
"@types/tmp": "0.2.6",
|
||||||
"json-schema-to-typescript": "15.0.3",
|
"json-schema-to-typescript": "15.0.3",
|
||||||
"tmp": "0.2.5",
|
"tmp": "0.2.5",
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
FROM node:24.13.0-slim
|
FROM node:24.14.1-slim
|
||||||
|
|
||||||
RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates git && rm -rf /var/lib/apt/lists/*
|
RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates git && rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
FROM node:24.13.0-slim
|
FROM node:24.14.1-slim
|
||||||
|
|
||||||
RUN apt-get update && apt-get install -y ca-certificates
|
RUN apt-get update && apt-get install -y ca-certificates
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
FROM node:24.13.0-slim
|
FROM node:24.14.1-slim
|
||||||
|
|
||||||
RUN apt-get update && apt-get install -y wget ca-certificates && rm -rf /var/lib/apt/lists/*
|
RUN apt-get update && apt-get install -y wget ca-certificates && rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -12,7 +12,7 @@ networks:
|
||||||
|
|
||||||
services:
|
services:
|
||||||
local_cdn:
|
local_cdn:
|
||||||
image: node:24.13.0-alpine3.23
|
image: node:24.14.1-alpine3.23
|
||||||
working_dir: /app
|
working_dir: /app
|
||||||
command: ['node', 'index.js']
|
command: ['node', 'index.js']
|
||||||
networks:
|
networks:
|
||||||
|
|
@ -38,7 +38,7 @@ services:
|
||||||
S3_BUCKET_NAME: artifacts
|
S3_BUCKET_NAME: artifacts
|
||||||
|
|
||||||
local_broker:
|
local_broker:
|
||||||
image: node:24.13.0-alpine3.23
|
image: node:24.14.1-alpine3.23
|
||||||
working_dir: /app
|
working_dir: /app
|
||||||
command: ['node', 'broker.js']
|
command: ['node', 'broker.js']
|
||||||
networks:
|
networks:
|
||||||
|
|
@ -90,7 +90,7 @@ services:
|
||||||
SECRET: '${EXTERNAL_COMPOSITION_SECRET}'
|
SECRET: '${EXTERNAL_COMPOSITION_SECRET}'
|
||||||
|
|
||||||
external_composition:
|
external_composition:
|
||||||
image: node:24.13.0-alpine3.23
|
image: node:24.14.1-alpine3.23
|
||||||
working_dir: /app
|
working_dir: /app
|
||||||
command: ['node', 'example.mjs']
|
command: ['node', 'example.mjs']
|
||||||
networks:
|
networks:
|
||||||
|
|
@ -290,10 +290,10 @@ services:
|
||||||
|
|
||||||
# It's not part of integration tests
|
# It's not part of integration tests
|
||||||
app:
|
app:
|
||||||
image: node:24.13.0-alpine3.23
|
image: node:24.14.1-alpine3.23
|
||||||
command: ['npx', 'http-server']
|
command: ['npx', 'http-server']
|
||||||
|
|
||||||
# Redpand is used for integration tests, instead of Kafka. Zookeeper is no longer needed
|
# Redpand is used for integration tests, instead of Kafka. Zookeeper is no longer needed
|
||||||
zookeeper:
|
zookeeper:
|
||||||
image: node:24.13.0-alpine3.23
|
image: node:24.14.1-alpine3.23
|
||||||
command: ['npx', 'http-server']
|
command: ['npx', 'http-server']
|
||||||
|
|
|
||||||
|
|
@ -14,7 +14,7 @@
|
||||||
"private": true,
|
"private": true,
|
||||||
"packageManager": "pnpm@10.18.3+sha512.bbd16e6d7286fd7e01f6b3c0b3c932cda2965c06a908328f74663f10a9aea51f1129eea615134bf992831b009eabe167ecb7008b597f40ff9bc75946aadfb08d",
|
"packageManager": "pnpm@10.18.3+sha512.bbd16e6d7286fd7e01f6b3c0b3c932cda2965c06a908328f74663f10a9aea51f1129eea615134bf992831b009eabe167ecb7008b597f40ff9bc75946aadfb08d",
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=24.13",
|
"node": ">=24.14.1",
|
||||||
"pnpm": ">=10.16.0"
|
"pnpm": ">=10.16.0"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
@ -85,7 +85,7 @@
|
||||||
"@theguild/eslint-config": "0.12.1",
|
"@theguild/eslint-config": "0.12.1",
|
||||||
"@theguild/federation-composition": "0.22.1",
|
"@theguild/federation-composition": "0.22.1",
|
||||||
"@theguild/prettier-config": "2.0.7",
|
"@theguild/prettier-config": "2.0.7",
|
||||||
"@types/node": "24.10.9",
|
"@types/node": "24.12.2",
|
||||||
"bob-the-bundler": "7.0.1",
|
"bob-the-bundler": "7.0.1",
|
||||||
"cypress": "13.17.0",
|
"cypress": "13.17.0",
|
||||||
"dotenv": "16.4.7",
|
"dotenv": "16.4.7",
|
||||||
|
|
|
||||||
|
|
@ -61,7 +61,7 @@
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@apollo/composition": "2.13.2",
|
"@apollo/composition": "2.13.2",
|
||||||
"@types/node": "24.10.9",
|
"@types/node": "24.12.2",
|
||||||
"esbuild": "0.25.9",
|
"esbuild": "0.25.9",
|
||||||
"fastify": "5.8.3",
|
"fastify": "5.8.3",
|
||||||
"graphql": "16.9.0"
|
"graphql": "16.9.0"
|
||||||
|
|
|
||||||
|
|
@ -76,7 +76,7 @@
|
||||||
"@tanstack/router-plugin": "^1.154.13",
|
"@tanstack/router-plugin": "^1.154.13",
|
||||||
"@types/crypto-js": "^4.2.2",
|
"@types/crypto-js": "^4.2.2",
|
||||||
"@types/lodash": "^4.17.23",
|
"@types/lodash": "^4.17.23",
|
||||||
"@types/node": "24.10.9",
|
"@types/node": "24.12.2",
|
||||||
"@types/react": "18.3.18",
|
"@types/react": "18.3.18",
|
||||||
"@types/react-dom": "18.3.5",
|
"@types/react-dom": "18.3.5",
|
||||||
"@vitejs/plugin-react": "^5.1.2",
|
"@vitejs/plugin-react": "^5.1.2",
|
||||||
|
|
|
||||||
|
|
@ -21,7 +21,7 @@
|
||||||
"@hive/postgres": "workspace:*",
|
"@hive/postgres": "workspace:*",
|
||||||
"@hive/service-common": "workspace:*",
|
"@hive/service-common": "workspace:*",
|
||||||
"@types/bcryptjs": "2.4.6",
|
"@types/bcryptjs": "2.4.6",
|
||||||
"@types/node": "24.10.9",
|
"@types/node": "24.12.2",
|
||||||
"@types/pg": "8.11.10",
|
"@types/pg": "8.11.10",
|
||||||
"@whatwg-node/fetch": "0.10.13",
|
"@whatwg-node/fetch": "0.10.13",
|
||||||
"bcryptjs": "2.4.3",
|
"bcryptjs": "2.4.3",
|
||||||
|
|
|
||||||
|
|
@ -21,7 +21,7 @@
|
||||||
"@sentry/node": "7.120.2",
|
"@sentry/node": "7.120.2",
|
||||||
"@sentry/types": "7.120.2",
|
"@sentry/types": "7.120.2",
|
||||||
"@tgriesser/schemats": "9.0.1",
|
"@tgriesser/schemats": "9.0.1",
|
||||||
"@types/node": "24.10.9",
|
"@types/node": "24.12.2",
|
||||||
"@types/pg": "8.11.10",
|
"@types/pg": "8.11.10",
|
||||||
"dotenv": "16.4.7",
|
"dotenv": "16.4.7",
|
||||||
"fast-json-stable-stringify": "2.1.0",
|
"fast-json-stable-stringify": "2.1.0",
|
||||||
|
|
|
||||||
566
pnpm-lock.yaml
566
pnpm-lock.yaml
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue