Skip to content

Commit af0f669

Browse files
authored
Version 1.1.3 (#33)
* Don't log sensitive data * Update dependencies * Set minimum node version to v12.
1 parent 71709ca commit af0f669

File tree

5 files changed

+1455
-429
lines changed

5 files changed

+1455
-429
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 1.1.3 (Sept 25, 2020)
2+
* Don't log sensitive data
3+
* Update dependencies
4+
* Set minimum node version to v12.
5+
16
## 1.1.2 (March 24, 2020)
27

38
### Bug fixes

circle.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: 2
22
jobs:
33
test:
44
docker:
5-
- image: circleci/node:8-stretch
5+
- image: circleci/node:12-stretch
66
steps:
77
- checkout
88
- restore_cache:
@@ -21,4 +21,4 @@ workflows:
2121
version: 2
2222
build_and_test:
2323
jobs:
24-
- test
24+
- test

lib/authentication/OAuth2AuthorizationCodeRestClient.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ export class OAuth2RestClient extends NoAuthRestClient {
2222
});
2323

2424
this.emitter.logger.info('New token fetched...');
25-
this.emitter.logger.debug('New token: %j', authTokenResponse);
2625

2726
if (authTokenResponse.statusCode >= 400) {
2827
throw new Error(`Error in authentication. Status code: ${authTokenResponse.statusCode}, Body: ${JSON.stringify(authTokenResponse.body)}`);

0 commit comments

Comments
 (0)