Releases: Cox-Automotive/alks-cli
v3.21.1
Change Log Items
- Remove alks-node dependency.
- Remove node-fetch/request in favor for axios
Description
Because prior to node 18, node did not provide an http fetch api so we had to use a 3rd party library for that functionality (request/node-fetch). These 3rd party packages rely on punycode which is being deprecated in node >= v21. This PR will switch over to axios since that will relieve us of the punycode deprecation warnings.
Rally:
US1504256: [Continued] [Continued] alks-cli: Clean deprecation warnings
v3.21.0
Change Log Items
- Ensures all errors are logs
- Adds a log file for viewing debug logs of previous commands
Description
Makes future issues easier to debug by logging all errors and producing a log file that can be referred to for diagnosing issues even if the user can't reproduce them afterward
v3.20.2
v3.20.1
v3.20.0
Change Log Items
- Adds a linux flag to force
export
envvar format
Description
I can move the export
flag above linux
to have it fall through to linux
instead of default. What do you guys think?
Closing the initial PR and opening this one to apply the proper labels.
v3.19.1
v3.19.0
v3.18.0
v3.17.1
Change Log Items
- Alters account JSON output to be an object indexed by accountId
Description
Moving from a 2D Array to the following:
{
"955007298069": {
"accountAlias": "awsxtimemcp",
"roles": [
{
"role": "Security",
"isIamActive": false
},
{
"role": "Admin",
"isIamActive": true
}
]
},
"085685109815": {
"accountAlias": "awsxtimemcpnp",
"roles": [
{
"role": "Security",
"isIamActive": false
}
]
}
}