Skip to content

Commit 2fffb5c

Browse files
author
Derek Hammond
authored
chore(react-sdk): Prepare for 1.2.0-alpha.1 release (#29)
## Summary - Updated minor version of core SDK (`@optimizely/optimizely-sdk`) dependency which, for unrecognized events sent via `.track()`, will impact the log levels in this SDK as well. - Bumps the version to `1.2.0-alpha.1` - Updates changelog
1 parent 95816b6 commit 2fffb5c

File tree

5 files changed

+416
-434
lines changed

5 files changed

+416
-434
lines changed

CHANGELOG.md

+9-1
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,32 @@
11
# Changelog
2+
23
All notable changes to this project will be documented in this file.
34

45
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
56
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
67

78
## [Unreleased]
89

10+
## [1.2.0-alpha.1] - March 5th, 2020
11+
12+
### New Features
13+
14+
- Updated minor version of core SDK (`@optimizely/optimizely-sdk`) dependency which, for unrecognized events sent via `.track()`, will impact the log levels in this SDK as well.
15+
916
## [1.1.0] - January 30th, 2020
1017

1118
### New Features
19+
1220
- Added a new API to get project configuration static data.
1321
- Call `getOptimizelyConfig()` to get a snapshot of project configuration static data.
1422
- It returns an `OptimizelyConfig` instance which includes a datafile revision number, all experiments, and feature flags mapped by their key values.
1523
- Added caching for `getOptimizelyConfig` - `OptimizelyConfig` object will be cached and reused for the lifetime of the datafile.
1624
- For details, refer to our documentation page: [https://docs.developers.optimizely.com/full-stack/docs/optimizelyconfig-react](https://docs.developers.optimizely.com/full-stack/docs/optimizelyconfig-react).
1725

18-
1926
## [1.0.1] - November 18th, 2019
2027

2128
### Fixed
29+
2230
- Javascript SDK Client version was being sent in dispatched events. Changed it to send React SDK client version.
2331
- Updated `@optimizely/optimizely-sdk to 3.3.2.` Includes a better default logger for React Native and a fix for an error message logged when a user is bucketed to empty space.
2432
- Replaced usage of `react-broadcast` with the native React Context API

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@optimizely/react-sdk",
3-
"version": "1.1.0",
3+
"version": "1.2.0-alpha.1",
44
"description": "React SDK for Optimizely Full Stack and Optimizely Rollouts",
55
"homepage": "https://github.com/optimizely/react-sdk",
66
"license": "Apache-2.0",
@@ -28,7 +28,7 @@
2828
},
2929
"dependencies": {
3030
"@optimizely/js-sdk-logging": "^0.1.0",
31-
"@optimizely/optimizely-sdk": "3.4.1",
31+
"@optimizely/optimizely-sdk": "3.6.0-alpha.1",
3232
"hoist-non-react-statics": "^3.3.0",
3333
"prop-types": "^15.6.2",
3434
"utility-types": "^2.1.0"

0 commit comments

Comments
 (0)