Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
1.3.1 (TBD)
1.3.1 (April 19, 2022)
- Bugfixing - Added peer dependencies to avoid issues when requiring some third-party dependencies used by modules of the package (Related to issue https://github.com/splitio/javascript-client/issues/662).
- Bugfixing - Updated `ready` method to rejects the promise with an Error object instead of a string value (Related to issue https://github.com/splitio/javascript-client/issues/654).

1.3.0 (April 6, 2022)
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 14 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@splitsoftware/splitio-commons",
"version": "1.3.0",
"version": "1.3.1",
"description": "Split Javascript SDK common components",
"main": "cjs/index.js",
"module": "esm/index.js",
Expand Down Expand Up @@ -46,6 +46,18 @@
"dependencies": {
"tslib": "^2.3.1"
},
"peerDependencies": {
"js-yaml": "^3.13.1",
"ioredis": "^4.28.0"
},
"peerDependenciesMeta": {
"js-yaml": {
"optional": true
},
"ioredis": {
"optional": true
}
},
"devDependencies": {
"@types/google.analytics": "0.0.40",
"@types/ioredis": "^4.28.0",
Expand All @@ -62,7 +74,7 @@
"ioredis": "^4.28.0",
"jest": "^27.2.3",
"jest-localstorage-mock": "^2.4.3",
"js-yaml": "^3.14.0",
"js-yaml": "^3.13.1",
"lodash": "^4.17.21",
"node-fetch": "^2.6.7",
"redis-server": "1.2.2",
Expand Down