This repository was archived by the owner on Jan 27, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed
Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 11# awsx changelog
22
3+ ## 1.4.1 (April 4, 2022)
4+
5+ - Fixing the value of the ` root profile ` option to correspond with the name of the profile.
6+
37## 1.4.0 (January 4, 2022)
48
59- Warn users when secret key X days old
Original file line number Diff line number Diff line change 11{
22 "name" : " awsx" ,
33 "description" : " AWS CLI profile switcher with MFA support" ,
4- "version" : " 1.4.0 " ,
4+ "version" : " 1.4.1 " ,
55 "author" : " Neo Financial Engineering <engineering@neofinancial.com>" ,
66 "license" : " MIT" ,
77 "repository" : {
Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ const switchAssumeRoleProfile = async (
6161 console . error ( chalk . red ( `No profile '${ assumeRoleProfileName } ' found.` ) ) ;
6262 }
6363 } else if ( assumeRoleProfiles . length > 0 ) {
64- const rootProfileOption = { title : 'root profile' , value : 'root profile' } ;
64+ const rootProfileOption = { title : 'root profile' , value : parentProfileName } ;
6565 const choices = [
6666 rootProfileOption ,
6767 ...assumeRoleProfiles . map ( ( profile ) => ( { title : profile , value : profile } ) ) ,
You can’t perform that action at this time.
0 commit comments