Skip to content

Commit 89d5067

Browse files
authored
fix stubbing issues and prep for release 0.3.1 for logging package (#711)
## Summary Upgrading to latest typescript version is causing stubbing issues and failing some unit tests. Downgrading the typescript version to `3.8.x` temporarily to fix this. ## Test plan - Manually tested thoroughly. - All existing tests pass
1 parent a7f5050 commit 89d5067

File tree

3 files changed

+11
-6
lines changed

3 files changed

+11
-6
lines changed

packages/logging/CHANGELOG.MD

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
77
## [Unreleased]
88
Changes that have landed but are not yet released.
99

10+
## [0.3.1] - October 13, 2021
11+
12+
### Bug Fixes
13+
- Downgrade typescript version to `3.8.x` due to stubbing issues.
14+
1015
## [0.3.0] - October 8, 2021
1116

1217
### New Features

packages/logging/package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/logging/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@optimizely/js-sdk-logging",
3-
"version": "0.3.0",
3+
"version": "0.3.1",
44
"description": "Optimizely Full Stack Core Logging",
55
"author": "jordangarcia <[email protected]>",
66
"homepage": "https://github.com/optimizely/javascript-sdk/tree/master/packages/logging",
@@ -44,6 +44,6 @@
4444
"@types/jest": "^23.3.12",
4545
"jest": "^23.6.0",
4646
"ts-jest": "^23.10.5",
47-
"typescript": "^4.0.3"
47+
"typescript": "3.8.x"
4848
}
4949
}

0 commit comments

Comments
 (0)