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.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ jobs:
restoreDeletedChangesets: true
buildScript: build:libraries
packageManager: pnpm
nodeVersion: '24.13'
nodeVersion: '24.14'
secrets:
githubToken: ${{ secrets.GITHUB_TOKEN }}
npmToken: ${{ secrets.NPM_TOKEN }}
2 changes: 1 addition & 1 deletion .github/workflows/release-alpha.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
npmTag: alpha
buildScript: build:libraries
packageManager: pnpm
nodeVersion: '24.13'
nodeVersion: '24.14'
secrets:
githubToken: ${{ secrets.GITHUB_TOKEN }}
npmToken: ${{ secrets.NPM_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .node-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
24.13
24.14.1
2 changes: 1 addition & 1 deletion deployment/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"@graphql-hive/gateway": "^2.1.19",
"@types/js-yaml": "4.0.9",
"@types/mime-types": "2.1.4",
"@types/node": "24.10.9",
"@types/node": "24.12.2",
"@types/tmp": "0.2.6",
"json-schema-to-typescript": "15.0.3",
"tmp": "0.2.5",
Expand Down
2 changes: 1 addition & 1 deletion docker/cli.dockerfile
Original file line number Diff line number Diff line change
@@ -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/*

Expand Down
2 changes: 1 addition & 1 deletion docker/migrations.dockerfile
Original file line number Diff line number Diff line change
@@ -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

Expand All @@ -9,12 +9,12 @@

ENV ENVIRONMENT=production
ENV NODE_ENV=production
ENV RELEASE=$RELEASE

Check warning on line 12 in docker/migrations.dockerfile

View workflow job for this annotation

GitHub Actions / build / dockerize (linux/arm64)

Variables should be defined before their use

UndefinedVar: Usage of undefined variable '$RELEASE' More info: https://docs.docker.com/go/dockerfile/rule/undefined-var/

Check warning on line 12 in docker/migrations.dockerfile

View workflow job for this annotation

GitHub Actions / build / dockerize (linux/amd64)

Variables should be defined before their use

UndefinedVar: Usage of undefined variable '$RELEASE' More info: https://docs.docker.com/go/dockerfile/rule/undefined-var/

LABEL org.opencontainers.image.licenses=MIT
LABEL org.opencontainers.image.title=$IMAGE_TITLE

Check warning on line 15 in docker/migrations.dockerfile

View workflow job for this annotation

GitHub Actions / build / dockerize (linux/arm64)

Variables should be defined before their use

UndefinedVar: Usage of undefined variable '$IMAGE_TITLE' More info: https://docs.docker.com/go/dockerfile/rule/undefined-var/

Check warning on line 15 in docker/migrations.dockerfile

View workflow job for this annotation

GitHub Actions / build / dockerize (linux/amd64)

Variables should be defined before their use

UndefinedVar: Usage of undefined variable '$IMAGE_TITLE' More info: https://docs.docker.com/go/dockerfile/rule/undefined-var/
LABEL org.opencontainers.image.version=$RELEASE
LABEL org.opencontainers.image.description=$IMAGE_DESCRIPTION

Check warning on line 17 in docker/migrations.dockerfile

View workflow job for this annotation

GitHub Actions / build / dockerize (linux/arm64)

Variables should be defined before their use

UndefinedVar: Usage of undefined variable '$IMAGE_DESCRIPTION' More info: https://docs.docker.com/go/dockerfile/rule/undefined-var/

Check warning on line 17 in docker/migrations.dockerfile

View workflow job for this annotation

GitHub Actions / build / dockerize (linux/amd64)

Variables should be defined before their use

UndefinedVar: Usage of undefined variable '$IMAGE_DESCRIPTION' More info: https://docs.docker.com/go/dockerfile/rule/undefined-var/
LABEL org.opencontainers.image.authors="The Guild"
LABEL org.opencontainers.image.vendor="Kamil Kisiela"
LABEL org.opencontainers.image.url="https://github.com/graphql-hive/platform"
Expand Down
2 changes: 1 addition & 1 deletion docker/services.dockerfile
Original file line number Diff line number Diff line change
@@ -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/*

Expand All @@ -9,17 +9,17 @@
COPY --from=shared . /

LABEL org.opencontainers.image.licenses=MIT
LABEL org.opencontainers.image.title=$IMAGE_TITLE

Check warning on line 12 in docker/services.dockerfile

View workflow job for this annotation

GitHub Actions / build / dockerize (linux/arm64)

Variables should be defined before their use

UndefinedVar: Usage of undefined variable '$IMAGE_TITLE' More info: https://docs.docker.com/go/dockerfile/rule/undefined-var/

Check warning on line 12 in docker/services.dockerfile

View workflow job for this annotation

GitHub Actions / build / dockerize (linux/amd64)

Variables should be defined before their use

UndefinedVar: Usage of undefined variable '$IMAGE_TITLE' More info: https://docs.docker.com/go/dockerfile/rule/undefined-var/
LABEL org.opencontainers.image.version=$RELEASE

Check warning on line 13 in docker/services.dockerfile

View workflow job for this annotation

GitHub Actions / build / dockerize (linux/arm64)

Variables should be defined before their use

UndefinedVar: Usage of undefined variable '$RELEASE' More info: https://docs.docker.com/go/dockerfile/rule/undefined-var/

Check warning on line 13 in docker/services.dockerfile

View workflow job for this annotation

GitHub Actions / build / dockerize (linux/amd64)

Variables should be defined before their use

UndefinedVar: Usage of undefined variable '$RELEASE' More info: https://docs.docker.com/go/dockerfile/rule/undefined-var/
LABEL org.opencontainers.image.description=$IMAGE_DESCRIPTION

Check warning on line 14 in docker/services.dockerfile

View workflow job for this annotation

GitHub Actions / build / dockerize (linux/arm64)

Variables should be defined before their use

UndefinedVar: Usage of undefined variable '$IMAGE_DESCRIPTION' More info: https://docs.docker.com/go/dockerfile/rule/undefined-var/

Check warning on line 14 in docker/services.dockerfile

View workflow job for this annotation

GitHub Actions / build / dockerize (linux/amd64)

Variables should be defined before their use

UndefinedVar: Usage of undefined variable '$IMAGE_DESCRIPTION' More info: https://docs.docker.com/go/dockerfile/rule/undefined-var/
LABEL org.opencontainers.image.authors="The Guild"
LABEL org.opencontainers.image.vendor="Kamil Kisiela"
LABEL org.opencontainers.image.url="https://github.com/graphql-hive/platform"
LABEL org.opencontainers.image.source="https://github.com/graphql-hive/platform"

ENV ENVIRONMENT=production
ENV RELEASE=$RELEASE

Check warning on line 21 in docker/services.dockerfile

View workflow job for this annotation

GitHub Actions / build / dockerize (linux/arm64)

Variables should be defined before their use

UndefinedVar: Usage of undefined variable '$RELEASE' More info: https://docs.docker.com/go/dockerfile/rule/undefined-var/

Check warning on line 21 in docker/services.dockerfile

View workflow job for this annotation

GitHub Actions / build / dockerize (linux/amd64)

Variables should be defined before their use

UndefinedVar: Usage of undefined variable '$RELEASE' More info: https://docs.docker.com/go/dockerfile/rule/undefined-var/
ENV PORT=$PORT

Check warning on line 22 in docker/services.dockerfile

View workflow job for this annotation

GitHub Actions / build / dockerize (linux/arm64)

Variables should be defined before their use

UndefinedVar: Usage of undefined variable '$PORT' More info: https://docs.docker.com/go/dockerfile/rule/undefined-var/

Check warning on line 22 in docker/services.dockerfile

View workflow job for this annotation

GitHub Actions / build / dockerize (linux/amd64)

Variables should be defined before their use

UndefinedVar: Usage of undefined variable '$PORT' More info: https://docs.docker.com/go/dockerfile/rule/undefined-var/

HEALTHCHECK --interval=5s \
--timeout=5s \
Expand Down
10 changes: 5 additions & 5 deletions integration-tests/docker-compose.integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ networks:

services:
local_cdn:
image: node:24.13.0-alpine3.23
image: node:24.14.1-alpine3.23
working_dir: /app
command: ['node', 'index.js']
networks:
Expand All @@ -38,7 +38,7 @@ services:
S3_BUCKET_NAME: artifacts

local_broker:
image: node:24.13.0-alpine3.23
image: node:24.14.1-alpine3.23
working_dir: /app
command: ['node', 'broker.js']
networks:
Expand Down Expand Up @@ -90,7 +90,7 @@ services:
SECRET: '${EXTERNAL_COMPOSITION_SECRET}'

external_composition:
image: node:24.13.0-alpine3.23
image: node:24.14.1-alpine3.23
working_dir: /app
command: ['node', 'example.mjs']
networks:
Expand Down Expand Up @@ -290,10 +290,10 @@ services:

# It's not part of integration tests
app:
image: node:24.13.0-alpine3.23
image: node:24.14.1-alpine3.23
command: ['npx', 'http-server']

# Redpand is used for integration tests, instead of Kafka. Zookeeper is no longer needed
zookeeper:
image: node:24.13.0-alpine3.23
image: node:24.14.1-alpine3.23
command: ['npx', 'http-server']
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"private": true,
"packageManager": "pnpm@10.18.3+sha512.bbd16e6d7286fd7e01f6b3c0b3c932cda2965c06a908328f74663f10a9aea51f1129eea615134bf992831b009eabe167ecb7008b597f40ff9bc75946aadfb08d",
"engines": {
"node": ">=24.13",
"node": ">=24.14.1",
"pnpm": ">=10.16.0"
},
"scripts": {
Expand Down Expand Up @@ -85,7 +85,7 @@
"@theguild/eslint-config": "0.12.1",
"@theguild/federation-composition": "0.22.1",
"@theguild/prettier-config": "2.0.7",
"@types/node": "24.10.9",
"@types/node": "24.12.2",
"bob-the-bundler": "7.0.1",
"cypress": "13.17.0",
"dotenv": "16.4.7",
Expand Down
2 changes: 1 addition & 1 deletion packages/libraries/external-composition/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
},
"devDependencies": {
"@apollo/composition": "2.13.2",
"@types/node": "24.10.9",
"@types/node": "24.12.2",
"esbuild": "0.25.9",
"fastify": "5.8.3",
"graphql": "16.9.0"
Expand Down
2 changes: 1 addition & 1 deletion packages/libraries/laboratory/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
"@tanstack/router-plugin": "^1.154.13",
"@types/crypto-js": "^4.2.2",
"@types/lodash": "^4.17.23",
"@types/node": "24.10.9",
"@types/node": "24.12.2",
"@types/react": "18.3.18",
"@types/react-dom": "18.3.5",
"@vitejs/plugin-react": "^5.1.2",
Expand Down
2 changes: 1 addition & 1 deletion packages/migrations/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"@hive/postgres": "workspace:*",
"@hive/service-common": "workspace:*",
"@types/bcryptjs": "2.4.6",
"@types/node": "24.10.9",
"@types/node": "24.12.2",
"@types/pg": "8.11.10",
"@whatwg-node/fetch": "0.10.13",
"bcryptjs": "2.4.3",
Expand Down
2 changes: 1 addition & 1 deletion packages/services/storage/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"@sentry/node": "7.120.2",
"@sentry/types": "7.120.2",
"@tgriesser/schemats": "9.0.1",
"@types/node": "24.10.9",
"@types/node": "24.12.2",
"@types/pg": "8.11.10",
"dotenv": "16.4.7",
"fast-json-stable-stringify": "2.1.0",
Expand Down
Loading
Loading