Skip to content

Commit e1626d6

Browse files
Merge pull request #379 from rdkcentral/release/5.3.1
Release - v5.3.1
2 parents 6d32542 + f7a6445 commit e1626d6

File tree

6 files changed

+17
-7
lines changed

6 files changed

+17
-7
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## v5.3.1
4+
*23 feb 2023*
5+
6+
- Fixed bug where localCookie library could not loaded correctly when using webpack (#377)
7+
38
## v5.3.0
49
*16 feb 2023*
510

docs/changelog.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## v5.3.1
4+
*23 feb 2023*
5+
6+
- Fixed bug where localCookie library could not loaded correctly when using webpack (#377)
7+
38
## v5.3.0
49
*16 feb 2023*
510

docs/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@lightningjs/sdk",
3-
"version": "5.2.0",
3+
"version": "5.3.1",
44
"license": "Apache-2.0",
55
"types": "index.d.ts",
66
"scripts": {
@@ -26,10 +26,10 @@
2626
"dependencies": {
2727
"@babel/polyfill": "^7.11.5",
2828
"@lightningjs/core": "^2.7.0",
29-
"@metrological/sdk": "github:metrological/metrological-sdk",
29+
"@metrological/sdk": "^1.0.0",
3030
"@michieljs/execute-as-promise": "^1.0.0",
3131
"deepmerge": "^4.2.2",
32-
"localCookie": "github:WebPlatformForEmbedded/localCookie",
32+
"localcookies": "^2.0.0",
3333
"shelljs": "^0.8.5",
3434
"url-polyfill": "^1.1.10",
3535
"whatwg-fetch": "^3.0.0"

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.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@lightningjs/sdk",
3-
"version": "5.3.0",
3+
"version": "5.3.1",
44
"license": "Apache-2.0",
55
"types": "index.d.ts",
66
"scripts": {

src/Storage/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
*/
1919

2020
import Settings from '../Settings'
21-
import localCookie from 'localcookies'
21+
import localCookie from 'localcookies/module/localCookie.js'
2222

2323
let namespace
2424
let lc

0 commit comments

Comments
 (0)