Skip to content

Commit bdc6ca4

Browse files
authored
Merge pull request #172 from Cox-Automotive/develop
Merge develop to master
2 parents 9ee9488 + d7bc751 commit bdc6ca4

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

changelog.txt

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
1-
★ Release Notes: 2020-10-20
1+
★ Release Notes: 2020-11-10
22
≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡
33

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

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

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

lib/keys.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ exports.getKeyOutput = function(format, key, profile, force){
268268
'AccessKeyId': key.accessKey,
269269
'SecretAccessKey': key.secretKey,
270270
'SessionToken': key.sessionToken,
271-
'Expiration': keyExpires
271+
'Expiration': moment(key.expires).toISOString()
272272
});
273273
}
274274
else{

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "alks",
3-
"version": "3.1.1",
3+
"version": "3.1.2",
44
"description": "CLI for working with ALKS",
55
"main": "bin/alks",
66
"scripts": {

0 commit comments

Comments
 (0)