You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,10 +2,12 @@
2
2
3
3
### Features
4
4
5
+
- Sync overall speed up and massive reducing in memory consumption
5
6
- SSH `--through`: `awless ssh my-priv-inst --through my-pub-inst` allow you to connect to a private instance by going through a public one in ths same VPC. You need to have the same keypair (SSH key) on both instances.
6
7
- Flag `--profile-sync` on `awless sync` to enable live profiling. Will dump `mem` and `cpu` Go profiling files for later inspection
7
8
-[#109](https://github.com/wallix/awless/issues/109): Support caching of STS credentials for Multi-Factor Authentication.
8
9
-[#126](https://github.com/wallix/awless/issues/126): Flag `--no-alias` in `awless show` force the display of IDs in relations.
10
+
-[#126](https://github.com/wallix/awless/issues/126): Reverse sorting when listing resources with flag `--reverse`
9
11
-[#120](https://github.com/wallix/awless/issues/120): Profile info is now included in execution logs and appended when suggesting revert action
10
12
-[#82](https://github.com/wallix/awless/issues/82): Better template TAB completion (e.g. complete list of parameters)
11
13
@@ -18,7 +20,7 @@
18
20
19
21
### Fixes
20
22
21
-
-Reduce usage of memory when syncing, mainly for access resources (see issue #116)
23
+
-[#116](https://github.com/wallix/awless/issues/116) No more sync Out Of Memory
Copy file name to clipboardExpand all lines: commands/list.go
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -40,6 +40,7 @@ var (
40
40
listOnlyIDsbool
41
41
noHeadersFlagbool
42
42
sortBy []string
43
+
reverseFlagbool
43
44
)
44
45
45
46
funcinit() {
@@ -69,6 +70,7 @@ func init() {
69
70
listCmd.PersistentFlags().StringSliceVar(&listingTagValueFiltersFlag, "tag-value", []string{}, "Filter EC2 resources given a tag value only (case sensitive!). Ex: --tag-value Staging")
70
71
listCmd.PersistentFlags().BoolVar(&listOnlyIDs, "ids", false, "List only ids")
71
72
listCmd.PersistentFlags().BoolVar(&noHeadersFlag, "no-headers", false, "Do not display headers")
73
+
listCmd.PersistentFlags().BoolVar(&reverseFlag, "reverse", false, "Use in conjunction with --sort to reverse sort")
72
74
listCmd.PersistentFlags().StringSliceVar(&sortBy, "sort", []string{"Id"}, "Sort tables by column(s) name(s)")
0 commit comments