Skip to content

Commit d3ebe39

Browse files
Merge pull request #218 from splitio/update-node
Prepare release v2.8.1
2 parents 83dc858 + ec22f80 commit d3ebe39

File tree

6 files changed

+18
-9
lines changed

6 files changed

+18
-9
lines changed

.github/workflows/test.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,21 @@ jobs:
99
build-and-test:
1010
name: Build and test
1111
runs-on: ubuntu-latest
12+
strategy:
13+
fail-fast: false
14+
matrix:
15+
version:
16+
- '18.18'
17+
- '22.20'
18+
- '24.10'
1219
steps:
1320
- name: Checkout code
1421
uses: actions/checkout@v5
1522

16-
- name: Install Node.js
23+
- name: Install Node.js v${{ matrix.version }}
1724
uses: actions/setup-node@v5
1825
with:
19-
node-version: 18.18.0
26+
node-version: ${{ matrix.version }}
2027

2128
- run: npm ci
2229
- run: npm run lint

CHANGES.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2.8.1 (Oct 13, 2025)
2+
- Updated base image to node:24.10.0-alpine3.22
3+
14
2.8.0 (Jul 23, 2025)
25
- Updated base image to node:24.3.0-alpine3.22
36
- Updated @splitsoftware/splitio package to version 11.4.1 that includes:
@@ -6,7 +9,6 @@
69
- Added a new optional argument to the client `getTreatment` methods to allow passing additional evaluation options, such as a map of properties to append to the generated impressions sent to Split backend. Read more in our docs.
710
- Added support for the new impressions tracking toggle available on feature flags, both respecting the setting and including the new field being returned on `SplitView` type objects. Read more in our docs.
811

9-
1012
2.7.2 (Jul 4, 2025)
1113
- Updated base image to node:24.3.0-alpine3.21
1214

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Builder stage
2-
FROM node:24.3.0-alpine3.22 AS builder
2+
FROM node:24.10.0-alpine3.22 AS builder
33

44
WORKDIR /usr/src/split-evaluator
55

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

1010
# Runner stage
11-
FROM node:24.3.0-alpine3.22 AS runner
11+
FROM node:24.10.0-alpine3.22 AS runner
1212

1313
WORKDIR /usr/src/split-evaluator
1414

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ This services exposes a set of APIs to produce server side evaluation of flags b
88
[![Twitter Follow](https://img.shields.io/twitter/follow/splitsoftware.svg?style=social&label=Follow&maxAge=1529000)](https://twitter.com/intent/follow?screen_name=splitsoftware)
99

1010
## Compatibility
11-
Split Evaluator supports Node version 8 or higher.
11+
Split Evaluator supports Node version 16 or higher.
1212

1313
## Getting started
1414
Below is a simple example that describes the instantiation of Split Evaluator:

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "split-evaluator",
3-
"version": "2.8.0",
3+
"version": "2.8.1",
44
"description": "Split-Evaluator",
55
"repository": "splitio/split-evaluator",
66
"homepage": "https://github.com/splitio/split-evaluator#readme",

0 commit comments

Comments
 (0)