Skip to content

Commit

Permalink
chore: Prepare for 2.6.2 release (#116)
Browse files Browse the repository at this point in the history
* Prepare for 2.6.2 release

* Fix typo
  • Loading branch information
yavorona authored Jul 15, 2021
1 parent 92b230c commit 57b68da
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 8 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

## [2.6.2] - July 15th, 2021

### Bug fixes
- Upgrade `@optimizely/optimizely-sdk` to [4.6.2](https://github.com/optimizely/javascript-sdk/releases/tag/v4.6.2). Fixed incorrect impression event payload in projects containing multiple flags with duplicate key rules. See [@optimizely/optimizely-sdk Release 4.6.2](https://github.com/optimizely/javascript-sdk/releases/tag/v4.6.2) for more details.

## [2.6.1] - July 8th, 2021

### Bug fixes
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@optimizely/react-sdk",
"version": "2.6.1",
"version": "2.6.2",
"description": "React SDK for Optimizely Full Stack and Optimizely Rollouts",
"homepage": "https://github.com/optimizely/react-sdk",
"license": "Apache-2.0",
Expand Down Expand Up @@ -29,7 +29,7 @@
},
"dependencies": {
"@optimizely/js-sdk-logging": "^0.1.0",
"@optimizely/optimizely-sdk": "^4.6.1",
"@optimizely/optimizely-sdk": "^4.6.2",
"hoist-non-react-statics": "^3.3.0",
"prop-types": "^15.6.2",
"utility-types": "^2.1.0 || ^3.0.0"
Expand Down
2 changes: 1 addition & 1 deletion src/client.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ describe('ReactSDKClient', () => {
expect(createInstanceSpy).toBeCalledWith({
...config,
clientEngine: 'react-sdk',
clientVersion: '2.6.1',
clientVersion: '2.6.2',
});
});

Expand Down
2 changes: 1 addition & 1 deletion src/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export type OnReadyResult = {
};

const REACT_SDK_CLIENT_ENGINE = 'react-sdk';
const REACT_SDK_CLIENT_VERSION = '2.6.1';
const REACT_SDK_CLIENT_VERSION = '2.6.2';

export interface ReactSDKClient extends Omit<optimizely.Client, 'createUserContext'> {
user: UserInfo;
Expand Down
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -506,10 +506,10 @@
dependencies:
uuid "^3.3.2"

"@optimizely/optimizely-sdk@^4.6.1":
version "4.6.1"
resolved "https://registry.yarnpkg.com/@optimizely/optimizely-sdk/-/optimizely-sdk-4.6.1.tgz#40c98a6d50d23c1f6066a607a04aa8fa343ea4b5"
integrity sha512-cMOAssKYigNfVQtYH5ZfwG735DFhVay5nx+dgzdwOvJaYR+hazvd0Mw/4PdEvrC0KUIo7186O5qlixRebar9hA==
"@optimizely/optimizely-sdk@^4.6.2":
version "4.6.2"
resolved "https://registry.yarnpkg.com/@optimizely/optimizely-sdk/-/optimizely-sdk-4.6.2.tgz#2f6ed23d88970f9f3420286f93ed6120dfcf14ea"
integrity sha512-ohXLafoShX6i5daZWbu+hHpAtw8i9QTOiwkHMRNIwBc70fcTDpUwl0UXsGbyJAmF1rTgcIknvqZKifVXLr/hgg==
dependencies:
"@optimizely/js-sdk-datafile-manager" "^0.8.1"
"@optimizely/js-sdk-event-processor" "^0.8.2"
Expand Down

0 comments on commit 57b68da

Please sign in to comment.