Skip to content
Open
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
6 changes: 3 additions & 3 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: "hive-platform-demo"
services:
gateway:
image: ghcr.io/graphql-hive/gateway:1.13.5
image: ghcr.io/graphql-hive/gateway:1.16.5
depends_on:
- users_subgraph
- comments_subgraph
Expand Down Expand Up @@ -73,7 +73,7 @@ services:

# Jaeger (Telmetry)
jaeger:
image: jaegertracing/all-in-one:1.68.0
image: jaegertracing/all-in-one:1.74.0
environment:
COLLECTOR_OTLP_ENABLED: true
ports:
Expand All @@ -83,7 +83,7 @@ services:
- graphql

grafana:
image: grafana/grafana:10.4.17
image: grafana/grafana:10.4.19
networks:
- graphql
ports:
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"start": "set -e && docker compose up -d --build --force-recreate --remove-orphans"
},
"resolutions": {
"graphql": "16.10.0"
"graphql": "16.12.0"
},
"engines": {
"node": ">=22.0.0"
Expand Down
2 changes: 1 addition & 1 deletion subgraphs/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:22.14.0-slim
FROM node:22.21.1-slim

RUN apt-get update && apt-get install -y curl

Expand Down
10 changes: 5 additions & 5 deletions subgraphs/comments/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@
"start": "tsx index.ts"
},
"dependencies": {
"@apollo/server": "4.11.3",
"@apollo/subgraph": "2.10.0",
"@graphql-mesh/hmac-upstream-signature": "1.2.26",
"graphql": "16.10.0"
"@apollo/server": "4.12.2",
"@apollo/subgraph": "2.12.0",
"@graphql-mesh/hmac-upstream-signature": "1.2.32",
"graphql": "16.12.0"
},
"devDependencies": {
"tsx": "^4.16.2",
"@graphql-hive/cli": "^0.49.0",
"@graphql-hive/cli": "^0.52.0",
"@types/node": "^22.10.2"
}
}
2 changes: 1 addition & 1 deletion subgraphs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"author": "",
"license": "ISC",
"dependencies": {
"@theguild/federation-composition": "^0.18.0"
"@theguild/federation-composition": "^0.20.0"
},
"workspaces": [
"users",
Expand Down
10 changes: 5 additions & 5 deletions subgraphs/users/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
},
"dependencies": {
"@apollo/subgraph": "^2.8.3",
"@graphql-hive/cli": "0.49.1",
"graphql": "16.10.0",
"graphql-yoga": "5.13.2",
"@graphql-mesh/plugin-jwt-auth": "1.5.2",
"@graphql-mesh/hmac-upstream-signature": "1.2.26"
"@graphql-hive/cli": "0.52.1",
"graphql": "16.12.0",
"graphql-yoga": "5.16.2",
"@graphql-mesh/plugin-jwt-auth": "1.5.10",
"@graphql-mesh/hmac-upstream-signature": "1.2.32"
},
"devDependencies": {
"tsx": "^4.16.2",
Expand Down
Loading