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
5 changes: 5 additions & 0 deletions .changeset/verify-express5-node24.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"seamless-cli": patch
---

Fix the conformance harness (`seamless verify --local`) failing to build after the ecosystem moved to Express 5 on Node 24. The verify adapter app pinned `express@^4`, but `@seamless-auth/express` now requires `express@>=5` as a peer, so installing the locally-built SDK tarball aborted with an `ERESOLVE` peer conflict and the Docker build failed. The adapter now depends on `express@^5.1.0` (and `@seamless-auth/express@^0.8.0`), and the verify Docker images are bumped from `node:20` to `node:24` to match the ecosystem's supported runtime.
2 changes: 1 addition & 1 deletion verify/adapter-app/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20-alpine
FROM node:24-alpine
WORKDIR /app
RUN apk add --no-cache curl
COPY package.json ./
Expand Down
4 changes: 2 additions & 2 deletions verify/adapter-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
"type": "module",
"description": "Minimal adopter backend for the conformance harness — real @seamless-auth/express with a capture transport.",
"dependencies": {
"@seamless-auth/express": "^0.6.0",
"@seamless-auth/express": "^0.8.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"express": "^4.19.2"
"express": "^5.1.0"
}
}
2 changes: 1 addition & 1 deletion verify/docker-compose.verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ services:
additional_contexts:
sdk: ./react-vendor
dockerfile_inline: |
FROM node:20-slim AS builder
FROM node:24-slim AS builder
WORKDIR /app
COPY package.json package-lock.json ./
RUN npm ci
Expand Down
Loading