aspera-cli 4.10.0 → 4.12.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 (97) hide show
  1. checksums.yaml +4 -4
  2. checksums.yaml.gz.sig +0 -0
  3. data/BUGS.md +19 -0
  4. data/CHANGELOG.md +528 -0
  5. data/CONTRIBUTING.md +143 -0
  6. data/README.md +977 -589
  7. data/bin/ascli +4 -4
  8. data/bin/asession +12 -12
  9. data/docs/test_env.conf +29 -19
  10. data/examples/aoc.rb +6 -6
  11. data/examples/dascli +18 -16
  12. data/examples/faspex4.rb +15 -15
  13. data/examples/node.rb +12 -12
  14. data/examples/proxy.pac +2 -2
  15. data/examples/server.rb +12 -12
  16. data/lib/aspera/aoc.rb +344 -272
  17. data/lib/aspera/ascmd.rb +56 -54
  18. data/lib/aspera/ats_api.rb +4 -4
  19. data/lib/aspera/cli/basic_auth_plugin.rb +15 -12
  20. data/lib/aspera/cli/extended_value.rb +9 -9
  21. data/lib/aspera/cli/{formater.rb → formatter.rb} +69 -69
  22. data/lib/aspera/cli/listener/line_dump.rb +1 -1
  23. data/lib/aspera/cli/listener/logger.rb +1 -1
  24. data/lib/aspera/cli/listener/progress.rb +5 -6
  25. data/lib/aspera/cli/listener/progress_multi.rb +16 -21
  26. data/lib/aspera/cli/main.rb +72 -73
  27. data/lib/aspera/cli/manager.rb +112 -112
  28. data/lib/aspera/cli/plugin.rb +68 -48
  29. data/lib/aspera/cli/plugins/alee.rb +4 -4
  30. data/lib/aspera/cli/plugins/aoc.rb +322 -720
  31. data/lib/aspera/cli/plugins/ats.rb +50 -52
  32. data/lib/aspera/cli/plugins/bss.rb +10 -10
  33. data/lib/aspera/cli/plugins/config.rb +514 -410
  34. data/lib/aspera/cli/plugins/console.rb +12 -12
  35. data/lib/aspera/cli/plugins/cos.rb +18 -20
  36. data/lib/aspera/cli/plugins/faspex.rb +134 -136
  37. data/lib/aspera/cli/plugins/faspex5.rb +235 -70
  38. data/lib/aspera/cli/plugins/node.rb +378 -309
  39. data/lib/aspera/cli/plugins/orchestrator.rb +52 -49
  40. data/lib/aspera/cli/plugins/preview.rb +129 -120
  41. data/lib/aspera/cli/plugins/server.rb +137 -83
  42. data/lib/aspera/cli/plugins/shares.rb +77 -52
  43. data/lib/aspera/cli/plugins/sync.rb +13 -33
  44. data/lib/aspera/cli/transfer_agent.rb +61 -61
  45. data/lib/aspera/cli/version.rb +2 -1
  46. data/lib/aspera/colors.rb +3 -3
  47. data/lib/aspera/command_line_builder.rb +78 -74
  48. data/lib/aspera/cos_node.rb +31 -29
  49. data/lib/aspera/data_repository.rb +1 -1
  50. data/lib/aspera/environment.rb +30 -28
  51. data/lib/aspera/fasp/agent_base.rb +17 -15
  52. data/lib/aspera/fasp/agent_connect.rb +34 -32
  53. data/lib/aspera/fasp/agent_direct.rb +70 -73
  54. data/lib/aspera/fasp/agent_httpgw.rb +79 -74
  55. data/lib/aspera/fasp/agent_node.rb +26 -26
  56. data/lib/aspera/fasp/agent_trsdk.rb +20 -20
  57. data/lib/aspera/fasp/error.rb +3 -2
  58. data/lib/aspera/fasp/error_info.rb +11 -8
  59. data/lib/aspera/fasp/installation.rb +80 -80
  60. data/lib/aspera/fasp/listener.rb +2 -2
  61. data/lib/aspera/fasp/parameters.rb +103 -92
  62. data/lib/aspera/fasp/parameters.yaml +313 -214
  63. data/lib/aspera/fasp/resume_policy.rb +10 -10
  64. data/lib/aspera/fasp/transfer_spec.rb +22 -2
  65. data/lib/aspera/fasp/uri.rb +7 -7
  66. data/lib/aspera/faspex_gw.rb +80 -159
  67. data/lib/aspera/faspex_postproc.rb +77 -0
  68. data/lib/aspera/hash_ext.rb +3 -3
  69. data/lib/aspera/id_generator.rb +5 -5
  70. data/lib/aspera/keychain/encrypted_hash.rb +23 -28
  71. data/lib/aspera/keychain/macos_security.rb +21 -20
  72. data/lib/aspera/log.rb +13 -13
  73. data/lib/aspera/nagios.rb +24 -23
  74. data/lib/aspera/node.rb +217 -38
  75. data/lib/aspera/oauth.rb +78 -74
  76. data/lib/aspera/open_application.rb +19 -11
  77. data/lib/aspera/persistency_action_once.rb +4 -4
  78. data/lib/aspera/persistency_folder.rb +13 -13
  79. data/lib/aspera/preview/file_types.rb +8 -8
  80. data/lib/aspera/preview/generator.rb +67 -67
  81. data/lib/aspera/preview/utils.rb +27 -27
  82. data/lib/aspera/proxy_auto_config.js +63 -63
  83. data/lib/aspera/proxy_auto_config.rb +19 -19
  84. data/lib/aspera/rest.rb +65 -67
  85. data/lib/aspera/rest_call_error.rb +2 -1
  86. data/lib/aspera/rest_error_analyzer.rb +22 -21
  87. data/lib/aspera/rest_errors_aspera.rb +16 -16
  88. data/lib/aspera/secret_hider.rb +17 -14
  89. data/lib/aspera/ssh.rb +15 -14
  90. data/lib/aspera/sync.rb +177 -62
  91. data/lib/aspera/temp_file_manager.rb +2 -2
  92. data/lib/aspera/uri_reader.rb +4 -4
  93. data/lib/aspera/web_auth.rb +13 -64
  94. data/lib/aspera/web_server_simple.rb +76 -0
  95. data.tar.gz.sig +0 -0
  96. metadata +11 -6
  97. metadata.gz.sig +0 -0
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7a6d0598399318fc5dd74a8ecd8b58f5e97da675b48b2f5ca9a5f9e286479b78
4
- data.tar.gz: 6123b9c37cb93620daa67e0e5a39b9a8841cf84bc9b0b7d72e194e8c77ac6ac7
3
+ metadata.gz: e7b048647bb937cbea1f3bd8ef7e010c18b97456aa00b45ad8be45656472ae9f
4
+ data.tar.gz: c0f02324d8916a1ca5247a313da624e8365a57c438aefc58cc1301fd5ca5e0ff
5
5
  SHA512:
6
- metadata.gz: 4f0495066cd3749f4b3a4a0c11f1a477566e956f28b8bcfdf46c0b3a6ecce49d59026f399c53184b310413b675fbf74903062e8e6e9bfc52b66a8f4f37995e51
7
- data.tar.gz: 63e33edea22d58c2b6966508bc9bd07b4e1d72a94e3d372cd0aadebf6167385fb0b81c3b244c69ea028a50754808d2b306e58e63f9ce1cb5b0b7bfea90d81a9c
6
+ metadata.gz: fca3097df5295eaf1f3fa67efe04c7d1226c5c050d01f3e3c7319210967addfa01d98fd7a7b67024cae0a085f56b0357cf4b9b7ee4eb7aedd027b7996dc59356
7
+ data.tar.gz: c45dc8053b73c26b7f0eaac877d35118aad007974ae61cb6b3e19aac373e8713f682513161e1af5250263bf461a03aa71846e4149fed411e81c771a2943c8e57
checksums.yaml.gz.sig CHANGED
Binary file
data/BUGS.md ADDED
@@ -0,0 +1,19 @@
1
+ # Reporting bugs and security vulnerabilities
2
+
3
+ Report bug, including vulnerability issues following this:
4
+
5
+ Please, make sure to include the following information:
6
+
7
+ * aspera-cli version number.
8
+ * Operating system name/version (uname -a if Unix)
9
+ * relevant section of output of error with option --log-level=debug
10
+ * Any other relevant information.
11
+
12
+ [Use Github (Public Issue Reporting)](https://github.com/IBM/aspera-cli/issues)
13
+
14
+ ## Security Policy
15
+
16
+ | Version | Supported |
17
+ | ------- | ------------------ |
18
+ | >= 4.0 | :white_check_mark: |
19
+ | < 4.0 | :x: |
data/CHANGELOG.md ADDED
@@ -0,0 +1,528 @@
1
+ # Changes (Release notes)
2
+
3
+ * 4.12.0
4
+
5
+ * new: docker: build image from official gem version, possibility to deploy beta as well
6
+ * new: generic: `delete` operation supports option `value` for deletion parameters
7
+ * new: aoc: command `aoc packages recv` accepts option `query` to specify a shared inbox
8
+ * new: faspex: (v4) user delete accepts option `value` with value `{"destroy":true}` to delete users permanently
9
+ * new: faspex: (v4) gateway to faspex 5 for package send
10
+ * new: faspex5: possibility to change email templates
11
+ * new: faspex5: shared folder list and browse
12
+ * new: faspex5: emulate faspex 4 postprocessing, plugin: `faspex5` command: `postprocessing`
13
+ * new: faspex5: send package from remote source
14
+ * new: shares: option `type` for command `shares admin user`
15
+ * new: shares: full support for shares admin operations
16
+ * change(break): shares: command `shares admin user saml_import` replaced with `shares admin user import --type=saml`
17
+ * change(break): shares: command `shares admin user ldap_import` replaced with `shares admin user add --type=ldap`
18
+ * change(break): shares: command `app_authorizations` now has sub commands `show` and `modify`
19
+ * change(break): shares: similar changes for `shares admin share user show`
20
+ * change(break): option `ascp_opts` is removed, and replaced with `transfer_info` parameter `ascp_args`
21
+
22
+ * 4.11.0
23
+
24
+ * new: vault: secret finder, migration from config file
25
+ * new: allow removal of transfer spec parameter by setting value to `null`
26
+ * new: option `ascp_opts` allows to provide native `ascp` options on command line
27
+ * new: command `sync` added to `node` (gen4) and `server` plugins, also available in `aoc`
28
+ * fix: security: no shell interpolation
29
+ * fix: when WSS and node agent: no localhost (certificate)
30
+ * fix: #99 `aoc file download` for single shared folder
31
+ * fix: due to change of API in faspex 5 for send package (paths is mandatory for any type of transfer now)
32
+ * fix: Oauth web authentication was broken, fixed now
33
+ * change(break): container image has entry point
34
+ * change(break): `aoc admin res node` commands `v3` and `v4` replaced with `do` and command `v3` moved inside `do`
35
+ * change(break): renamed options for `sync`
36
+ * change: node gen4 operations are moved from aoc plugin to node plugin but made available where gen4 is used
37
+ * change: if wss is enabled on server, use wss
38
+ * lots of cleanup and refactoring
39
+
40
+ * 4.10.0
41
+
42
+ * new: httpgw transfer agent: support api v2, support transfer through http proxy, including proxy password
43
+ * new: faspex5: get bearer token
44
+ * updates: for docker container version
45
+ * break: option `secrets` is renamed to `vault`
46
+
47
+ * 4.9.0
48
+
49
+ * new: shares: import of SAML users and LDAP users
50
+ * new: M1 apple silicon support SDK install (uses x86 ascp)
51
+ * new: support bulk operation more globally (create/delete), not all ops , though
52
+ * new: added missing transfer spec parameters, e.g. `src_base`, `password`
53
+ * new: improved documentation on faspex and aoc package send
54
+ * fix: `node do` command fixed
55
+ * fix: improved secret hiding from logs
56
+ * change(break): removed rarely commands nodeadmin, configuration, userdata, ctl from plugin `server`
57
+ as well as option `cmd_prefix`
58
+ * change: `ascli` runs as user `cliuser` instead of `root` in container
59
+ * change: default access right for config folder is now user only, including private keys
60
+
61
+ * 4.8.0
62
+
63
+ * new: #76 add resource `group_membership` in `aoc`
64
+ * new: add resource `metadata_profile` in `faspex5`
65
+ * new: add command `user profile` in `faspex5`
66
+ * new: add config wizard for `faspex5`
67
+ * new: #75 gem is signed
68
+ * change(break): removed dependency on gem `grpc` which is used only for the `trsdk` transfer agent. Users can install the gem manually if needed.
69
+ * change(break): hash vault keys are string instead of symbol
70
+ * change: cleanup with rubocop, all strings are immutable now by default, list constants are frozen
71
+ * change: removed Hash.dig implementation because it is by default in Ruby >= 2.3
72
+ * change: default is now to hide secrets on command output. Set option `show_secrets` to reveal secrets.
73
+ * change: option `insecure` displays a warning
74
+
75
+ * 4.7.0
76
+
77
+ * new: option to specify font used to generate image of text file in `preview`
78
+ * new: #66 improvement for content protection (support standard transfer spec options for direct agent)
79
+ * new: option `fpac` is now applicable to all ruby based HTTP connections, i.e. API calls
80
+ * new: option `show_secrets` to reveal secrets in command output
81
+ * new: added and updated commands for Faspex 5
82
+ * new: option `cache_tokens`
83
+ * new: Faspex4 dropbox packages can now be received by id
84
+ * change(break): command `conf gem path` replaces `conf gem_path`
85
+ * change(break): option `fpac` expects a value instead of URL
86
+ * change(break): option `cipher` in transfer spec must have hyphen
87
+ * change(break): renamed option `log_passwords` to `log_secrets`
88
+ * change(break): removed plugin `shares2` as products is now EOL
89
+ * fix: After AoC version update, wizard did not detect AoC properly
90
+
91
+ * 4.6.0
92
+
93
+ * new: command `conf plugin create`
94
+ * new: global option `plugin_folder`
95
+ * new: global option `transpose_single`
96
+ * new: simplified metadata passing for shared inbox package creation in AoC
97
+ * change(break): command `aoc packages shared_inboxes list` replaces `aoc user shared_inboxes`
98
+ * change(break): command `aoc user profile` replaces `aoc user info`
99
+ * change(break): command `aoc user workspaces list` replaces `aoc user workspaces`
100
+ * change(break): command `aoc user workspaces current` replaces `aoc workspace`
101
+ * change(break): command `conf plugin list` replaces `conf plugins`
102
+ * change(break): command `conf connect` simplified
103
+ * fix: #60 ascli executable was not installed by default in 4.5.0
104
+ * fix: add password hiding case in logs
105
+
106
+ * 4.5.0
107
+
108
+ * new: support transfer agent: [Transfer SDK](README.md#agt_trsdk)
109
+ * new: support [http socket options](README.md#http_options)
110
+ * new: logs hide passwords and secrets, option `log_passwords` to enable logging secrets
111
+ * new: `config vault` supports encrypted passwords, also macos keychain
112
+ * new: `config preset` command for consistency with id
113
+ * new: identifier can be provided using either option `id` or directly after the command, e.g. `delete 123` is the same as `delete --id=123`
114
+ * change: when using wss, use [ruby's CA certs](README.md#certificates)
115
+ * change: unexpected parameter makes exit code not zero
116
+ * change(break): options `id` and `name` cannot be specified at the same time anymore, use [positional identifier or name selection](README.md#res_select)
117
+ * change(break): `aoc admin res node` does not take workspace main node as default node if no `id` specified.
118
+ * change(break): : `orchestrator workflow status` requires id, and supports special id `ALL`
119
+ * fix: various smaller fixes and renaming of some internal classes (transfer agents and few other)
120
+
121
+ * 4.4.0
122
+
123
+ * new: `aoc packages list` add possibility to add filter with option `query`
124
+ * new: `aoc admin res xxx list` now get all items by default #50
125
+ * new: `preset` option can specify name or hash value
126
+ * new: `node` plugin accepts bearer token and access key as credential
127
+ * new: `node` option `token_type` allows using basic token in addition to aspera type.
128
+ * change: `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.
129
+ * change(break): resource `apps_new` of `aoc` replaced with `application` (more clear)
130
+
131
+ * 4.3.0
132
+
133
+ * new: 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.
134
+ * new: 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.
135
+
136
+ * 4.2.2
137
+
138
+ * new: `faspex package list` retrieves the whole list, not just first page
139
+ * new: support web based auth to aoc and faspex 5 using HTTPS, new dependency on gem `webrick`
140
+ * new: the error "Remote host is not who we expected" displays a special remediation message
141
+ * new: `conf ascp spec` displays supported transfer spec
142
+ * new: options `notif_to` and `notif_template` to send email notifications on transfer (and other events)
143
+ * fix: space character in `faspe:` url are percent encoded if needed
144
+ * fix: `preview scan`: if file_id is unknown, ignore and continue scan
145
+ * change: 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)
146
+ * change(break): option `notify` or `aoc` replaced with `notif_to` and `notif_template`
147
+
148
+ * 4.2.1
149
+
150
+ * new: command `faspex package recv` supports link of type: `faspe:`
151
+ * new: command `faspex package recv` supports option `recipient` to specify dropbox with leading `*`
152
+
153
+ * 4.2.0
154
+
155
+ * new: command `aoc remind` to receive organization membership by email
156
+ * new: in `preview` option `value` to filter out on file name
157
+ * new: `initdemo` to initialize for demo server
158
+ * new: [`direct`](README.md#agt_direct) transfer agent options: `spawn_timeout_sec` and `spawn_delay_sec`
159
+ * fix: on Windows `conf ascp use` expects ascp.exe
160
+ * fix: (break) multi_session_threshold is Integer, not String
161
+ * fix: `conf ascp install` renames sdk folder if it already exists (leftover shared lib may make fail)
162
+ * fix: removed replace_illegal_chars from default aspera.conf causing "Error creating illegal char conversion table"
163
+ * change(break): `aoc apiinfo` is removed, use `aoc servers` to provide the list of cloud systems
164
+ * change(break): parameters for resume in `transfer-info` for [`direct`](README.md#agt_direct) are now in sub-key `"resume"`
165
+
166
+ * 4.1.0
167
+
168
+ * fix: remove keys from transfer spec and command line when not needed
169
+ * fix: default to create_dir:true so that sending single file to a folder does not rename file if folder does not exist
170
+ * new: update documentation with regard to offline and docker installation
171
+ * new: renamed command `nagios_check` to `health`
172
+ * new: agent `http_gw` now supports upload
173
+ * new: added option `sdk_url` to install SDK from local file for offline install
174
+ * new: check new gem version periodically
175
+ * new: the --fields= option, support -_fieldname_ to remove a field from default fields
176
+ * new: Oauth tokens are discarded automatically after 30 minutes (useful for COS delegated refresh tokens)
177
+ * new: mimemagic is now optional, needs manual install for `preview`, compatible with version 0.4.x
178
+ * new: AoC a password can be provided for a public link
179
+ * new: `conf doc` take an optional parameter to go to a section
180
+ * new: initial support for Faspex 5 Beta 1
181
+
182
+ * 4.0.0
183
+
184
+ * now available as open source (github) with general cleanup
185
+ * changed default tool name from `mlia` to `ascli`
186
+ * changed `aspera` command to `aoc`
187
+ * changed gem name from `asperalm` to `aspera-cli`
188
+ * changed module name from `Asperalm` to `Aspera`
189
+ * removed command `folder` in `preview`, merged to `scan`
190
+ * persistency files go to sub folder instead of main folder
191
+ * added possibility to install SDK: `config ascp install`
192
+
193
+ * 0.11.8
194
+
195
+ * Simplified to use `unoconv` instead of bare `libreoffice` for office conversion, as `unoconv` does not require a X server (previously using Xvfb)
196
+
197
+ * 0.11.7
198
+
199
+ * rework on rest call error handling
200
+ * use option `display` with value `data` to remove out of extraneous information
201
+ * fixed option `lock_port` not working
202
+ * generate special icon if preview failed
203
+ * possibility to choose transfer progress bar type with option `progress`
204
+ * AoC package creation now output package id
205
+
206
+ * 0.11.6
207
+
208
+ * orchestrator : added more choice in auth type
209
+ * preview: cleanup in generator (removed and renamed parameters)
210
+ * preview: better documentation
211
+ * preview: animated thumbnails for video (option: `video_png_conv=animated`)
212
+ * preview: new event trigger: `trevents` (`events` seems broken)
213
+ * preview: unique tmp folder to avoid clash of multiple instances
214
+ * repo: added template for secrets used for testing
215
+
216
+ * 0.11.5
217
+
218
+ * added option `default_ports` for AoC (see manual)
219
+ * allow bulk delete in `aspera files` with option `bulk=yes`
220
+ * fix getting connect versions
221
+ * added section for Aix
222
+ * support all ciphers for [`direct`](README.md#agt_direct) agent (including gcm, etc..)
223
+ * added transfer spec param `apply_local_docroot` for [`direct`](README.md#agt_direct)
224
+
225
+ * 0.11.4
226
+
227
+ * possibility to give shared inbox name when sending a package (else use id and type)
228
+
229
+ * 0.11.3
230
+
231
+ * minor fixes on multi-session: avoid exception on progress bar
232
+
233
+ * 0.11.2
234
+
235
+ * fixes on multi-session: progress bat and transfer spec param for "direct"
236
+
237
+ * 0.11.1
238
+
239
+ * enhanced short_link creation commands (see examples)
240
+
241
+ * 0.11
242
+
243
+ * add transfer spec option (agent `direct` only) to provide file list directly to ascp: `EX_file_list`.
244
+
245
+ * 0.10.18
246
+
247
+ * new option in. `server` : `ssh_options`
248
+
249
+ * 0.10.17
250
+
251
+ * fixed problem on `server` for option `ssh_keys`, now accepts both single value and list.
252
+ * new modifier: `@list:<separator>val1<separator>...`
253
+
254
+ * 0.10.16
255
+
256
+ * added list of shared inboxes in workspace (or global), use `--query=@json:'{}'`
257
+
258
+ * 0.10.15
259
+
260
+ * in case of command line error, display the error cause first, and non-parsed argument second
261
+ * AoC : Activity / Analytics
262
+
263
+ * 0.10.14
264
+
265
+ * added missing bss plugin
266
+
267
+ * 0.10.13
268
+
269
+ * added Faspex5 (use option `value` to give API arguments)
270
+
271
+ * 0.10.12
272
+
273
+ * added support for AoC node registration keys
274
+ * replaced option : `local_resume` with `transfer_info` for agent [`direct`](README.md#agt_direct)
275
+ * Transfer agent is no more a Singleton instance, but only one is used in CLI
276
+ * `@incps` : new extended value modifier
277
+ * ATS: no more provides access keys secrets: now user must provide it
278
+ * begin work on "aoc" transfer agent
279
+
280
+ * 0.10.11
281
+
282
+ * minor refactor and fixes
283
+
284
+ * 0.10.10
285
+
286
+ * fix on documentation
287
+
288
+ * 0.10.9.1
289
+
290
+ * add total number of items for AoC resource list
291
+ * better gem version dependency (and fixes to support Ruby 2.0.0)
292
+ * removed aoc search_nodes
293
+
294
+ * 0.10.8
295
+
296
+ * removed option: `fasp_proxy`, use pseudo transfer spec parameter: `EX_fasp_proxy_url`
297
+ * removed option: `http_proxy`, use pseudo transfer spec parameter: `EX_http_proxy_url`
298
+ * several other changes..
299
+
300
+ * 0.10.7
301
+
302
+ * fix: ascli fails when username cannot be computed on Linux.
303
+
304
+ * 0.10.6
305
+
306
+ * 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.
307
+ * gem version requirements made more open
308
+
309
+ * 0.10.5
310
+
311
+ * fix faspex package receive command not working
312
+
313
+ * 0.10.4
314
+
315
+ * new options for AoC : `secrets`
316
+ * ACLI-533 temp file list folder to use file lists is set by default, and used by `asession`
317
+
318
+ * 0.10.3
319
+
320
+ * included user name in oauth bearer token cache for AoC when JWT is used.
321
+
322
+ * 0.10.2
323
+
324
+ * updated `search_nodes` to be more generic, so it can search not only on access key, but also other queries.
325
+ * added doc for "cargo" like actions
326
+ * added doc for multi-session
327
+
328
+ * 0.10.1
329
+
330
+ * AoC and node v4 "browse" works now on non-folder items: file, link
331
+ * initial support for AoC automation (do not use yet)
332
+
333
+ * 0.10
334
+
335
+ * support for transfer using IBM Cloud Object Storage
336
+ * improved `find` action using arbitrary expressions
337
+
338
+ * 0.9.36
339
+
340
+ * added option to specify file pair lists
341
+
342
+ * 0.9.35
343
+
344
+ * updated plugin `preview` , changed parameter names, added documentation
345
+ * fix in `ats` plugin : instance id needed in request header
346
+
347
+ * 0.9.34
348
+
349
+ * parser "@preset" can be used again in option "transfer_info"
350
+ * some documentation re-organizing
351
+
352
+ * 0.9.33
353
+
354
+ * new command to display basic token of node
355
+ * new command to display bearer token of node in AoC
356
+ * the --fields= option, support +_fieldname_ to add a field to default fields
357
+ * many small changes
358
+
359
+ * 0.9.32
360
+
361
+ * all Faspex public links are now supported
362
+ * removed faspex operation recv_publink
363
+ * replaced with option `link` (consistent with AoC)
364
+
365
+ * 0.9.31
366
+
367
+ * added more support for public link: receive and send package, to user or dropbox and files view.
368
+ * delete expired file lists
369
+ * changed text table gem from text-table to terminal-table because it supports multiline values
370
+
371
+ * 0.9.27
372
+
373
+ * basic email support with SMTP
374
+ * basic proxy auto config support
375
+
376
+ * 0.9.26
377
+
378
+ * table display with --fields=ALL now includes all column names from all lines, not only first one
379
+ * unprocessed argument shows error even if there is an error beforehand
380
+
381
+ * 0.9.25
382
+
383
+ * the option `value` of command `find`, to filter on name, is not optional
384
+ * `find` now also reports all types (file, folder, link)
385
+ * `find` now is able to report all fields (type, size, etc...)
386
+
387
+ * 0.9.24
388
+
389
+ * fix bug where AoC node to node transfer did not work
390
+ * fix bug on error if ED25519 private key is defined in .ssh
391
+
392
+ * 0.9.23
393
+
394
+ * defined REST error handlers, more error conditions detected
395
+ * commands to select specific ascp location
396
+
397
+ * 0.9.21
398
+
399
+ * supports simplified wizard using global client
400
+ * only ascp binary is required, other SDK (keys) files are now generated
401
+
402
+ * 0.9.20
403
+
404
+ * improved wizard (prepare for AoC global client id)
405
+ * preview generator: added option : --skip-format=&lt;png,mp4&gt;
406
+ * removed outdated pictures from this doc
407
+
408
+ * 0.9.19
409
+
410
+ * added command aspera bearer --scope=xx
411
+
412
+ * 0.9.18
413
+
414
+ * enhanced aspera admin events to support query
415
+
416
+ * 0.9.16
417
+
418
+ * AoC transfers are now reported in activity app
419
+ * new interface for Rest class authentication (keep backward compatibility)
420
+
421
+ * 0.9.15
422
+
423
+ * new feature: "find" command in aspera files
424
+ * sample code for transfer API
425
+
426
+ * 0.9.12
427
+
428
+ * add nagios commands
429
+ * support of ATS for IBM Cloud, removed old version based on aspera id
430
+
431
+ * 0.9.11
432
+
433
+ * change(break): @stdin is now @stdin:
434
+ * support of ATS for IBM Cloud, removed old version based on aspera id
435
+
436
+ * 0.9.10
437
+
438
+ * change(break): parameter transfer-node becomes more generic: transfer-info
439
+ * Display SaaS storage usage with command: aspera admin res node --id=nn info
440
+ * cleaner way of specifying source file list for transfers
441
+ * change(break): replaced download_mode option with http_download action
442
+
443
+ * 0.9.9
444
+
445
+ * change(break): "aspera package send" parameter deprecated, use the --value option instead with "recipients" value. See example.
446
+ * Now supports "cargo" for Aspera on Cloud (automatic package download)
447
+
448
+ * 0.9.8
449
+
450
+ * Faspex: use option once_only set to yes to enable cargo like function. id=NEW deprecated.
451
+ * AoC: share to share transfer with command "transfer"
452
+
453
+ * 0.9.7
454
+
455
+ * homogeneous transfer spec for `node` and [`direct`](README.md#agt_direct) transfer agents
456
+ * preview persistency goes to unique file by default
457
+ * catch mxf extension in preview as video
458
+ * Faspex: possibility to download all packages by specifying id=ALL
459
+ * Faspex: to come: cargo-like function to download only new packages with id=NEW
460
+
461
+ * 0.9.6
462
+
463
+ * change(break): `@param:`is now `@preset:` and is generic
464
+ * AoC: added command to display current workspace information
465
+
466
+ * 0.9.5
467
+
468
+ * new parameter: new_user_option used to choose between public_link and invite of external users.
469
+ * fixed bug in wizard, and wizard uses now product detection
470
+
471
+ * 0.9.4
472
+
473
+ * 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).
474
+ * AoC Package send supports external users
475
+ * new command to export AoC config to Aspera CLI config
476
+
477
+ * 0.9.3
478
+
479
+ * REST error message show host and code
480
+ * option for quiet display
481
+ * modified transfer interface and allow token re-generation on error
482
+ * async add admin command
483
+ * async add db parameters
484
+ * change(break): new option "sources" to specify files to transfer
485
+
486
+ * 0.9.2
487
+
488
+ * change(break): changed AoC package creation to match API, see AoC section
489
+
490
+ * 0.9.1
491
+
492
+ * change(break): changed faspex package creation to match API, see Faspex section
493
+
494
+ * 0.9
495
+
496
+ * Renamed the CLI from aslmcli to ascli
497
+ * Automatic rename and conversion of former config folder from aslmcli to ascli
498
+
499
+ * 0.7.6
500
+
501
+ * add "sync" plugin
502
+
503
+ * 0.7
504
+
505
+ * change(break): AoC package recv take option if for package instead of argument.
506
+ * change(break): Rest class and Oauth class changed init parameters
507
+ * AoC: receive package from public link
508
+ * select by col value on output
509
+ * added rename (AoC, node)
510
+
511
+ * 0.6.19
512
+
513
+ * change(break): ats server list provisioned &rarr; ats cluster list
514
+ * change(break): ats server list clouds &rarr; ats cluster clouds
515
+ * change(break): ats server list instance --cloud=x --region=y &rarr; ats cluster show --cloud=x --region=y
516
+ * change(break): ats server id xxx &rarr; ats cluster show --id=xxx
517
+ * change(break): ats subscriptions &rarr; ats credential subscriptions
518
+ * change(break): ats api_key repository list &rarr; ats credential cache list
519
+ * change(break): ats api_key list &rarr; ats credential list
520
+ * change(break): ats access_key id xxx &rarr; ats access_key --id=xxx
521
+
522
+ * 0.6.18
523
+
524
+ * some commands take now --id option instead of id command.
525
+
526
+ * 0.6.15
527
+
528
+ * 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".