Skip to content

Commit

Permalink
Merge pull request #156 from Cox-Automotive/develop
Browse files Browse the repository at this point in the history
Merge develop to master
  • Loading branch information
webbbarker committed Jun 22, 2020
2 parents 08ac57a + 26e79bb commit b013fe1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
★ Release Notes: 2020-06-17
★ Release Notes: 2020-06-22
≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡

Thanks for upgrading to the latest version of the ALKS CLI!

→ [BUGFIX] Corrects an issue where the ALKS sessions command would return expired keys
→ [BUGFIX] Corrects an issue where IAM Keys would fail to generate

→ Have feedback? https://github.com/Cox-Automotive/ALKS-CLI/issues

Expand Down
2 changes: 1 addition & 1 deletion lib/iam.js
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ exports.getIAMKey = function(program, logger, alksAccount, alksRole, forceNewSes
if(!err){
utils.log(program, logger, 'storing key: ' + JSON.stringify(key));
keys.addKey(key.accessKey, key.secretKey, key.sessionToken,
key.alksAccount, key.alksRole, key.expires.toDate(), auth, true);
key.alksAccount, key.alksRole, key.expires, auth, true);
}
else if(err.message.indexOf('please check API URL') !== -1){
err = new Error(utils.getBadAccountMessage());
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "alks",
"version": "3.0.9",
"version": "3.0.10",
"description": "CLI for working with ALKS",
"main": "bin/alks",
"scripts": {
Expand Down

0 comments on commit b013fe1

Please sign in to comment.