Skip to content

Commit aad146d

Browse files
Merge pull request #198 from splitio/development
release v2.7.1
2 parents 9f07145 + ebdc9be commit aad146d

7 files changed

Lines changed: 1915 additions & 3073 deletions

File tree

.github/workflows/docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
ARTIFACTORY_TOKEN=${{ secrets.ARTIFACTORY_TOKEN }}
7070
7171
- name: Scan container using Lacework
72-
uses: lacework/lw-scanner-action@v1.4.1
72+
uses: lacework/lw-scanner-action@v1.4.5
7373
with:
7474
LW_ACCOUNT_NAME: ${{ secrets.LW_ACCOUNT_NAME }}
7575
LW_ACCESS_TOKEN: ${{ secrets.LW_ACCESS_TOKEN }}

CHANGES.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
2.7.1 (Jun 25, 2025)
2+
- Fixed OpenAPI spec fot /manager/splits
3+
- Updated base image to node:24.2.0-alpine3.22
4+
15
2.7.0 (Dec 20, 2024)
26
- Added support to arm64 images.
37
- Updated base image to node:20.13.1-alpine3.20

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:20.13.1-alpine3.20 AS builder
2+
FROM node:24.2.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:20.13.1-alpine3.20 AS runner
11+
FROM node:24.2.0-alpine3.22 AS runner
1212

1313
WORKDIR /usr/src/split-evaluator
1414

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright © 2024 Split Software, Inc.
1+
Copyright © 2025 Split Software, Inc.
22

33
Licensed under the Apache License, Version 2.0 (the "License");
44
you may not use this file except in compliance with the License.

openapi/openapi.yaml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -169,9 +169,12 @@ components:
169169
on: "{\"color\": \"blue\"}"
170170
off: "{\"color\": \"black\"}"
171171
Splits:
172-
type: array
173-
items:
174-
$ref: '#/components/schemas/Split'
172+
type: object
173+
properties:
174+
splits:
175+
type: array
176+
items:
177+
$ref: '#/components/schemas/Split'
175178

176179
security:
177180
- Authorization: []

0 commit comments

Comments
 (0)