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
3 changes: 3 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
2.7.2 (Jul 4, 2025)
- Updated base image to node:24.3.0-alpine3.21

2.7.1 (Jun 25, 2025)
- Fixed OpenAPI spec fot /manager/splits
- Updated base image to node:24.2.0-alpine3.22
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Builder stage
FROM node:24.2.0-alpine3.22 AS builder
FROM node:24.3.0-alpine3.21 AS builder

WORKDIR /usr/src/split-evaluator

Expand All @@ -8,7 +8,7 @@ COPY package.json package-lock.json ./
RUN npm install --only=production

# Runner stage
FROM node:24.2.0-alpine3.22 AS runner
FROM node:24.3.0-alpine3.21 AS runner

WORKDIR /usr/src/split-evaluator

Expand Down
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "split-evaluator",
"version": "2.7.1",
"version": "2.7.2",
"description": "Split-Evaluator",
"repository": "splitio/split-evaluator",
"homepage": "https://github.com/splitio/split-evaluator#readme",
Expand Down