Skip to content

Commit b9fb371

Browse files
authored
[FSSDK-11823] prepare release 6.1.0 (#1082)
1 parent 1fe421e commit b9fb371

File tree

8 files changed

+19
-8
lines changed

8 files changed

+19
-8
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,17 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
66
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
77

8+
## [6.1.0] - September 8, 2025
9+
10+
### New Features
11+
12+
- Added multi-region support for logx events ([#1072](https://github.com/optimizely/javascript-sdk/pull/1072))
13+
14+
### Performance Improvements
15+
16+
- Improved performance of variations parsing from datafile ([#1080](https://github.com/optimizely/javascript-sdk/pull/1080))
17+
- General cleanups and improvements in event processing ([#1073](https://github.com/optimizely/javascript-sdk/pull/1073))
18+
819
## [6.0.0] - May 29, 2025
920

1021
### Breaking Changes

lib/feature_toggle.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,6 @@
3131
* flag and all associated checks can be removed from the codebase.
3232
*/
3333

34-
export const holdout = () => true as const;
34+
export const holdout = () => false as const;
3535

3636
export type IfActive<T extends () => boolean, Y, N = unknown> = ReturnType<T> extends true ? Y : N;

lib/index.browser.tests.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ describe('javascript-sdk (Browser)', function() {
152152
});
153153

154154
assert.instanceOf(optlyInstance, Optimizely);
155-
assert.equal(optlyInstance.clientVersion, '6.0.0');
155+
assert.equal(optlyInstance.clientVersion, '6.1.0');
156156
});
157157

158158
it('should set the JavaScript client engine and version', function() {

lib/index.node.tests.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ describe('optimizelyFactory', function() {
8888
});
8989

9090
assert.instanceOf(optlyInstance, Optimizely);
91-
assert.equal(optlyInstance.clientVersion, '6.0.0');
91+
assert.equal(optlyInstance.clientVersion, '6.1.0');
9292
});
9393
// TODO: user will create and inject an event processor
9494
// these tests will be refactored accordingly

lib/index.react_native.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ describe('javascript-sdk/react-native', () => {
9292
expect(optlyInstance).toBeInstanceOf(Optimizely);
9393
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
9494
// @ts-ignore
95-
expect(optlyInstance.clientVersion).toEqual('6.0.0');
95+
expect(optlyInstance.clientVersion).toEqual('6.1.0');
9696
});
9797

9898
it('should set the React Native JS client engine and javascript SDK version', () => {

lib/utils/enums/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ export const CONTROL_ATTRIBUTES = {
4141
export const JAVASCRIPT_CLIENT_ENGINE = 'javascript-sdk';
4242
export const NODE_CLIENT_ENGINE = 'node-sdk';
4343
export const REACT_NATIVE_JS_CLIENT_ENGINE = 'react-native-js-sdk';
44-
export const CLIENT_VERSION = '6.0.0';
44+
export const CLIENT_VERSION = '6.1.0';
4545

4646
/*
4747
* Represents the source of a decision for feature management. When a feature

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": "@optimizely/optimizely-sdk",
3-
"version": "6.0.0",
3+
"version": "6.1.0",
44
"description": "JavaScript SDK for Optimizely Feature Experimentation, Optimizely Full Stack (legacy), and Optimizely Rollouts",
55
"main": "./dist/index.node.min.js",
66
"browser": "./dist/index.browser.es.min.js",

0 commit comments

Comments
 (0)