Skip to content

Commit 7786110

Browse files
committed
Prepare for 2.7.0 release
1 parent e39f377 commit 7786110

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
77

88
## [Unreleased]
99

10+
## [2.7.0] - September 16th, 2021
11+
Upgrade `@optimizely/optimizely-sdk` to [4.7.0](https://github.com/optimizely/javascript-sdk/releases/tag/v4.7.0):
12+
- Added new public properties to `OptimizelyConfig` . See [@optimizely/optimizely-sdk Release 4.7.0](https://github.com/optimizely/javascript-sdk/releases/tag/v4.7.0) for details
13+
- Deprecated `OptimizelyFeature.experimentsMap` of `OptimizelyConfig`. See [@optimizely/optimizely-sdk Release 4.7.0](https://github.com/optimizely/javascript-sdk/releases/tag/v4.7.0) for details
14+
- For more information, refer to our documentation page: [https://docs.developers.optimizely.com/full-stack/v4.0/docs/optimizelyconfig-react](https://docs.developers.optimizely.com/full-stack/v4.0/docs/optimizelyconfig-react)
15+
1016
## [2.6.3] - July 29th, 2021
1117

1218
### Bug fixes

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@optimizely/react-sdk",
3-
"version": "2.6.3",
3+
"version": "2.7.0",
44
"description": "React SDK for Optimizely Full Stack and Optimizely Rollouts",
55
"homepage": "https://github.com/optimizely/react-sdk",
66
"license": "Apache-2.0",

src/client.spec.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ describe('ReactSDKClient', () => {
100100
expect(createInstanceSpy).toBeCalledWith({
101101
...config,
102102
clientEngine: 'react-sdk',
103-
clientVersion: '2.6.3',
103+
clientVersion: '2.7.0',
104104
});
105105
});
106106

src/client.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export type OnReadyResult = {
3737
};
3838

3939
const REACT_SDK_CLIENT_ENGINE = 'react-sdk';
40-
const REACT_SDK_CLIENT_VERSION = '2.6.3';
40+
const REACT_SDK_CLIENT_VERSION = '2.7.0';
4141

4242
export interface ReactSDKClient extends Omit<optimizely.Client, 'createUserContext'> {
4343
user: UserInfo;

0 commit comments

Comments
 (0)