Skip to content

Commit

Permalink
Polishing
Browse files Browse the repository at this point in the history
  • Loading branch information
EmilianoSanchez committed Dec 17, 2024
1 parent 00cf120 commit 1b3b0d2
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
2.6.1 (Dec 17, 2024)
- Updated base image to node:20.13.1-alpine3.20
- Updated @splitsoftware/splitio package to version 11.0.3 that includes vulnerability fixes and improvements.
- Updated @splitsoftware/splitio package to version 11.0.3 that includes vulnerability fixes and other improvements.

2.6.0 (May 16, 2024)
- Updated @splitsoftware/splitio package to version 10.26.0 that includes:
Expand Down
2 changes: 1 addition & 1 deletion client/__tests__/track.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ describe('track', () => {
];
const key = getLongKey();
const response = await request(app)
.get(`/client/track?key=${key}&event-type=my-event&traffic-type=my-traffic&value=1`)
.get(`/client/track?key=${key}&event-type=my-event&traffic-type=my-traffic&value=1`)
.set('Authorization', 'test');
expectErrorContaining(response, 400, expected);
});
Expand Down
2 changes: 0 additions & 2 deletions listener/__tests__/ip-addresses.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@ describe('ip addresses', () => {
await new Promise(resolve => setTimeout(resolve, 100));
expect(ip).toBe(false);
expect(hostname).toBe(false);
await Promise.resolve();
});
});

Expand All @@ -80,7 +79,6 @@ describe('ip addresses', () => {
await new Promise(resolve => setTimeout(resolve, 100));
expect(ip).toBe(localIp.address());
expect(hostname).toBe(os.hostname());
await Promise.resolve();
});
});
});

0 comments on commit 1b3b0d2

Please sign in to comment.