Skip to content

Commit

Permalink
Merge pull request #172 from Cox-Automotive/develop
Browse files Browse the repository at this point in the history
Merge develop to master
  • Loading branch information
webbbarker authored Nov 11, 2020
2 parents 9ee9488 + d7bc751 commit bdc6ca4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
5 changes: 2 additions & 3 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
★ Release Notes: 2020-10-20
★ Release Notes: 2020-11-10
≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡

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

→ Bumps alks-node version which includes better error handling for our internal ALKS calls
→ Updates syntax to be up to date with ES6
→ Corrects a bug with date formatting for the AWS output type

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

Expand Down
2 changes: 1 addition & 1 deletion lib/keys.js
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ exports.getKeyOutput = function(format, key, profile, force){
'AccessKeyId': key.accessKey,
'SecretAccessKey': key.secretKey,
'SessionToken': key.sessionToken,
'Expiration': keyExpires
'Expiration': moment(key.expires).toISOString()
});
}
else{
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.1.1",
"version": "3.1.2",
"description": "CLI for working with ALKS",
"main": "bin/alks",
"scripts": {
Expand Down

0 comments on commit bdc6ca4

Please sign in to comment.