Skip to content

Commit e279c73

Browse files
committed
updates
1 parent bd77096 commit e279c73

7 files changed

Lines changed: 1103 additions & 1724 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,10 @@ and confidence intervals.
1616
See [Feature Rollout docs](https://support.optimizely.com/hc/en-us/articles/45552846481037-Run-Feature-Rollouts-in-Feature-Experimentation) for more information.
1717

1818
- Add Feature Rollout support ([#1140](https://github.com/optimizely/javascript-sdk/pull/1140))
19-
- Remove SourceClear scan workflow due to security vulnerability ([#1139](https://github.com/optimizely/javascript-sdk/pull/1139))
19+
20+
### Changed
21+
- Updated `uuid` dependency from `^10.0.0` to `^13.0.2`
22+
2023

2124
## [6.3.1] - January 26, 2026
2225

lib/index.browser.tests.js

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

155155
assert.instanceOf(optlyInstance, Optimizely);
156-
assert.equal(optlyInstance.clientVersion, '6.3.1');
156+
assert.equal(optlyInstance.clientVersion, '6.4.0');
157157
});
158158

159159
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.3.1');
91+
assert.equal(optlyInstance.clientVersion, '6.4.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.3.1');
95+
expect(optlyInstance.clientVersion).toEqual('6.4.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
@@ -44,7 +44,7 @@ export const CONTROL_ATTRIBUTES = {
4444
export const JAVASCRIPT_CLIENT_ENGINE = 'javascript-sdk';
4545
export const NODE_CLIENT_ENGINE = 'node-sdk';
4646
export const REACT_NATIVE_JS_CLIENT_ENGINE = 'react-native-js-sdk';
47-
export const CLIENT_VERSION = '6.3.1';
47+
export const CLIENT_VERSION = '6.4.0';
4848

4949
/*
5050
* Represents the source of a decision for feature management. When a feature

0 commit comments

Comments
 (0)