aspera-cli 4.22.0 → 4.24.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (114) hide show
  1. checksums.yaml +4 -4
  2. checksums.yaml.gz.sig +0 -0
  3. data/CHANGELOG.md +405 -364
  4. data/CONTRIBUTING.md +86 -29
  5. data/README.md +1856 -961
  6. data/bin/ascli +2 -1
  7. data/bin/asession +4 -4
  8. data/lib/aspera/agent/base.rb +4 -0
  9. data/lib/aspera/agent/connect.rb +20 -18
  10. data/lib/aspera/agent/desktop.rb +14 -11
  11. data/lib/aspera/agent/direct.rb +39 -31
  12. data/lib/aspera/agent/httpgw.rb +2 -2
  13. data/lib/aspera/agent/node.rb +9 -11
  14. data/lib/aspera/agent/transferd.rb +18 -11
  15. data/lib/aspera/api/aoc.rb +53 -43
  16. data/lib/aspera/api/cos_node.rb +7 -5
  17. data/lib/aspera/api/httpgw.rb +23 -22
  18. data/lib/aspera/api/node.rb +104 -22
  19. data/lib/aspera/ascmd.rb +35 -21
  20. data/lib/aspera/ascp/installation.rb +43 -43
  21. data/lib/aspera/ascp/management.rb +5 -4
  22. data/lib/aspera/assert.rb +55 -24
  23. data/lib/aspera/cli/basic_auth_plugin.rb +8 -7
  24. data/lib/aspera/cli/error.rb +1 -1
  25. data/lib/aspera/cli/extended_value.rb +28 -29
  26. data/lib/aspera/cli/formatter.rb +191 -168
  27. data/lib/aspera/cli/hints.rb +38 -4
  28. data/lib/aspera/cli/main.rb +139 -108
  29. data/lib/aspera/cli/manager.rb +51 -31
  30. data/lib/aspera/cli/plugin.rb +149 -78
  31. data/lib/aspera/cli/plugin_factory.rb +2 -2
  32. data/lib/aspera/cli/plugins/aoc.rb +217 -88
  33. data/lib/aspera/cli/plugins/ats.rb +15 -13
  34. data/lib/aspera/cli/plugins/config.rb +105 -227
  35. data/lib/aspera/cli/plugins/console.rb +49 -18
  36. data/lib/aspera/cli/plugins/cos.rb +4 -4
  37. data/lib/aspera/cli/plugins/faspex.rb +45 -51
  38. data/lib/aspera/cli/plugins/faspex5.rb +162 -163
  39. data/lib/aspera/cli/plugins/faspio.rb +6 -5
  40. data/lib/aspera/cli/plugins/httpgw.rb +2 -2
  41. data/lib/aspera/cli/plugins/node.rb +233 -247
  42. data/lib/aspera/cli/plugins/orchestrator.rb +10 -14
  43. data/lib/aspera/cli/plugins/preview.rb +26 -29
  44. data/lib/aspera/cli/plugins/server.rb +29 -28
  45. data/lib/aspera/cli/plugins/shares.rb +40 -28
  46. data/lib/aspera/cli/sync_actions.rb +101 -80
  47. data/lib/aspera/cli/transfer_agent.rb +55 -58
  48. data/lib/aspera/cli/transfer_progress.rb +29 -20
  49. data/lib/aspera/cli/version.rb +1 -1
  50. data/lib/aspera/cli/wizard.rb +160 -0
  51. data/lib/aspera/colors.rb +13 -8
  52. data/lib/aspera/command_line_builder.rb +28 -22
  53. data/lib/aspera/command_line_converter.rb +31 -0
  54. data/lib/aspera/data_repository.rb +1 -0
  55. data/lib/aspera/environment.rb +144 -100
  56. data/lib/aspera/faspex_gw.rb +1 -1
  57. data/lib/aspera/faspex_postproc.rb +3 -2
  58. data/lib/aspera/hash_ext.rb +1 -1
  59. data/lib/aspera/id_generator.rb +10 -10
  60. data/lib/aspera/keychain/base.rb +18 -0
  61. data/lib/aspera/keychain/encrypted_hash.rb +6 -12
  62. data/lib/aspera/keychain/factory.rb +9 -3
  63. data/lib/aspera/keychain/hashicorp_vault.rb +9 -6
  64. data/lib/aspera/keychain/macos_security.rb +13 -13
  65. data/lib/aspera/log.rb +70 -20
  66. data/lib/aspera/nagios.rb +5 -6
  67. data/lib/aspera/node_simulator.rb +12 -7
  68. data/lib/aspera/oauth/base.rb +6 -2
  69. data/lib/aspera/oauth/factory.rb +25 -18
  70. data/lib/aspera/oauth/jwt.rb +13 -1
  71. data/lib/aspera/oauth/url_json.rb +3 -3
  72. data/lib/aspera/oauth/web.rb +5 -3
  73. data/lib/aspera/persistency_folder.rb +2 -2
  74. data/lib/aspera/preview/file_types.rb +43 -35
  75. data/lib/aspera/preview/generator.rb +26 -13
  76. data/lib/aspera/preview/terminal.rb +10 -7
  77. data/lib/aspera/preview/utils.rb +11 -9
  78. data/lib/aspera/products/connect.rb +2 -1
  79. data/lib/aspera/products/desktop.rb +1 -1
  80. data/lib/aspera/products/other.rb +2 -2
  81. data/lib/aspera/products/transferd.rb +8 -6
  82. data/lib/aspera/proxy_auto_config.rb +1 -1
  83. data/lib/aspera/rest.rb +46 -28
  84. data/lib/aspera/rest_call_error.rb +1 -1
  85. data/lib/aspera/rest_error_analyzer.rb +1 -0
  86. data/lib/aspera/resumer.rb +1 -1
  87. data/lib/aspera/secret_hider.rb +46 -40
  88. data/lib/aspera/ssh.rb +14 -4
  89. data/lib/aspera/sync/args.schema.yaml +102 -0
  90. data/lib/aspera/sync/conf.schema.yaml +701 -0
  91. data/lib/aspera/sync/database.rb +83 -0
  92. data/lib/aspera/{transfer/sync.rb → sync/operations.rb} +145 -68
  93. data/lib/aspera/temp_file_manager.rb +4 -2
  94. data/lib/aspera/timer_limiter.rb +7 -5
  95. data/lib/aspera/transfer/error.rb +1 -1
  96. data/lib/aspera/transfer/error_info.rb +1 -2
  97. data/lib/aspera/transfer/faux_file.rb +11 -10
  98. data/lib/aspera/transfer/parameters.rb +6 -5
  99. data/lib/aspera/transfer/spec.rb +15 -1
  100. data/lib/aspera/transfer/spec.schema.yaml +316 -293
  101. data/lib/aspera/transfer/spec_doc.rb +34 -16
  102. data/lib/aspera/transfer/uri.rb +5 -5
  103. data/lib/aspera/uri_reader.rb +14 -10
  104. data/lib/aspera/web_auth.rb +2 -2
  105. data/lib/aspera/web_server_simple.rb +2 -2
  106. data.tar.gz.sig +0 -0
  107. metadata +15 -15
  108. metadata.gz.sig +0 -0
  109. data/examples/dascli +0 -30
  110. data/examples/get_proto_file.rb +0 -8
  111. data/examples/proxy.pac +0 -60
  112. data/lib/aspera/transfer/convert.rb +0 -29
  113. data/lib/aspera/transfer/sync_instance.schema.yaml +0 -13
  114. data/lib/aspera/transfer/sync_session.schema.yaml +0 -79
data/CHANGELOG.md CHANGED
@@ -1,6 +1,47 @@
1
1
  # Changes (Release notes)
2
2
 
3
- * 4.22.0
3
+ * 4.24.0
4
+
5
+ * New Features:
6
+ * `aoc`: Option `package_folder` allows specification of secondary field.
7
+ * `config`: New option `invalid_characters` ensures generated file names are valid.
8
+ * `config`: Added support for **dot-separated** option names, allowing nested hash structures to be specified directly on the command line.
9
+ * `console`: Added support for extended filters in transfer queries.
10
+ * `http_options`: New field `ssl_options` allows setting SSL Context options.
11
+ * `format`: `csv` format now supports option `table_style` for customizable output.
12
+ * `logger`: New option: `log_format` to control log formatting.
13
+ * `sync`: New command: `db` for operations on sync database.
14
+ * `sync`: Sync operations now use options `ts` and `to_folder`.
15
+ * Issues Fixed:
16
+ * JRuby: Modified tests and documentation for special SSH options.
17
+ * `transferd`: Fixed discrepancies in transfer spec resume policies.
18
+ * `desktop`: Fixed discrepancies in transfer spec resume policies.
19
+ * `format`: Value of type `list` now properly display column headers.
20
+ * `select`: Filter is now done on values before enhanced display in table mode.
21
+ * `aoc`: #221 Fixed package encryption at rest (CSEAR) status.
22
+ * Breaking Changes:
23
+ * `config`: Option `silent_insecure` renamed `warn_insecure`. `yes` shows warning (default).
24
+ * `ts` : Default transfer spec includes `resume_policy=sparse_csum`.
25
+ * `ssh_options` : Now additive option, like `ts`.
26
+ * `vault`: When creating an entry, the `label` field is now part of the creation Hash.
27
+ * `console`: Removed options `filter_from` and `filter_to`. Use standard option `query` instead.
28
+ * `sync`: Removed option `sync_info`. Replaced with positional parameters. Streamlined command line interface. Applies to all plugins with `sync` command.
29
+ * `async`: Removed option `sync_name`. Replaced with percent selector `%name:`.
30
+ * `aoc`: `files download` using gen4 API do not require anymore to provide the containing folder in first position, and then only file names. Now, directly provide the path to all files.
31
+ * `logger`: Log is simplified, date is removed by default. Use `--log_format=standard` to revert to standard Ruby logger. See option `log_format` for details.
32
+
33
+ * 4.23.0 2025-08-11
34
+
35
+ * New Features:
36
+ * `aoc`: #201: Added `package_folder` option to place each received package in its own subfolder named after a package attribute. Default is `@none:` which means no subfolder will be created.
37
+ * `config`: Added `transferd` version 1.1.6.
38
+ * Issues Fixed:
39
+ * `server`: #209: missing home folder for transfer user shall not cause an error.
40
+ * `direct`: #205: `kill` blocks `cmd` on Windows.
41
+ * Breaking Changes:
42
+ * `config`: In `ascp info`: `openssldir` → `ascp_openssl_dir`, `openssl_version` → `ascp_openssl_version`, `sdk_ascp_version` → `ascp_version`
43
+
44
+ * 4.22.0 2025-06-23
4
45
 
5
46
  * New Features:
6
47
  * `faspex5`: Support paging for Faspex5 browsing.
@@ -18,7 +59,7 @@
18
59
  * HTTP: More retry parameters.
19
60
  * `node`: renamed command `http_node_download` to `cat`, and it directly displays the content of the file in the terminal unless option `--output` is specified.
20
61
 
21
- * 4.21.2
62
+ * 4.21.2 2025-04-11
22
63
 
23
64
  * New Features:
24
65
  * **container**: Updated Ruby to 3.4.2
@@ -26,13 +67,13 @@
26
67
  * **global**: #185 `@val:` shall stop processing extended values
27
68
  * **global**: #186 Removed dependency on OpenSSL 3.3 gem to avoid MSYS2 dep on Windows.
28
69
  * `echo`: Display of list (Array) was showing only first element of it.
29
- * `transferd`: support for version 1.1.5+
70
+ * `transferd`: Support for version 1.1.5+
30
71
  * Breaking Changes:
31
72
  * `preview`: Updated Image Magick to v7+
32
73
  * `aoc`: `admin subscription` split into `admin subscription account` and `admin subscription usage`
33
74
  * **agent**: `alpha` renamed to `desktop`
34
75
 
35
- * 4.21.1
76
+ * 4.21.1 2025-03-15
36
77
 
37
78
  * New Features:
38
79
  * `config`: New command: `transferd` to list and install specific version of `asperatransferd` and `ascp`
@@ -45,10 +86,10 @@
45
86
  * `config`: Soft links in transfer SDK archive are correctly extracted
46
87
  * `aoc`: #184 token cache shall be different per AoC org.
47
88
  * `aoc`: Fix `packages delete` not working.
48
- * `direct` agent: #174 Race condition fix with `ascp`: timeout waiting mgt port connect (select not readable)
89
+ * `direct` agent: #174 Race condition fix with `ascp`: timeout waiting management port connect (select not readable)
49
90
  * `preview`: #177 fix bug that prevents preview generation to work.
50
91
  * Breaking Changes:
51
- * `transferd`: Use of Aspera Transfer Daemon requires minimum version 1.1.4. agent `trsdk` renamed `transferd`.
92
+ * `transferd`: Use of Aspera Transfer Daemon requires minimum version 1.1.4. Agent `trsdk` renamed `transferd`.
52
93
  * `ascp`: Default SDK version is now 1.1.4. Removes support for ascp4.
53
94
  * `node`: Removed deprecated command prefix `exec:`, use `@ruby:` instead.
54
95
  * **global**: Now uses OpenSSL 3.
@@ -56,73 +97,73 @@
56
97
  * **global**: Options `transpose_single` and `multi_table` replaced with single option `multi_single` and values: `no`, `yes`, `single`.
57
98
  * **global**: Column name for single object is now `field` instead of `key`.
58
99
 
59
- * 4.20.0
100
+ * 4.20.0 2025-01-21
60
101
 
61
- ATTENTION: [Faspex version 4 is now end of support](https://www.ibm.com/support/pages/lifecycle/search?q=faspex): the `faspex` plugin will be deprecated. Servers shall be upgraded to Faspex 5, and users use plugin `faspex5`.
102
+ ATTENTION: [Faspex version 4 is now end of support](https://www.ibm.com/support/pages/lifecycle/search?q=faspex): The `faspex` plugin will be deprecated. Servers shall be upgraded to Faspex 5, and users use plugin `faspex5`.
62
103
 
63
104
  * New Features:
64
105
  * `aoc`: Improved usability for creation of Admin shared folders.
65
106
  * `node`: New option `node_cache` (bool) for gen4 operations.
66
107
  * `node`: Option `root_id` now always works for node gen4, as well as `%id:` for file selection in addition to path.
67
108
  * `node`: `transfer list` now uses the `iteration_token` to retrieve all values. Option `once_only` is now supported.
68
- * **global**: option `http_options` now include retry options.
109
+ * **global**: Option `http_options` now include retry options.
69
110
  * Issues Fixed:
70
111
  * `aoc`: Fixed `find` command not working. (undefined variable)
71
- * `aoc`: #165 AoC mkdir now follows the last link of containing folder
112
+ * `aoc`: #165 AoC `mkdir` now follows the last link of containing folder
72
113
  * Breaking Changes:
73
114
  * Internal: Basic REST calls now return data directly. (no more `data` key). For advanced calls, use `call`.
74
115
  * Internal: Transfer SDK download is now a 2-step procedure: First get the YAML file from GitHub with URLs for the various platforms and versions, and then download the archive from the official IBM repository.
75
- **global**: option `format=multi` is replaced with option `multi_table=yes`
76
- * `faspex5`: removed deprecated option `value` replaced with positional parameter.
116
+ **global**: Option `format=multi` is replaced with option `multi_table=yes`
117
+ * `faspex5`: Removed deprecated option `value` replaced with positional parameter.
77
118
 
78
- * 4.19.0
119
+ * 4.19.0 2024-10-02
79
120
 
80
121
  * New Features:
81
- * `server`: add support for `async` (Aspera Sync) from Transfer SDK
122
+ * `server`: Add support for `async` (Aspera Sync) from Transfer SDK
82
123
  * **global**: #156 support sending folders with `httpgw`
83
- * **global**: new value for option `format`: `multi`
124
+ * **global**: New value for option `format`: `multi`
84
125
  * Issues Fixed:
85
126
  * `aoc`: #157 fix problem with `files browse` on a link
86
- * `sync`: better documentation and handling of options.
127
+ * `sync`: Better documentation and handling of options.
87
128
  * Breaking Changes:
88
129
  * **global**: Default value for direct agent option `transfer_info.multi_incr_udp` is `true` on Windows, and now `false` on other platforms.
89
130
  * **global**: Token based transfers now use the RSA key only. Direct agent option `transfer_info.client_ssh_key` allows changing this behavior.
90
131
 
91
- * 4.18.1
132
+ * 4.18.1 2024-08-21
92
133
 
93
134
  * New Features:
94
- * none
135
+ * None
95
136
  * Issues Fixed:
96
137
  * **global**: #146 (@junkimu) Fix problem on Windows WRT terminal detection
97
- * **global**: node gen4 (aoc) browsing through link now follows the link correctly
138
+ * **global**: Node gen4 (`aoc`) browsing through link now follows the link correctly
98
139
  * `shares`: #147 Fix problem for `shares files mkdir`
99
140
  * Breaking Changes:
100
141
  * **global**: Removed option `id`, deprecated since 4.14.0
101
142
 
102
- * 4.18.0
143
+ * 4.18.0 2024-07-10
103
144
 
104
145
  * New Features:
105
- * `faspex5`: added command `admin configuration` for global parameters.
106
- * `faspex5`: added command `admin clean_deleted`.
107
- * `faspex5`: added resource `distribution_list`.
146
+ * `faspex5`: Added command `admin configuration` for global parameters.
147
+ * `faspex5`: Added command `admin clean_deleted`.
148
+ * `faspex5`: Added resource `distribution_list`.
108
149
  * `node`: "gen3" browse now returns all elements using pages, and supports option `query` with parameter `recursive`, `max`, `self`.
109
- * `httpgw`: new plugin, detect the GW.
110
- * `faspio`: new plugin, configure bridges.
111
- * `config`: `ascp info` also shows the version of the openssl library used by `ascp`.
112
- * `node`: new action: `transport` to display transfer address and ports
113
- * **global**: added option `http_proxy`, as an alias to env var `http_proxy`.
150
+ * `httpgw`: New plugin, detect the GW.
151
+ * `faspio`: New plugin, configure bridges.
152
+ * `config`: `ascp info` also shows the version of the OpenSSL library used by `ascp`.
153
+ * `node`: New action: `transport` to display transfer address and ports
154
+ * **global**: Added option `http_proxy`, as an alias to env var `http_proxy`.
114
155
  * **global**: Possibility to filter fields when using formats like `json` or `yaml`.
115
156
  * Issues Fixed:
116
- * `faspex5`: fixed support for percent selector for metadata profiles.
157
+ * `faspex5`: Fixed support for percent selector for metadata profiles.
117
158
  * Breaking Changes:
118
159
  * `aoc` : `admin resource` is deprecated, use just `admin`.
119
160
  * `faspex5` : `admin resource` is deprecated, use just `admin`.
120
- * **global**: option `value` is deprecated and replaced with option `query` when used in generic commands: `delete` and `list`, as well as node ak browse, node stream and watch folder list. (#142)
121
- * **global**: option `warnings` (and short `w`) is removed. To get ruby warnings invoke with `ruby -w .../ascli ...`. See `Makefile` in `test`
122
- * **global**: option `table_style` now expects a Hash, not String.
161
+ * **global**: Option `value` is deprecated and replaced with option `query` when used in generic commands: `delete` and `list`, as well as node access_key browse, node stream and watch folder list. (#142)
162
+ * **global**: Option `warnings` (and short `w`) is removed. To get ruby warnings invoke with `ruby -w .../ascli ...`. See `Makefile` in `test`
163
+ * **global**: Option `table_style` now expects a Hash, not String.
123
164
  * **bss**: Removed unused plugin.
124
165
 
125
- * 4.17.0
166
+ * 4.17.0 2024-07-13
126
167
 
127
168
  * New Features:
128
169
  * `faspex5`: Automatic detection of HTTPGW.
@@ -156,259 +197,259 @@
156
197
  * 4.16.0 2024-02-15
157
198
 
158
199
  * New Features:
159
- * **global**: option `output` to redirect result to a file instead of `stdout`
160
- * **global**: new option `silent_insecure`
161
- * `config`: keys added to `config ascp info`
162
- * `config`: added command `pubkey` to extract public key from private key
163
- * `config`: new command `vault info`
164
- * `faspex5`: added `shared_folders` management
165
- * `faspex5`: if package has content protection, ask passphrase interactively, unless `content_protection=null` in `ts`
166
- * `faspex`: added `INIT` for `once_only`
167
- * `aoc`: added `INIT` for `once_only`
168
- * `aoc`: more list commands honor option `query`
200
+ * **global**: Option `output` to redirect result to a file instead of `stdout`
201
+ * **global**: New option `silent_insecure`
202
+ * `config`: Keys added to `config ascp info`
203
+ * `config`: Added command `pubkey` to extract public key from private key
204
+ * `config`: New command `vault info`
205
+ * `faspex5`: Added `shared_folders` management
206
+ * `faspex5`: If package has content protection, ask passphrase interactively, unless `content_protection=null` in `ts`
207
+ * `faspex`: Added `INIT` for `once_only`
208
+ * `aoc`: Added `INIT` for `once_only`
209
+ * `aoc`: More list commands honor option `query`
169
210
  * Issues Fixed:
170
- * `config`: wizard was failing due to `require` of optional gem.
171
- * `aoc`: use paging to list entities, instead of just one page(e.g. retrieve all packages)
211
+ * `config`: Wizard was failing due to `require` of optional gem.
212
+ * `aoc`: Use paging to list entities, instead of just one page(e.g. retrieve all packages)
172
213
  * `faspex5`: When receiving ALL packages, only get those with status `completed`.
173
- * `direct` agent: better support for WSS
214
+ * `direct` agent: Better support for WSS
174
215
  * Breaking Changes:
175
- * `shares`: option `type` for users and groups is replaced with mandatory positional argument with same value.
176
- * `aoc`, `faspex`: package `recv` command changed to `receive`, for consistency with faspex5 (`recv` is now an alias command)
216
+ * `shares`: Option `type` for users and groups is replaced with mandatory positional argument with same value. E.g. `user list --type=local` becomes: `user local list`.
217
+ * `aoc`, `faspex`: Package `recv` command changed to `receive`, for consistency with faspex5 (`recv` is now an alias command)
177
218
 
178
219
  * 4.15.0 2023-11-18
179
220
 
180
- * General: removed many redundant options, more consistency between plugins, see below in "break".
221
+ * General: Removed many redundant options, more consistency between plugins, see below in "break".
181
222
  * New Features:
182
- * **global**: added resolution hints for well known issues.
183
- * **global**: extended value expression `@extend:` finds and replace extended values in a string (e.g. for JSON)
184
- * **global**: option `fields` now supports `RegExp`
185
- * **global**: option `home` to set the main folder for configuration and cache
186
- * **global**: option `ignore_certificate` to specify specific URLs instead of global option `insecure`
187
- * **global**: option `cert_stores` to specify alternate certificate stores
188
- * **global**: uniform progress bar for any type of transfer.
189
- * **global**: add extended value types: `re` and `yaml`
190
- * **global**: option `pid_file` to write tool's PID during execution, deleted on exit
191
- * `config`: command `remote_certificate` to retrieve a remote certificate
192
- * `config`: added logger level `trace1` and `trace2`
223
+ * **global**: Added resolution hints for well known issues.
224
+ * **global**: Extended value expression `@extend:` finds and replace extended values in a string (e.g. for JSON)
225
+ * **global**: Option `fields` now supports `RegExp`
226
+ * **global**: Option `home` to set the main folder for configuration and cache
227
+ * **global**: Option `ignore_certificate` to specify specific URLs instead of global option `insecure`
228
+ * **global**: Option `cert_stores` to specify alternate certificate stores
229
+ * **global**: Uniform progress bar for any type of transfer.
230
+ * **global**: Add extended value types: `re` and `yaml`
231
+ * **global**: Option `pid_file` to write tool's PID during execution, deleted on exit
232
+ * `config`: Command `remote_certificate` to retrieve a remote certificate
233
+ * `config`: Added logger level `trace1` and `trace2`
193
234
  * `config`: `wizard` can detect multiple applications at the same address or URL.
194
- * `aoc`: wizard accepts public links
195
- * `aoc`: support private links, and possibility to list shared folder with workspace `@json:null`
196
- * `orchestrator`: error analysis for workflow start
197
- * `httpgw`: now supports pseudo file for testing: e.g. `faux:///testfile?1k`
198
- * `node`: added command `transfer sessions` to list all sessions of all transfers
199
- * `node`: generate bearer token from private key and user information
200
- * `node`: access node API with bearer token as credentials
201
- * **global**: agent `direct` allows ignoring certificate for WSS using HTTP options
202
- * `preview`: command `show` generates a preview and displays it in terminal
235
+ * `aoc`: Wizard accepts public links
236
+ * `aoc`: Support private links, and possibility to list shared folder with workspace `@json:null`
237
+ * `orchestrator`: Error analysis for workflow start
238
+ * `httpgw`: Now supports pseudo file for testing: e.g. `faux:///testfile?1k`
239
+ * `node`: Added command `transfer sessions` to list all sessions of all transfers
240
+ * `node`: Generate bearer token from private key and user information
241
+ * `node`: Access node API with bearer token as credentials
242
+ * **global**: Agent `direct` allows ignoring certificate for WSS using HTTP options
243
+ * `preview`: Command `show` generates a preview and displays it in terminal
203
244
  * Issues Fixed:
204
245
  * Ruby warning: `net/protocol.rb:68: warning: already initialized constant Net::ProtocRetryError` solved by removing dependency on `net-smtp` from gem spec (already in base ruby).
205
246
  * Breaking Changes:
206
- * **global**: commands `detect` and `wizard` takes now a mandatory argument: address or url instead of option `url`.
207
- * **global**: renamed option `pkeypath` to `key_path`
208
- * **global**: renamed option `notif_to` to `notify_to` and `notif_template` to `notify_template`
209
- * **global**: removed extended value handler `incps`, as it is never used (use `extend` instead).
210
- * **global**: option `fields`: `+prop` is replaced with: `DEF,prop` and `-field` is replaced with: `DEF,-field`, and whole list is evaluated.
211
- * **global**: replaced option `progress` with option `progressbar` (bool)
212
- * **global**: removed option `rest_debug` and `-r`, replaced with `--log-level=trace2`
213
- * **global**: the default file name for private key when using wizard is change from `aspera_aoc_key` to `my_private_key.pem`
214
- * `faspex5`: removed option and `auth` type `link`: simply provide the public link as `url`
215
- * `faspex`: remote source selection now uses percent selector instead of parameter `id` or `name`
216
- * `faspex`: option `source_name` is now `remote_source`
217
- * `aoc`: selection by name uses percent selector instead of option or parameter `name`
218
- * `aoc`: removed option `link`: use `url` instead
219
- * `aoc`: in command `short_link`, place type before command, e.g. `short_link private create /blah`
220
- * `aoc`: replaced option `operation` with mandatory positional parameter for command `files transfer`
221
- * `aoc`: replaced option `from_folder` with mandatory positional parameter for command `files transfer`
222
- * `orchestrator`: workflow start takes arguments as optional positional extended value instead of option `param`
247
+ * **global**: Commands `detect` and `wizard` takes now a mandatory argument: address or URL instead of option `url`.
248
+ * **global**: Renamed option `pkeypath` to `key_path`
249
+ * **global**: Renamed option `notif_to` to `notify_to` and `notif_template` to `notify_template`
250
+ * **global**: Removed extended value handler `incps`, as it is never used (use `extend` instead).
251
+ * **global**: Option `fields`: `+prop` is replaced with: `DEF,prop` and `-field` is replaced with: `DEF,-field`, and whole list is evaluated.
252
+ * **global**: Replaced option `progress` with option `progressbar` (bool)
253
+ * **global**: Removed option `rest_debug` and `-r`, replaced with `--log-level=trace2`
254
+ * **global**: The default file name for private key when using wizard is change from `aspera_aoc_key` to `my_private_key.pem`
255
+ * `faspex5`: Removed option and `auth` type `link`: simply provide the public link as `url`
256
+ * `faspex`: Remote source selection now uses percent selector instead of parameter `id` or `name`
257
+ * `faspex`: Option `source_name` is now `remote_source`
258
+ * `aoc`: Selection by name uses percent selector instead of option or parameter `name`
259
+ * `aoc`: Removed option `link`: use `url` instead
260
+ * `aoc`: In command `short_link`, place type before command, e.g. `short_link private create /blah`
261
+ * `aoc`: Replaced option `operation` with mandatory positional parameter for command `files transfer`
262
+ * `aoc`: Replaced option `from_folder` with mandatory positional parameter for command `files transfer`
263
+ * `orchestrator`: Workflow start takes arguments as optional positional extended value instead of option `param`
223
264
  * `node`: `find` command now takes an optional `@ruby:` extended value instead of option `query` with prefix: `exec:`
224
- * `sync`: plugin `sync` is removed: actions are available through `server` and `node` plugins.
225
- * `sync`: replaced option `sync_session` with optional positional parameter.
226
- * `preview`: command `scan`, `events` and `trevents` replaced option `query` with optional positional parameter for filter (like `find`).
227
- * **global**: agent `trsdk` parameters `host` and `port` in option `transfer_info` are replaced with parameter `url`, like `grpc://host:port`
265
+ * `sync`: Plugin `sync` is removed: actions are available through `server` and `node` plugins.
266
+ * `sync`: Replaced option `sync_session` with optional positional parameter.
267
+ * `preview`: Command `scan`, `events` and `trevents` replaced option `query` with optional positional parameter for filter (like `find`).
268
+ * **global**: Agent `trsdk` parameters `host` and `port` in option `transfer_info` are replaced with parameter `url`, like `grpc://host:port`
228
269
 
229
270
  * 4.14.0 2023-09-22
230
271
 
231
272
  * New Features:
232
- * `server`: option `passphrase` for simpler command line (#114)
233
- * percent selector for entities identifier
234
- * `faspex5`: shared inbox and workgroup membership management
235
- * `faspex5`: invite external user to shared inbox
236
- * `faspex5`: package list and receive from workgroup and shared inbox
273
+ * `server`: Option `passphrase` for simpler command line (#114)
274
+ * Percent selector for entities identifier
275
+ * `faspex5`: Shared inbox and workgroup membership management
276
+ * `faspex5`: Invite external user to shared inbox
277
+ * `faspex5`: Package list and receive from workgroup and shared inbox
237
278
  * `config`: Command `ascp info` shows default transfer spec.
238
- * **global**: agent `httpgw` synchronous and asynchronous upload modes
239
- * `node`: command `bandwidth_average` to get average bandwidth of node, per periods
279
+ * **global**: Agent `httpgw` synchronous and asynchronous upload modes
280
+ * `node`: Command `bandwidth_average` to get average bandwidth of node, per periods
240
281
  * Issues Fixed:
241
- * option `ts`: deep add and remove of keys. (#117)
242
- * `faspex5`: user lookup for `packages send` shall be exact match (#120)
243
- * **global**: agent `direct` if transfer spec contains "paths" and elements with "destination", but first element has only "source", then destinations were ignored. Now "destination" all or none is enforced.
282
+ * Option `ts`: Deep add and remove of keys. (#117)
283
+ * `faspex5`: User lookup for `packages send` shall be exact match (#120)
284
+ * **global**: Agent `direct` if transfer spec contains "paths" and elements with "destination", but first element has only "source", then destinations were ignored. Now "destination" all or none is enforced.
244
285
  * Breaking Changes:
245
- * using `aoc files` or node gen4 operations (`browse`, `delete`) on a link will follow the link only if path ends with /
246
- * `shares`: command `repository` is changed to `files` for consistency with aoc and upcoming faspex5, but is still available as alias
247
- * `aoc`: better handling of shared links
248
- * **global**: option `value` is deprecated. Use positional parameter for creation data and option `query` for list/delete operations.
249
- * `config`: remove deprecated command: `export_to_cli`
250
- * `config`: removed all legacy preset command, newer command `preset` shall be used now.
251
- * `config`: SDK is now installed in $HOME/.aspera/sdk instead of $HOME/.aspera/ascli/sdk
252
- * `aoc`, `node`: Simplification: gen4 operations: show modify permission thumbnail are now directly under node gen 4 command. Command `file` is suppressed. Option `path` is suppressed. The default expected argument is a path. To provide a file id, use selector syntax: %id:_file_id_
253
- * `node`: option `token_type` is removed, as starting with HSTS 4.3 basic token is only allowed with access keys, so use gen4 operations: `acc do self`
286
+ * Using `aoc files` or node gen4 operations (`browse`, `delete`) on a link will follow the link only if path ends with /
287
+ * `shares`: Command `repository` is changed to `files` for consistency with aoc and upcoming faspex5, but is still available as alias
288
+ * `aoc`: Better handling of shared links
289
+ * **global**: Option `value` is deprecated. Use positional parameter for creation data and option `query` for list/delete operations.
290
+ * `config`: Remove deprecated command: `export_to_cli`
291
+ * `config`: Removed all legacy preset command, newer command `preset` shall be used now.
292
+ * `config`: SDK is now installed in `$HOME/.aspera/sdk` instead of `$HOME/.aspera/ascli/sdk`
293
+ * `aoc`, `node`: Simplification: gen4 operations: show modify permission thumbnail are now directly under node gen 4 command. Command `file` is suppressed. Option `path` is suppressed. The default expected argument is a path. To provide a file ID, use selector syntax: `%id:_file_id_`
294
+ * `node`: Option `token_type` is removed, as starting with HSTS 4.3 basic token is only allowed with access keys, so use gen4 operations: `acc do self`
254
295
 
255
296
  * 4.13.0 2023-06-29
256
297
 
257
298
  * New Features:
258
- * `preview`: option `reencode_ffmpeg` allows overriding all re-encoding options
259
- * `faspex5`: package delete (#107)
260
- * `faspex5`: package recv for inboxes and regular users (#108)
261
- * `faspex5`: smtp management
262
- * `faspex5`: use public link for authorization of package download, using option `link`
263
- * `faspex5`: list content of package, and allow partial download of package
264
- * `faspex5`: list packages support multiple pages and items limitations (`max` and `pmax`)
265
- * `aoc`: files operations with workspace-less user (#109)
299
+ * `preview`: Option `reencode_ffmpeg` allows overriding all re-encoding options
300
+ * `faspex5`: `package delete` (#107)
301
+ * `faspex5`: `package recv` for inboxes and regular users (#108)
302
+ * `faspex5`: SMTP management
303
+ * `faspex5`: Use public link for authorization of package download, using option `link`
304
+ * `faspex5`: List content of package, and allow partial download of package
305
+ * `faspex5`: List packages support multiple pages and items limitations (`max` and `pmax`)
306
+ * `aoc`: Files operations with workspace-less user (#109)
266
307
  * `node`: `async` with gen3 token (#110)
267
- * `node`: display of preview of file in terminal for access keys
308
+ * `node`: Display of preview of file in terminal for access keys
268
309
  * Issues Fixed:
269
- * `cos`: do not use refresh token when not supported
310
+ * `cos`: Do not use refresh token when not supported
270
311
  * **container**: SDK installed in other folder than `ascli` (#106)
271
312
  * Breaking Changes:
272
- * option `transfer_info` is now cumulative, setting several times merge values
273
- * change(deprecation): Removed support of Ruby 2.4 and 2.5 : too old, no security update since a long time. If you need older ruby version use older gem version.
313
+ * Option `transfer_info` is now cumulative, setting several times merge values
314
+ * Change(deprecation): Removed support of Ruby 2.4 and 2.5 : Too old, no security update since a long time. If you need older ruby version use older gem version.
274
315
 
275
316
  * 4.12.0 2023-03-20
276
317
 
277
318
  * New Features:
278
- * **container**: build image from official gem version, possibility to deploy beta as well
319
+ * **container**: Build image from official gem version, possibility to deploy beta as well
279
320
  * **global**: `delete` operation supports option `value` for deletion parameters
280
- * `aoc`: command `aoc packages recv` accepts option `query` to specify a shared inbox
321
+ * `aoc`: Command `aoc packages recv` accepts option `query` to specify a shared inbox
281
322
  * `faspex`: (v4) user delete accepts option `value` with value `{"destroy":true}` to delete users permanently
282
323
  * `faspex`: (v4) gateway to Faspex 5 for package send
283
- * `faspex5`: possibility to change email templates
284
- * `faspex5`: shared folder list and browse
285
- * `faspex5`: emulate Faspex 4 post-processing, plugin: `faspex5` command: `postprocessing`
286
- * `faspex5`: send package from remote source
287
- * `shares`: option `type` for command `shares admin user`
288
- * `shares`: full support for shares admin operations
324
+ * `faspex5`: Possibility to change email templates
325
+ * `faspex5`: Shared folder list and browse
326
+ * `faspex5`: Emulate Faspex 4 post-processing, plugin: `faspex5` command: `postprocessing`
327
+ * `faspex5`: Send package from remote source
328
+ * `shares`: Option `type` for command `shares admin user`
329
+ * `shares`: Full support for shares admin operations
289
330
  * Breaking Changes:
290
- * `shares`: command `shares admin user saml_import` replaced with `shares admin user import --type=saml`
291
- * `shares`: command `shares admin user ldap_import` replaced with `shares admin user add --type=ldap`
292
- * `shares`: command `app_authorizations` now has sub commands `show` and `modify`
293
- * `shares`: similar changes for `shares admin share user show`
294
- * option `ascp_opts` is removed, and replaced with `transfer_info` parameter `ascp_args`
331
+ * `shares`: Command `shares admin user saml_import` replaced with `shares admin user import --type=saml`
332
+ * `shares`: Command `shares admin user ldap_import` replaced with `shares admin user add --type=ldap`
333
+ * `shares`: Command `app_authorizations` now has sub commands `show` and `modify`
334
+ * `shares`: Similar changes for `shares admin share user show`
335
+ * Option `ascp_opts` is removed, and replaced with `transfer_info` parameter `ascp_args`
295
336
 
296
337
  * 4.11.0 2023-01-26
297
338
 
298
339
  * New Features:
299
- * **global**: `vault`: secret finder, migration from config file
300
- * **global**: allow removal of transfer spec parameter by setting value to `null`
301
- * **global**: option `ascp_opts` allows providing native `ascp` options on command line
302
- * `node`, `server`: command `sync` added to `node` (gen4) and `server` plugins, also available in `aoc`
340
+ * **global**: `vault`: Secret finder, migration from config file
341
+ * **global**: Allow removal of transfer spec parameter by setting value to `null`
342
+ * **global**: Option `ascp_opts` allows providing native `ascp` options on command line
343
+ * `node`, `server`: Command `sync` added to `node` (gen4) and `server` plugins, also available in `aoc`
303
344
  * Issues Fixed:
304
- * **global**: security: no shell interpolation
305
- * **global**: agent `node`: when WSS is used: no localhost (certificate)
345
+ * **global**: Security: no shell interpolation
346
+ * **global**: Agent `node`: when WSS is used: no localhost (certificate)
306
347
  * `aoc`: #99 `file download` for single shared folder
307
- * `faspex5`: change of API in Faspex 5 for send package (paths is mandatory for any type of transfer now)
348
+ * `faspex5`: Change of API in Faspex 5 for send package (paths is mandatory for any type of transfer now)
308
349
  * **global**: OAuth web authentication was broken, fixed now
309
350
  * Breaking Changes:
310
- * **container**: image has entry point
351
+ * **container**: Image has entry point
311
352
  * `aoc`: `admin res node` commands `v3` and `v4` replaced with `do` and command `v3` moved inside `do`
312
- * renamed options for `sync`
313
- * node gen4 operations are moved from aoc plugin to node plugin but made available where gen4 is used
314
- * if wss is enabled on server, use wss
315
- * lots of cleanup and refactoring
353
+ * Renamed options for `sync`
354
+ * Node gen4 operations are moved from aoc plugin to node plugin but made available where gen4 is used
355
+ * If wss is enabled on server, use wss
356
+ * Lots of cleanup and refactoring
316
357
 
317
358
  * 4.10.0 2022-12-02
318
359
 
319
360
  * New Features:
320
- * httpgw transfer agent: support api v2, support transfer through http proxy, including proxy password
321
- * `faspex5`: get bearer token
361
+ * `httpgw`: Transfer agent support API v2, support transfer through HTTP proxy, including proxy password
362
+ * `faspex5`: Get bearer token
322
363
  * Issues Fixed:
323
- * **container**: container version
364
+ * **container**: Container version
324
365
  * Breaking Changes:
325
- * `config`: option `secrets` is renamed to `vault`
366
+ * `config`: Option `secrets` is renamed to `vault`
326
367
 
327
368
  * 4.9.0 2022-09-15
328
369
 
329
370
  * New Features:
330
- * `shares`: import of SAML users and LDAP users
371
+ * `shares`: Import of SAML users and LDAP users
331
372
  * M1 apple silicon support SDK install (uses x86 ascp)
332
- * support bulk operation more globally (create/delete), not all ops , though
333
- * added missing transfer spec parameters, e.g. `src_base`, `password`
334
- * improved documentation on faspex and aoc package send
373
+ * Support bulk operation more globally (create/delete), not all ops , though
374
+ * Added missing transfer spec parameters, e.g. `src_base`, `password`
375
+ * Improved documentation on faspex and aoc package send
335
376
  * Issues Fixed:
336
377
  * `node do` command fixed
337
- * improved secret hiding from logs
378
+ * Improved secret hiding from logs
338
379
  * Breaking Changes:
339
- * removed rarely commands `nodeadmin`, `configuration`, `userdata`, `ctl` from plugin `server`
380
+ * Removed rarely commands `nodeadmin`, `configuration`, `userdata`, `ctl` from plugin `server`
340
381
  as well as option `cmd_prefix`
341
382
  * `ascli` runs as user `cliuser` instead of `root` in container
342
- * default access right for config folder is now user only, including private keys
383
+ * Default access right for config folder is now user only, including private keys
343
384
 
344
385
  * 4.8.0 2022-06-16
345
386
 
346
387
  * New Features:
347
388
  * #76 add resource `group_membership` in `aoc`
348
- * add resource `metadata_profile` in `faspex5`
349
- * add command `user profile` in `faspex5`
350
- * add config wizard for `faspex5`
389
+ * Add resource `metadata_profile` in `faspex5`
390
+ * Add command `user profile` in `faspex5`
391
+ * Add config wizard for `faspex5`
351
392
  * #75 gem is signed
352
393
  * Breaking Changes:
353
- * removed dependency on gem `grpc` which is used only for the `trsdk` transfer agent. Users can install the gem manually if needed.
354
- * hash vault keys are string instead of symbol
355
- * cleanup with rubocop, all strings are immutable now by default, list constants are frozen
356
- * removed Hash.dig implementation because it is by default in Ruby >= 2.3
357
- * default is now to hide secrets on command output. Set option `show_secrets` to reveal secrets.
358
- * option `insecure` displays a warning
394
+ * Removed dependency on gem `grpc` which is used only for the `trsdk` transfer agent. Users can install the gem manually if needed.
395
+ * Hash vault keys are string instead of symbol
396
+ * Cleanup with rubocop, all strings are immutable now by default, list constants are frozen
397
+ * Removed Hash.dig implementation because it is by default in Ruby >= 2.3
398
+ * Default is now to hide secrets on command output. Set option `show_secrets` to reveal secrets.
399
+ * Option `insecure` displays a warning
359
400
 
360
401
  * 4.7.0 2022-03-23
361
402
 
362
403
  * New Features:
363
- * option to specify font used to generate image of text file in `preview`
404
+ * Option to specify font used to generate image of text file in `preview`
364
405
  * #66 improvement for content protection (support standard transfer spec options for direct agent)
365
- * option `fpac` is now applicable to all ruby based HTTP connections, i.e. API calls
366
- * option `show_secrets` to reveal secrets in command output
367
- * added and updated commands for Faspex 5
368
- * option `cache_tokens`
406
+ * Option `fpac` is now applicable to all ruby based HTTP connections, i.e. API calls
407
+ * Option `show_secrets` to reveal secrets in command output
408
+ * Added and updated commands for Faspex 5
409
+ * Option `cache_tokens`
369
410
  * Faspex4 dropbox packages can now be received by id
370
411
  * Issues Fixed:
371
412
  * After AoC version update, wizard did not detect AoC properly
372
413
  * Breaking Changes:
373
- * command `conf gem path` replaces `conf gem_path`
374
- * option `fpac` expects a value instead of URL
375
- * option `cipher` in transfer spec must have hyphen
376
- * renamed option `log_passwords` to `log_secrets`
377
- * removed plugin `shares2` as products is now EOL
414
+ * Command `conf gem path` replaces `conf gem_path`
415
+ * Option `fpac` expects a value instead of URL
416
+ * Option `cipher` in transfer spec must have hyphen
417
+ * Renamed option `log_passwords` to `log_secrets`
418
+ * Removed plugin `shares2` as products is now EOL
378
419
 
379
420
  * 4.6.0 2022-02-04
380
421
 
381
422
  * New Features:
382
- * command `conf plugin create`
383
- * global option `plugin_folder`
384
- * global option `transpose_single`
385
- * simplified metadata passing for shared inbox package creation in AoC
423
+ * Command `conf plugin create`
424
+ * Global option `plugin_folder`
425
+ * Global option `transpose_single`
426
+ * Simplified metadata passing for shared inbox package creation in AoC
386
427
  * Issues Fixed:
387
428
  * #60 ascli executable was not installed by default in 4.5.0
388
- * add password hiding case in logs
429
+ * Add password hiding case in logs
389
430
  * Breaking Changes:
390
- * command `aoc packages shared_inboxes list` replaces `aoc user shared_inboxes`
391
- * command `aoc user profile` replaces `aoc user info`
392
- * command `aoc user workspaces list` replaces `aoc user workspaces`
393
- * command `aoc user workspaces current` replaces `aoc workspace`
394
- * command `conf plugin list` replaces `conf plugins`
395
- * command `conf connect` simplified
431
+ * Command `aoc packages shared_inboxes list` replaces `aoc user shared_inboxes`
432
+ * Command `aoc user profile` replaces `aoc user info`
433
+ * Command `aoc user workspaces list` replaces `aoc user workspaces`
434
+ * Command `aoc user workspaces current` replaces `aoc workspace`
435
+ * Command `conf plugin list` replaces `conf plugins`
436
+ * Command `conf connect` simplified
396
437
 
397
438
  * 4.5.0 2021-12-27
398
439
 
399
440
  * New Features:
400
- * support transfer agent: [Transfer SDK](README.md#agt_trsdk)
401
- * support [http socket options](README.md#http_options)
402
- * logs hide passwords and secrets, option `log_passwords` to enable logging secrets
441
+ * Support transfer agent: [Transfer SDK](README.md#agt_trsdk)
442
+ * Support [http socket options](README.md#http_options)
443
+ * Logs hide passwords and secrets, option `log_passwords` to enable logging secrets
403
444
  * `config vault` supports encrypted passwords, also macos keychain
404
445
  * `config preset` command for consistency with id
405
- * identifier can be provided using either option `id` or directly after the command, e.g. `delete 123` is the same as `delete --id=123`
446
+ * Identifier can be provided using either option `id` or directly after the command, e.g. `delete 123` is the same as `delete --id=123`
406
447
  * Issues Fixed:
407
- * various smaller fixes and renaming of some internal classes (transfer agents and few other)
448
+ * Various smaller fixes and renaming of some internal classes (transfer agents and few other)
408
449
  * Breaking Changes:
409
- * when using wss, use [ruby's CA certs](README.md#certificates)
410
- * unexpected parameter makes exit code not zero
411
- * options `id` and `name` cannot be specified at the same time anymore, use [positional identifier or name selection](README.md#res_select)
450
+ * When using wss, use [ruby's CA certs](README.md#certificates)
451
+ * Unexpected parameter makes exit code not zero
452
+ * Options `id` and `name` cannot be specified at the same time anymore, use [positional identifier or name selection](README.md#res_select)
412
453
  * `aoc admin res node` does not take workspace main node as default node if no `id` specified.
413
454
  * : `orchestrator workflow status` requires id, and supports special id `ALL`
414
455
 
@@ -421,82 +462,82 @@
421
462
  * `node` plugin accepts bearer token and access key as credential
422
463
  * `node` option `token_type` allows using basic token in addition to aspera type.
423
464
  * Breaking Changes:
424
- * `server`: option `username` not mandatory anymore: xfer user is by default. If transfer spec token is provided, password or keys are optional, and bypass keys are used by default.
425
- * resource `apps_new` of `aoc` replaced with `application` (more clear)
465
+ * `server`: Option `username` not mandatory anymore: `xfer` user is by default. If transfer spec token is provided, password or keys are optional, and bypass keys are used by default.
466
+ * Resource `apps_new` of `aoc` replaced with `application` (more clear)
426
467
 
427
468
  * 4.3.0 2021-10-19
428
469
 
429
470
  * New Features:
430
- * parameter `multi_incr_udp` for option `transfer_info`: control if UDP port is incremented when multi-session is used on [`direct`](README.md#agt_direct) transfer agent.
431
- * command `aoc files node_info` to get node information for a given folder in the Files application of AoC. Allows cross-org or cross-workspace transfers.
471
+ * Parameter `multi_incr_udp` for option `transfer_info`: control if UDP port is incremented when multi-session is used on [`direct`](README.md#agt_direct) transfer agent.
472
+ * Command `aoc files node_info` to get node information for a given folder in the Files application of AoC. Allows cross-org or cross-workspace transfers.
432
473
 
433
474
  * 4.2.2 2021-09-23
434
475
 
435
476
  * New Features:
436
477
  * `faspex package list` retrieves the whole list, not just first page
437
- * support web based auth to aoc and faspex 5 using HTTPS, new dependency on gem `webrick`
438
- * the error "Remote host is not who we expected" displays a special remediation message
478
+ * Support web based auth to aoc and faspex 5 using HTTPS, new dependency on gem `webrick`
479
+ * The error "Remote host is not who we expected" displays a special remediation message
439
480
  * `conf ascp spec` displays supported transfer spec
440
- * options `notif_to` and `notif_template` to send email notifications on transfer (and other events)
481
+ * Options `notif_to` and `notif_template` to send email notifications on transfer (and other events)
441
482
  * Issues Fixed:
442
- * space character in `faspe:` url are percent encoded if needed
443
- * `preview scan`: if file_id is unknown, ignore and continue scan
483
+ * Space character in `faspe:` url are percent encoded if needed
484
+ * `preview scan`: If file_id is unknown, ignore and continue scan
444
485
  * Breaking Changes:
445
- * for commands that potentially execute several transfers (`package recv --id=ALL`), if one transfer fails then ascli exits with code 1 (instead of zero=success)
446
- * option `notify` or `aoc` replaced with `notif_to` and `notif_template`
486
+ * For commands that potentially execute several transfers (`package recv --id=ALL`), if one transfer fails then ascli exits with code 1 (instead of zero=success)
487
+ * Option `notify` or `aoc` replaced with `notif_to` and `notif_template`
447
488
 
448
489
  * 4.2.1 2021-09-01
449
490
 
450
491
  * New Features:
451
- * command `faspex package recv` supports link of type: `faspe:`
452
- * command `faspex package recv` supports option `recipient` to specify dropbox with leading `*`
492
+ * Command `faspex package recv` supports link of type: `faspe:`
493
+ * Command `faspex package recv` supports option `recipient` to specify dropbox with leading `*`
453
494
 
454
495
  * 4.2.0 2021-08-24
455
496
 
456
497
  * New Features:
457
- * command `aoc remind` to receive organization membership by email
458
- * in `preview` option `value` to filter out on file name
498
+ * Command `aoc remind` to receive organization membership by email
499
+ * In `preview` option `value` to filter out on file name
459
500
  * `initdemo` to initialize for demo server
460
501
  * [`direct`](README.md#agt_direct) transfer agent options: `spawn_timeout_sec` and `spawn_delay_sec`
461
502
  * Issues Fixed:
462
- * on Windows `conf ascp use` expects ascp.exe
503
+ * On Windows `conf ascp use` expects ascp.exe
463
504
  * (break) multi_session_threshold is Integer, not String
464
505
  * `conf ascp install` renames sdk folder if it already exists (leftover shared lib may make fail)
465
- * removed replace_illegal_chars from default aspera.conf causing "Error creating illegal char conversion table"
506
+ * Removed `replace_illegal_chars` from default `aspera.conf` causing "Error creating illegal char conversion table"
466
507
  * Breaking Changes:
467
508
  * `aoc apiinfo` is removed, use `aoc servers` to provide the list of cloud systems
468
- * parameters for resume in `transfer-info` for [`direct`](README.md#agt_direct) are now in sub-key `"resume"`
509
+ * Parameters for resume in `transfer-info` for [`direct`](README.md#agt_direct) are now in sub-key `"resume"`
469
510
 
470
511
  * 4.1.0 2021-06-23
471
512
 
472
513
  * New Features:
473
- * update documentation with regard to offline and docker installation
474
- * renamed command `nagios_check` to `health`
475
- * agent `http_gw` now supports upload
476
- * added option `sdk_url` to install SDK from local file for offline install
477
- * check new gem version periodically
478
- * the --fields= option, support -_field_name_ to remove a field from default fields
514
+ * Update documentation with regard to offline and docker installation
515
+ * Renamed command `nagios_check` to `health`
516
+ * Agent `http_gw` now supports upload
517
+ * Added option `sdk_url` to install SDK from local file for offline install
518
+ * Check new gem version periodically
519
+ * The --fields= option, support -_field_name_ to remove a field from default fields
479
520
  * Oauth tokens are discarded automatically after 30 minutes (useful for COS delegated refresh tokens)
480
521
  * `mimemagic` is now optional, needs manual install for `preview`, compatible with version 0.4.x
481
522
  * AoC a password can be provided for a public link
482
523
  * `conf doc` take an optional parameter to go to a section
483
- * initial support for Faspex 5 Beta 1
524
+ * Initial support for Faspex 5 Beta 1
484
525
  * Issues Fixed:
485
- * remove keys from transfer spec and command line when not needed
486
- * default to create_dir:true so that sending single file to a folder does not rename file if folder does not exist
526
+ * Remove keys from transfer spec and command line when not needed
527
+ * Default to `create_dir`:`true` so that sending single file to a folder does not rename file if folder does not exist
487
528
 
488
529
  * 4.0.0 2021-02-03
489
530
 
490
531
  * New Features:
491
- * now available as open source (github) with general cleanup
492
- * added possibility to install SDK: `config ascp install`
532
+ * Now available as open source (GitHub) with general cleanup
533
+ * Added possibility to install SDK: `config ascp install`
493
534
  * Breaking Changes:
494
- * changed default tool name from `mlia` to `ascli`
495
- * changed `aspera` command to `aoc`
496
- * changed gem name from `asperalm` to `aspera-cli`
497
- * changed module name from `Asperalm` to `Aspera`
498
- * removed command `folder` in `preview`, merged to `scan`
499
- * persistency files go to sub folder instead of main folder
535
+ * Changed default tool name from `mlia` to `ascli`
536
+ * Changed `aspera` command to `aoc`
537
+ * Changed gem name from `asperalm` to `aspera-cli`
538
+ * Changed module name from `Asperalm` to `Aspera`
539
+ * Removed command `folder` in `preview`, merged to `scan`
540
+ * Persistency files go to sub folder instead of main folder
500
541
 
501
542
  * 0.11.8
502
543
 
@@ -504,300 +545,300 @@
504
545
 
505
546
  * 0.11.7
506
547
 
507
- * rework on rest call error handling
508
- * use option `display` with value `data` to remove out of extraneous information
509
- * fixed option `lock_port` not working
510
- * generate special icon if preview failed
511
- * possibility to choose transfer progress bar type with option `progress`
548
+ * Rework on rest call error handling
549
+ * Use option `display` with value `data` to remove out of extraneous information
550
+ * Fixed option `lock_port` not working
551
+ * Generate special icon if preview failed
552
+ * Possibility to choose transfer progress bar type with option `progress`
512
553
  * AoC package creation now output package id
513
554
 
514
555
  * 0.11.6
515
556
 
516
- * `orchestrator`: added more choice in auth type
517
- * `preview`: cleanup in generator (removed and renamed parameters)
518
- * `preview`: better documentation
519
- * `preview`: animated thumbnails for video (option: `video_png_conv=animated`)
520
- * `preview`: new event trigger: `trevents` (`events` seems broken)
521
- * `preview`: unique tmp folder to avoid clash of multiple instances
522
- * repo: added template for secrets used for testing
557
+ * `orchestrator`: Added more choice in auth type
558
+ * `preview`: Cleanup in generator (removed and renamed parameters)
559
+ * `preview`: Better documentation
560
+ * `preview`: Animated thumbnails for video (option: `video_png_conv=animated`)
561
+ * `preview`: New event trigger: `trevents` (`events` seems broken)
562
+ * `preview`: Unique tmp folder to avoid clash of multiple instances
563
+ * Repo: Added template for secrets used for testing
523
564
 
524
565
  * 0.11.5
525
566
 
526
- * added option `default_ports` for AoC (see manual)
527
- * allow bulk delete in `aspera files` with option `bulk=yes`
528
- * fix getting connect versions
529
- * added section for Aix
530
- * support all ciphers for [`direct`](README.md#agt_direct) agent (including gcm, etc..)
531
- * added transfer spec param `apply_local_docroot` for [`direct`](README.md#agt_direct)
567
+ * Added option `default_ports` for AoC (see manual)
568
+ * Allow bulk delete in `aspera files` with option `bulk=yes`
569
+ * Fix getting connect versions
570
+ * Added section for Aix
571
+ * Support all ciphers for [`direct`](README.md#agt_direct) agent (including gcm, etc..)
572
+ * Added transfer spec param `apply_local_docroot` for [`direct`](README.md#agt_direct)
532
573
 
533
574
  * 0.11.4
534
575
 
535
- * possibility to give shared inbox name when sending a package (else use id and type)
576
+ * Possibility to give shared inbox name when sending a package (else use id and type)
536
577
 
537
578
  * 0.11.3
538
579
 
539
- * minor fixes on multi-session: avoid exception on progress bar
580
+ * Minor fixes on multi-session: Avoid exception on progress bar
540
581
 
541
582
  * 0.11.2
542
583
 
543
- * fixes on multi-session: progress bat and transfer spec param for "direct"
584
+ * Fixes on multi-session: Progress bat and transfer spec param for "direct"
544
585
 
545
586
  * 0.11.1
546
587
 
547
- * enhanced short_link creation commands (see examples)
588
+ * Enhanced short_link creation commands (see examples)
548
589
 
549
590
  * 0.11
550
591
 
551
- * add transfer spec option (agent `direct` only) to provide file list directly to ascp: `EX_file_list`.
592
+ * Add transfer spec option (agent `direct` only) to provide file list directly to ascp: `EX_file_list`.
552
593
 
553
594
  * 0.10.18
554
595
 
555
- * new option in. `server` : `ssh_options`
596
+ * New option in. `server` : `ssh_options`
556
597
 
557
598
  * 0.10.17
558
599
 
559
- * fixed problem on `server` for option `ssh_keys`, now accepts both single value and list.
560
- * new modifier: `@list:<separator>val1<separator>...`
600
+ * Fixed problem on `server` for option `ssh_keys`, now accepts both single value and list.
601
+ * New modifier: `@list:<separator>val1<separator>...`
561
602
 
562
603
  * 0.10.16
563
604
 
564
- * added list of shared inboxes in workspace (or global), use `--query=@json:'{}'`
605
+ * Added list of shared inboxes in workspace (or global), use `--query=@json:'{}'`
565
606
 
566
607
  * 0.10.15
567
608
 
568
- * in case of command line error, display the error cause first, and non-parsed argument second
609
+ * In case of command line error, display the error cause first, and non-parsed argument second
569
610
  * AoC : Activity / Analytics
570
611
 
571
612
  * 0.10.14
572
613
 
573
- * added missing bss plugin
614
+ * Added missing bss plugin
574
615
 
575
616
  * 0.10.13
576
617
 
577
- * added Faspex5 (use option `value` to give API arguments)
618
+ * Added Faspex5 (use option `value` to give API arguments)
578
619
 
579
620
  * 0.10.12
580
621
 
581
- * added support for AoC node registration keys
582
- * replaced option : `local_resume` with `transfer_info` for agent [`direct`](README.md#agt_direct)
622
+ * Added support for AoC node registration keys
623
+ * Replaced option : `local_resume` with `transfer_info` for agent [`direct`](README.md#agt_direct)
583
624
  * Transfer agent is no more a Singleton instance, but only one is used in CLI
584
- * `@incps` : new extended value modifier
585
- * ATS: no more provides access keys secrets: now user must provide it
586
- * begin work on "aoc" transfer agent
625
+ * `@incps` : New extended value modifier
626
+ * ATS: No more provides access keys secrets: now user must provide it
627
+ * Begin work on "aoc" transfer agent
587
628
 
588
629
  * 0.10.11
589
630
 
590
- * minor refactor and fixes
631
+ * Minor refactor and fixes
591
632
 
592
633
  * 0.10.10
593
634
 
594
- * fix on documentation
635
+ * Fix on documentation
595
636
 
596
637
  * 0.10.9.1
597
638
 
598
- * add total number of items for AoC resource list
599
- * better gem version dependency (and fixes to support Ruby 2.0.0)
600
- * removed aoc search_nodes
639
+ * Add total number of items for AoC resource list
640
+ * Better gem version dependency (and fixes to support Ruby 2.0.0)
641
+ * Removed aoc search_nodes
601
642
 
602
643
  * 0.10.8
603
644
 
604
- * removed option: `fasp_proxy`, use pseudo transfer spec parameter: `EX_fasp_proxy_url`
605
- * removed option: `http_proxy`, use pseudo transfer spec parameter: `EX_http_proxy_url`
606
- * several other changes..
645
+ * Removed option: `fasp_proxy`, use pseudo transfer spec parameter: `EX_fasp_proxy_url`
646
+ * Removed option: `http_proxy`, use pseudo transfer spec parameter: `EX_http_proxy_url`
647
+ * Several other changes..
607
648
 
608
649
  * 0.10.7
609
650
 
610
- * fix: ascli fails when username cannot be computed on Linux.
651
+ * Fix: `ascli` fails when username cannot be computed on Linux.
611
652
 
612
653
  * 0.10.6
613
654
 
614
- * FaspManager: transfer spec `authentication` no more needed for local transfer to use Aspera public keys. public keys will be used if there is a token and no key or password is provided.
615
- * gem version requirements made more open
655
+ * FaspManager: Transfer spec `authentication` no more needed for local transfer to use Aspera public keys. public keys will be used if there is a token and no key or password is provided.
656
+ * Gem version requirements made more open
616
657
 
617
658
  * 0.10.5
618
659
 
619
- * fix faspex package receive command not working
660
+ * Fix faspex package receive command not working
620
661
 
621
662
  * 0.10.4
622
663
 
623
- * new options for AoC : `secrets`
664
+ * New options for AoC : `secrets`
624
665
  * `ACLI-533` temp file list folder to use file lists is set by default, and used by `asession`
625
666
 
626
667
  * 0.10.3
627
668
 
628
- * included user name in oauth bearer token cache for AoC when JWT is used.
669
+ * Included user name in oauth bearer token cache for AoC when JWT is used.
629
670
 
630
671
  * 0.10.2
631
672
 
632
- * updated `search_nodes` to be more generic, so it can search not only on access key, but also other queries.
633
- * added doc for "cargo" like actions
634
- * added doc for multi-session
673
+ * Updated `search_nodes` to be more generic, so it can search not only on access key, but also other queries.
674
+ * Added doc for "cargo" like actions
675
+ * Added doc for multi-session
635
676
 
636
677
  * 0.10.1
637
678
 
638
679
  * AoC and node v4 "browse" works now on non-folder items: file, link
639
- * initial support for AoC automation (do not use yet)
680
+ * Initial support for AoC automation (do not use yet)
640
681
 
641
682
  * 0.10
642
683
 
643
- * support for transfer using IBM Cloud Object Storage
644
- * improved `find` action using arbitrary expressions
684
+ * Support for transfer using IBM Cloud Object Storage
685
+ * Improved `find` action using arbitrary expressions
645
686
 
646
687
  * 0.9.36
647
688
 
648
- * added option to specify file pair lists
689
+ * Added option to specify file pair lists
649
690
 
650
691
  * 0.9.35
651
692
 
652
- * updated plugin `preview` , changed parameter names, added documentation
653
- * fix in `ats` plugin : instance id needed in request header
693
+ * `preview`: Changed parameter names, added documentation
694
+ * `ats`: Fix: instance ID needed in request header
654
695
 
655
696
  * 0.9.34
656
697
 
657
- * parser "@preset" can be used again in option "transfer_info"
658
- * some documentation re-organizing
698
+ * Parser "@preset" can be used again in option "transfer_info"
699
+ * Some documentation re-organizing
659
700
 
660
701
  * 0.9.33
661
702
 
662
- * new command to display basic token of node
663
- * new command to display bearer token of node in AoC
664
- * the --fields= option, support +_field_name_ to add a field to default fields
665
- * many small changes
703
+ * New command to display basic token of node
704
+ * New command to display bearer token of node in AoC
705
+ * The --fields= option, support +_field_name_ to add a field to default fields
706
+ * Many small changes
666
707
 
667
708
  * 0.9.32
668
709
 
669
- * all Faspex public links are now supported
670
- * removed faspex operation `recv_publink`
671
- * replaced with option `link` (consistent with AoC)
710
+ * All Faspex public links are now supported
711
+ * Removed faspex operation `recv_publink`
712
+ * Replaced with option `link` (consistent with AoC)
672
713
 
673
714
  * 0.9.31
674
715
 
675
- * added more support for public link: receive and send package, to user or dropbox and files view.
676
- * delete expired file lists
677
- * changed text table gem from text-table to terminal-table because it supports multiline values
716
+ * Added more support for public link: receive and send package, to user or dropbox and files view.
717
+ * Delete expired file lists
718
+ * Changed text table gem from text-table to terminal-table because it supports multiline values
678
719
 
679
720
  * 0.9.27
680
721
 
681
- * basic email support with SMTP
682
- * basic proxy auto config support
722
+ * Basic email support with SMTP
723
+ * Basic proxy auto config support
683
724
 
684
725
  * 0.9.26
685
726
 
686
- * table display with --fields=ALL now includes all column names from all lines, not only first one
687
- * unprocessed argument shows error even if there is an error beforehand
727
+ * Table display with --fields=ALL now includes all column names from all lines, not only first one
728
+ * Unprocessed argument shows error even if there is an error beforehand
688
729
 
689
730
  * 0.9.25
690
731
 
691
- * the option `value` of command `find`, to filter on name, is not optional
732
+ * The option `value` of command `find`, to filter on name, is not optional
692
733
  * `find` now also reports all types (file, folder, link)
693
734
  * `find` now is able to report all fields (type, size, etc...)
694
735
 
695
736
  * 0.9.24
696
737
 
697
- * fix bug where AoC node to node transfer did not work
698
- * fix bug on error if ED25519 private key is defined in .ssh
738
+ * Fix bug where AoC node to node transfer did not work
739
+ * Fix bug on error if ED25519 private key is defined in .ssh
699
740
 
700
741
  * 0.9.23
701
742
 
702
- * defined REST error handlers, more error conditions detected
703
- * commands to select specific ascp location
743
+ * Defined REST error handlers, more error conditions detected
744
+ * Commands to select specific ascp location
704
745
 
705
746
  * 0.9.21
706
747
 
707
- * supports simplified wizard using global client
708
- * only ascp binary is required, other SDK (keys) files are now generated
748
+ * Supports simplified wizard using global client
749
+ * Only ascp binary is required, other SDK (keys) files are now generated
709
750
 
710
751
  * 0.9.20
711
752
 
712
- * improved wizard (prepare for AoC global client id)
713
- * preview generator: added option : --skip-format=&lt;png,mp4&gt;
714
- * removed outdated pictures from this doc
753
+ * Improved wizard (prepare for AoC global client id)
754
+ * Preview generator: Added option : --skip-format=&lt;png,mp4&gt;
755
+ * Removed outdated pictures from this doc
715
756
 
716
757
  * 0.9.19
717
758
 
718
- * added command aspera bearer --scope=xx
759
+ * Added command aspera bearer --scope=xx
719
760
 
720
761
  * 0.9.18
721
762
 
722
- * enhanced aspera admin events to support query
763
+ * Enhanced aspera admin events to support query
723
764
 
724
765
  * 0.9.16
725
766
 
726
767
  * AoC transfers are now reported in activity app
727
- * new interface for Rest class authentication (keep backward compatibility)
768
+ * New interface for Rest class authentication (keep backward compatibility)
728
769
 
729
770
  * 0.9.15
730
771
 
731
- * new feature: "find" command in aspera files
732
- * sample code for transfer API
772
+ * New feature: "find" command in aspera files
773
+ * Sample code for transfer API
733
774
 
734
775
  * 0.9.12
735
776
 
736
- * add nagios commands
737
- * support of ATS for IBM Cloud, removed old version based on aspera id
777
+ * Add nagios commands
778
+ * Support of ATS for IBM Cloud, removed old version based on aspera id
738
779
 
739
780
  * 0.9.11
740
781
 
741
- * change(break): @stdin is now @stdin:
742
- * support of ATS for IBM Cloud, removed old version based on aspera id
782
+ * Change(break): @stdin is now @stdin:
783
+ * Support of ATS for IBM Cloud, removed old version based on aspera id
743
784
 
744
785
  * 0.9.10
745
786
 
746
- * change(break): parameter transfer-node becomes more generic: transfer-info
747
- * Display SaaS storage usage with command: aspera admin res node --id=nn info
748
- * cleaner way of specifying source file list for transfers
749
- * change(break): replaced download_mode option with http_download action
787
+ * Change(break): Parameter transfer-node becomes more generic: `transfer-info`
788
+ * Display SaaS storage usage with command: `aspera admin res node --id=nn info`
789
+ * Cleaner way of specifying source file list for transfers
790
+ * Change(break): Replaced download_mode option with http_download action
750
791
 
751
792
  * 0.9.9
752
793
 
753
- * change(break): "aspera package send" parameter deprecated, use the --value option instead with "recipients" value. See example.
794
+ * Change(break): "aspera package send" parameter deprecated, use the --value option instead with "recipients" value. See example.
754
795
  * Now supports "cargo" for Aspera on Cloud (automatic package download)
755
796
 
756
797
  * 0.9.8
757
798
 
758
- * Faspex: use option once_only set to yes to enable cargo like function. id=NEW deprecated.
759
- * AoC: share to share transfer with command "transfer"
799
+ * Faspex: Use option once_only set to yes to enable cargo like function. id=NEW deprecated.
800
+ * AoC: Share to share transfer with command "transfer"
760
801
 
761
802
  * 0.9.7
762
803
 
763
- * homogeneous transfer spec for `node` and [`direct`](README.md#agt_direct) transfer agents
764
- * preview persistency goes to unique file by default
765
- * catch mxf extension in preview as video
766
- * Faspex: possibility to download all packages by specifying id=ALL
767
- * Faspex: to come: cargo-like function to download only new packages with id=NEW
804
+ * Homogeneous transfer spec for `node` and [`direct`](README.md#agt_direct) transfer agents
805
+ * Preview persistency goes to unique file by default
806
+ * Catch mxf extension in preview as video
807
+ * Faspex: Possibility to download all packages by specifying id=ALL
808
+ * Faspex: To come: Cargo-like function to download only new packages with id=NEW
768
809
 
769
810
  * 0.9.6
770
811
 
771
- * change(break): `@param:`is now `@preset:` and is generic
772
- * AoC: added command to display current workspace information
812
+ * Change(break): `@param:`is now `@preset:` and is generic
813
+ * AoC: Added command to display current workspace information
773
814
 
774
815
  * 0.9.5
775
816
 
776
- * new parameter: new_user_option used to choose between public_link and invite of external users.
777
- * fixed bug in wizard, and wizard uses now product detection
817
+ * New parameter: `new_user_option` used to choose between public_link and invite of external users.
818
+ * Fixed bug in wizard, and wizard uses now product detection
778
819
 
779
820
  * 0.9.4
780
821
 
781
- * change(break): onCloud file list follow --source convention as well (plus specific case for download when first path is source folder, and other are source file names).
822
+ * Change(break): `oncloud file list` follow --source convention as well (plus specific case for download when first path is source folder, and other are source file names).
782
823
  * AoC Package send supports external users
783
- * new command to export AoC config to Aspera CLI config
824
+ * New command to export AoC config to Aspera CLI config
784
825
 
785
826
  * 0.9.3
786
827
 
787
828
  * REST error message show host and code
788
- * option for quiet display
789
- * modified transfer interface and allow token re-generation on error
790
- * async add admin command
791
- * async add db parameters
792
- * change(break): new option "sources" to specify files to transfer
829
+ * Option for quiet display
830
+ * Modified transfer interface and allow token re-generation on error
831
+ * `async` add `admin` command
832
+ * `async` add db parameters
833
+ * Change(break): New option "sources" to specify files to transfer
793
834
 
794
835
  * 0.9.2
795
836
 
796
- * change(break): changed AoC package creation to match API, see AoC section
837
+ * Change(break): Changed AoC package creation to match API, see AoC section
797
838
 
798
839
  * 0.9.1
799
840
 
800
- * change(break): changed faspex package creation to match API, see Faspex section
841
+ * Change(break): Changed faspex package creation to match API, see Faspex section
801
842
 
802
843
  * 0.9
803
844
 
@@ -806,31 +847,31 @@
806
847
 
807
848
  * 0.7.6
808
849
 
809
- * add "sync" plugin
850
+ * Add `sync` plugin
810
851
 
811
852
  * 0.7
812
853
 
813
- * change(break): AoC package recv take option if for package instead of argument.
814
- * change(break): Rest class and Oauth class changed init parameters
815
- * AoC: receive package from public link
816
- * select by col value on output
817
- * added rename (AoC, node)
854
+ * Change(break): AoC `package recv` take option if for package instead of argument.
855
+ * Change(break): Rest class and Oauth class changed init parameters
856
+ * AoC: Receive package from public link
857
+ * Select by col value on output
858
+ * Added rename (AoC, node)
818
859
 
819
860
  * 0.6.19
820
861
 
821
- * change(break): ats server list provisioned &rarr; ats cluster list
822
- * change(break): ats server list clouds &rarr; ats cluster clouds
823
- * change(break): ats server list instance --cloud=x --region=y &rarr; ats cluster show --cloud=x --region=y
824
- * change(break): ats server id xxx &rarr; ats cluster show --id=xxx
825
- * change(break): ats subscriptions &rarr; ats credential subscriptions
826
- * change(break): ats api_key repository list &rarr; ats credential cache list
827
- * change(break): ats api_key list &rarr; ats credential list
828
- * change(break): ats access_key id xxx &rarr; ats access_key --id=xxx
862
+ * Change(break): `ats server list provisioned` &rarr; `ats cluster list`
863
+ * Change(break): `ats server list clouds` &rarr; `ats cluster clouds`
864
+ * Change(break): `ats server list instance --cloud=x --region=y` &rarr; `ats cluster show --cloud=x --region=y`
865
+ * Change(break): `ats server id xxx` &rarr; `ats cluster show --id=xxx`
866
+ * Change(break): `ats subscriptions` &rarr; `ats credential subscriptions`
867
+ * Change(break): `ats api_key repository list` &rarr; `ats credential cache list`
868
+ * Change(break): `ats api_key list` &rarr; `ats credential list`
869
+ * Change(break): `ats access_key id xxx` &rarr; `ats access_key --id=xxx`
829
870
 
830
871
  * 0.6.18
831
872
 
832
- * some commands take now --id option instead of id command.
873
+ * Some commands take now `--id` option instead of `id` command.
833
874
 
834
875
  * 0.6.15
835
876
 
836
- * change(break): "files" application renamed to "aspera" (for "Aspera on Cloud"). "repository" renamed to "files". Default is automatically reset, e.g. in config files and change key "files" to "aspera" in preset "default".
877
+ * Change(break): `files` application renamed to `aspera` (for "Aspera on Cloud"). `repository` renamed to `files`. Default is automatically reset, e.g. in config files and change key `files` to `aspera` in preset `default`.