Skip to content

Commit d8cd2d2

Browse files
committed
updates
1 parent bd77096 commit d8cd2d2

8 files changed

Lines changed: 12 additions & 9 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ 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.4.0] - May 4, 2026
8+
## [6.4.0] - May 7, 2026
99

1010
### New Features
1111

@@ -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+
### Bug Fixes
21+
- Export `UserProfileServiceAsync` type
22+
2023

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

lib/export_types.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,7 @@ export type {
9595
Event,
9696
DatafileOptions,
9797
UserProfileService,
98+
UserProfileServiceAsync,
9899
UserProfile,
99100
ListenerPayload,
100101
OptimizelyDecision,

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

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.

srcclr.yml

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)