aspera-cli 4.24.1 → 4.25.0.pre

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 (99) hide show
  1. checksums.yaml +4 -4
  2. checksums.yaml.gz.sig +0 -0
  3. data/CHANGELOG.md +1064 -745
  4. data/CONTRIBUTING.md +43 -100
  5. data/README.md +1281 -720
  6. data/bin/ascli +20 -1
  7. data/bin/asession +23 -27
  8. data/lib/aspera/agent/base.rb +10 -21
  9. data/lib/aspera/agent/connect.rb +2 -3
  10. data/lib/aspera/agent/desktop.rb +2 -2
  11. data/lib/aspera/agent/direct.rb +49 -32
  12. data/lib/aspera/agent/factory.rb +31 -0
  13. data/lib/aspera/api/aoc.rb +134 -76
  14. data/lib/aspera/api/cos_node.rb +3 -2
  15. data/lib/aspera/api/faspex.rb +213 -0
  16. data/lib/aspera/api/node.rb +107 -94
  17. data/lib/aspera/ascmd.rb +1 -2
  18. data/lib/aspera/ascp/installation.rb +73 -58
  19. data/lib/aspera/ascp/management.rb +119 -23
  20. data/lib/aspera/assert.rb +39 -11
  21. data/lib/aspera/cli/error.rb +4 -2
  22. data/lib/aspera/cli/extended_value.rb +91 -67
  23. data/lib/aspera/cli/formatter.rb +62 -27
  24. data/lib/aspera/cli/hints.rb +8 -0
  25. data/lib/aspera/cli/info.rb +4 -4
  26. data/lib/aspera/cli/main.rb +76 -84
  27. data/lib/aspera/cli/manager.rb +352 -248
  28. data/lib/aspera/cli/plugins/alee.rb +5 -4
  29. data/lib/aspera/cli/plugins/aoc.rb +175 -195
  30. data/lib/aspera/cli/plugins/ats.rb +4 -4
  31. data/lib/aspera/cli/plugins/base.rb +343 -0
  32. data/lib/aspera/cli/plugins/basic_auth.rb +45 -0
  33. data/lib/aspera/cli/plugins/config.rb +283 -269
  34. data/lib/aspera/cli/plugins/console.rb +27 -22
  35. data/lib/aspera/cli/plugins/cos.rb +3 -3
  36. data/lib/aspera/cli/plugins/factory.rb +78 -0
  37. data/lib/aspera/cli/plugins/faspex.rb +49 -46
  38. data/lib/aspera/cli/plugins/faspex5.rb +113 -225
  39. data/lib/aspera/cli/plugins/faspio.rb +19 -18
  40. data/lib/aspera/cli/plugins/httpgw.rb +14 -13
  41. data/lib/aspera/cli/plugins/node.rb +162 -149
  42. data/lib/aspera/cli/plugins/oauth.rb +48 -0
  43. data/lib/aspera/cli/plugins/orchestrator.rb +129 -45
  44. data/lib/aspera/cli/plugins/preview.rb +30 -50
  45. data/lib/aspera/cli/plugins/server.rb +21 -21
  46. data/lib/aspera/cli/plugins/shares.rb +45 -47
  47. data/lib/aspera/cli/sync_actions.rb +50 -39
  48. data/lib/aspera/cli/transfer_agent.rb +35 -49
  49. data/lib/aspera/cli/transfer_progress.rb +6 -6
  50. data/lib/aspera/cli/version.rb +3 -3
  51. data/lib/aspera/cli/wizard.rb +70 -55
  52. data/lib/aspera/colors.rb +6 -0
  53. data/lib/aspera/command_line_builder.rb +59 -61
  54. data/lib/aspera/command_line_converter.rb +2 -1
  55. data/lib/aspera/coverage.rb +2 -2
  56. data/lib/aspera/data_repository.rb +1 -1
  57. data/lib/aspera/environment.rb +51 -41
  58. data/lib/aspera/faspex_gw.rb +7 -5
  59. data/lib/aspera/faspex_postproc.rb +1 -1
  60. data/lib/aspera/keychain/factory.rb +1 -2
  61. data/lib/aspera/keychain/macos_security.rb +1 -1
  62. data/lib/aspera/log.rb +37 -9
  63. data/lib/aspera/markdown.rb +31 -0
  64. data/lib/aspera/nagios.rb +7 -6
  65. data/lib/aspera/oauth/base.rb +25 -28
  66. data/lib/aspera/oauth/factory.rb +9 -9
  67. data/lib/aspera/oauth/url_json.rb +2 -1
  68. data/lib/aspera/oauth/web.rb +2 -2
  69. data/lib/aspera/preview/file_types.rb +23 -37
  70. data/lib/aspera/products/connect.rb +7 -6
  71. data/lib/aspera/products/desktop.rb +1 -4
  72. data/lib/aspera/products/other.rb +9 -1
  73. data/lib/aspera/products/transferd.rb +0 -1
  74. data/lib/aspera/rest.rb +168 -113
  75. data/lib/aspera/rest_error_analyzer.rb +4 -4
  76. data/lib/aspera/ssh.rb +7 -4
  77. data/lib/aspera/ssl.rb +41 -0
  78. data/lib/aspera/sync/args.schema.yaml +46 -3
  79. data/lib/aspera/sync/conf.schema.yaml +307 -123
  80. data/lib/aspera/sync/database.rb +2 -1
  81. data/lib/aspera/sync/operations.rb +135 -79
  82. data/lib/aspera/temp_file_manager.rb +17 -5
  83. data/lib/aspera/transfer/error.rb +16 -7
  84. data/lib/aspera/transfer/parameters.rb +35 -22
  85. data/lib/aspera/transfer/resumer.rb +74 -0
  86. data/lib/aspera/transfer/spec.rb +5 -5
  87. data/lib/aspera/transfer/spec.schema.yaml +170 -59
  88. data/lib/aspera/transfer/spec_doc.rb +49 -43
  89. data/lib/aspera/uri_reader.rb +2 -2
  90. data/lib/aspera/web_auth.rb +6 -6
  91. data/lib/transferd_pb.rb +2 -2
  92. data.tar.gz.sig +0 -0
  93. metadata +26 -11
  94. metadata.gz.sig +0 -0
  95. data/lib/aspera/cli/basic_auth_plugin.rb +0 -43
  96. data/lib/aspera/cli/plugin.rb +0 -333
  97. data/lib/aspera/cli/plugin_factory.rb +0 -81
  98. data/lib/aspera/resumer.rb +0 -77
  99. data/lib/aspera/transfer/error_info.rb +0 -91
data/CHANGELOG.md CHANGED
@@ -1,882 +1,1201 @@
1
1
  # Changes (Release notes)
2
2
 
3
- * 4.24.1
4
-
5
- * Issues Fixed:
6
- * `wizard`: Fixed wizard.
7
-
8
- * 4.24.0
9
-
10
- * New Features:
11
- * `aoc`: Option `package_folder` allows specification of secondary field.
12
- * `config`: New option `invalid_characters` ensures generated file names are valid.
13
- * `config`: Added support for **dot-separated** option names, allowing nested hash structures to be specified directly on the command line.
14
- * `console`: Added support for extended filters in transfer queries.
15
- * `http_options`: New field `ssl_options` allows setting SSL Context options.
16
- * `format`: `csv` format now supports option `table_style` for customizable output.
17
- * `logger`: New option: `log_format` to control log formatting.
18
- * `sync`: New command: `db` for operations on sync database.
19
- * `sync`: Sync operations now use options `ts` and `to_folder`.
20
- * Issues Fixed:
21
- * JRuby: Modified tests and documentation for special SSH options.
22
- * `transferd`: Fixed discrepancies in transfer spec resume policies.
23
- * `desktop`: Fixed discrepancies in transfer spec resume policies.
24
- * `format`: Value of type `list` now properly display column headers.
25
- * `select`: Filter is now done on values before enhanced display in table mode.
26
- * `aoc`: #221 Fixed package encryption at rest (CSEAR) status.
27
- * Breaking Changes:
28
- * `config`: Option `silent_insecure` renamed `warn_insecure`. `yes` shows warning (default).
29
- * `ts` : Default transfer spec includes `resume_policy=sparse_csum`.
30
- * `ssh_options` : Now additive option, like `ts`.
31
- * `vault`: When creating an entry, the `label` field is now part of the creation Hash.
32
- * `console`: Removed options `filter_from` and `filter_to`. Use standard option `query` instead.
33
- * `sync`: Removed option `sync_info`. Replaced with positional parameters. Streamlined command line interface. Applies to all plugins with `sync` command.
34
- * `async`: Removed option `sync_name`. Replaced with percent selector `%name:`.
35
- * `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.
36
- * `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.
37
-
38
- * 4.23.0 2025-08-11
39
-
40
- * New Features:
41
- * `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.
42
- * `config`: Added `transferd` version 1.1.6.
43
- * Issues Fixed:
44
- * `server`: #209: missing home folder for transfer user shall not cause an error.
45
- * `direct`: #205: `kill` blocks `cmd` on Windows.
46
- * Breaking Changes:
47
- * `config`: In `ascp info`: `openssldir` → `ascp_openssl_dir`, `openssl_version` → `ascp_openssl_version`, `sdk_ascp_version` → `ascp_version`
48
-
49
- * 4.22.0 2025-06-23
50
-
51
- * New Features:
52
- * `faspex5`: Support paging for Faspex5 browsing.
53
- * `aoc`: #196 Command `packages list` now also supports option `once_only`.
54
- * `vault`: Support for IBM HashiCorp Vault to store secrets.
55
- * `wizard`: Preset name can now be specified as optional positional parameter.
56
- * `config`: New command `ascp schema` displays JSON schema for transfer spec for all, or just one agent.
57
- * `node`: #198 By default do not allow creation of folder if a link exists with the same name. Use option `query` with parameter `check` set to `false` to disable.
58
- * `node`: In gen4 operations, also used in `aoc files`, new commands: `mklink`, `mkfile`.
59
- * Issues Fixed:
60
- * `aoc`: #195 `package receive ALL` for shared inbox without workspace now works.
61
- * Breaking Changes:
62
- * `faspex5`, `aoc`: `gateway` now takes argument as `Hash` with `url` instead of only `String`.
63
- * `faspex5 postprocessing`: Now takes a flat `Hash`, instead of multi-level `Hash`.
64
- * HTTP: More retry parameters.
65
- * `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.
66
-
67
- * 4.21.2 2025-04-11
68
-
69
- * New Features:
70
- * **container**: Updated Ruby to 3.4.2
71
- * Issues Fixed:
72
- * **global**: #185 `@val:` shall stop processing extended values
73
- * **global**: #186 Removed dependency on OpenSSL 3.3 gem to avoid MSYS2 dep on Windows.
74
- * `echo`: Display of list (Array) was showing only first element of it.
75
- * `transferd`: Support for version 1.1.5+
76
- * Breaking Changes:
77
- * `preview`: Updated Image Magick to v7+
78
- * `aoc`: `admin subscription` split into `admin subscription account` and `admin subscription usage`
79
- * **agent**: `alpha` renamed to `desktop`
80
-
81
- * 4.21.1 2025-03-15
82
-
83
- * New Features:
84
- * `config`: New command: `transferd` to list and install specific version of `asperatransferd` and `ascp`
85
- * `config`: New command: `tokens` with `list`, `show`, `flush` (replace `flush_tokens`)
86
- * `faspex5`: New command: `admin contact reset_password`
87
- * `aoc`: #178 packages can be browsed, and individual files can be downloaded now.
88
- * Issues Fixed:
89
- * `config`: #175 `ascli config preset set GLOBAL version_check_days 0` causes a bad `config.yaml` to be written
90
- * `config`: #180 problem in `ascp install`
91
- * `config`: Soft links in transfer SDK archive are correctly extracted
92
- * `aoc`: #184 token cache shall be different per AoC org.
93
- * `aoc`: Fix `packages delete` not working.
94
- * `direct` agent: #174 Race condition fix with `ascp`: timeout waiting management port connect (select not readable)
95
- * `preview`: #177 fix bug that prevents preview generation to work.
96
- * Breaking Changes:
97
- * `transferd`: Use of Aspera Transfer Daemon requires minimum version 1.1.4. Agent `trsdk` renamed `transferd`.
98
- * `ascp`: Default SDK version is now 1.1.4. Removes support for ascp4.
99
- * `node`: Removed deprecated command prefix `exec:`, use `@ruby:` instead.
100
- * **global**: Now uses OpenSSL 3.
101
- * **global**: Ruby minimum versions is now 3.1 (mainly due to switch to OpenSSL 3). Future minimum is 3.2. Recommended is 3.4. (that removes macOS default ruby support. Newer Ruby version shall be installed on macOS with `brew`)
102
- * **global**: Options `transpose_single` and `multi_table` replaced with single option `multi_single` and values: `no`, `yes`, `single`.
103
- * **global**: Column name for single object is now `field` instead of `key`.
104
-
105
- * 4.20.0 2025-01-21
3
+ <!-- markdownlint-configure-file { "no-duplicate-heading": { "siblings_only": true } } -->
4
+
5
+ ## 4.25.0.pre
6
+
7
+ Released: [Place date of release here]
8
+
9
+ ### New Features
10
+
11
+ * **global**: All `Hash` and `Array` options are now cumulative (merged). Value `@none:` resets to empty value.
12
+ * **global**: Improved error diagnostic during evaluation of extended value.
13
+ * **global**: New Extended value modifier: `@:` (empty modifier) to evaluate remaining arguments as `Hash` or `Array`.
14
+ * `config`: New option: `parser` allows definition of default parser for extended values when expecting a `Hash` or `Array` type.
15
+ * `orchestrator`: Commands now takes option `query`.
16
+
17
+ ### Issues Fixed
18
+
19
+ * `aoc`: Restored command `admin workspace shared_folder :id list` which was since 4.11.0.
20
+ * `direct`: When using `ascp4` do not set env var: `ASPERA_TEST_REDIS_DISABLE`, else it fails with: `Failed to initialize application`.
21
+
22
+ ### Breaking Changes
23
+
24
+ * `server`: By default, SSH option `use_agent` is now `false`.
25
+ * `config`: Removed option `use_product`, replaced with prefix `product:` of option `ascp_path`.
26
+ * `faspex5`: Removed deprecated (4.18) command in `admin`: `resource`, use resource name as command directly in `admin`.
27
+ * `preview`: Replace gem `mimemagic` with `marcel`.
28
+ * PDF manual is now generated for [releases](https://github.com/IBM/aspera-cli/releases) only.
29
+ * HTML manual is not generated anymore.
30
+ * Build system uses now `rake` instead of `make` for easier portability with Windows.
31
+
32
+ ## 4.24.2
33
+
34
+ Released: 2025-10-24
35
+
36
+ ### New Features
37
+
38
+ * `direct`: Capability to send management messages to `ascp` on running sessions. e.g. change target rate.
39
+ * `config`: Added command: `sync spec` to get sync parameters documentation. Also added to manual.
40
+
41
+ ### Issues Fixed
42
+
43
+ * `faspex5`: Fix public link auth for Faspex 5.0.13.
44
+ * `aoc`: Fix some admin operations requiring a user's home for Files.
45
+ * `node`: Fix `transfer` operations: `modify` and `cancel`.
46
+ * `config`: #230 Fix problem when installing and detecting SDK on Windows
47
+
48
+ ### Breaking Changes
49
+
50
+ * `ats`: Removed option `params`. Use positional parameter for creation, and `query` for list.
51
+
52
+ ## 4.24.1
53
+
54
+ Released: 2025-10-02
55
+
56
+ ### Issues Fixed
57
+
58
+ * `wizard`: Our wizard was missing its wand; we’ve returned it. Magic restored.
59
+
60
+ ## 4.24.0
61
+
62
+ Released: 2025-09-30
63
+
64
+ ### New Features
65
+
66
+ * `aoc`: Option `package_folder` allows specification of secondary field.
67
+ * `config`: New option `invalid_characters` ensures generated file names are valid.
68
+ * `config`: Added support for **dot-separated** option names, allowing nested hash structures to be specified directly on the command line.
69
+ * `console`: Added support for extended filters in transfer queries.
70
+ * `http_options`: New field `ssl_options` allows setting SSL Context options.
71
+ * `format`: `csv` format now supports option `table_style` for customizable output.
72
+ * `logger`: New option: `log_format` to control log formatting.
73
+ * `sync`: New command: `db` for operations on sync database.
74
+ * `sync`: Sync operations now use options `ts` and `to_folder`.
75
+
76
+ ### Issues Fixed
77
+
78
+ * JRuby: Modified tests and documentation for special SSH options.
79
+ * `transferd`: Fixed discrepancies in transfer spec resume policies.
80
+ * `desktop`: Fixed discrepancies in transfer spec resume policies.
81
+ * `format`: Value of type `list` now properly display column headers.
82
+ * `select`: Filter is now done on values before enhanced display in table mode.
83
+ * `aoc`: #221 Fixed package encryption at rest (CSEAR) status.
84
+
85
+ ### Breaking Changes
86
+
87
+ * `config`: Option `silent_insecure` renamed `warn_insecure`. `yes` shows warning (default).
88
+ * `ts` : Default transfer spec includes `resume_policy=sparse_csum`.
89
+ * `ssh_options` : Now additive option, like `ts`.
90
+ * `vault`: When creating an entry, the `label` field is now part of the creation Hash.
91
+ * `console`: Removed options `filter_from` and `filter_to`. Use standard option `query` instead.
92
+ * `sync`: Removed option `sync_info`. Replaced with positional parameters. Streamlined command line interface. Applies to all plugins with `sync` command.
93
+ * `async`: Removed option `sync_name`. Replaced with percent selector `%name:`.
94
+ * `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.
95
+ * `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.
96
+
97
+ ## 4.23.0
98
+
99
+ Released: 2025-08-11
100
+
101
+ ### New Features
102
+
103
+ * `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.
104
+ * `config`: Added `transferd` version 1.1.6.
105
+
106
+ ### Issues Fixed
107
+
108
+ * `server`: #209: missing home folder for transfer user shall not cause an error.
109
+ * `direct`: #205: `kill` blocks `cmd` on Windows.
110
+
111
+ ### Breaking Changes
112
+
113
+ * `config`: In `ascp info`: `openssldir` &rarr; `ascp_openssl_dir`, `openssl_version` &rarr; `ascp_openssl_version`, `sdk_ascp_version` &rarr; `ascp_version`
114
+
115
+ ## 4.22.0
116
+
117
+ Released: 2025-06-23
118
+
119
+ ### New Features
120
+
121
+ * `faspex5`: Support paging for Faspex5 browsing.
122
+ * `aoc`: #196 Command `packages list` now also supports option `once_only`.
123
+ * `vault`: Support for IBM HashiCorp Vault to store secrets.
124
+ * `wizard`: Preset name can now be specified as optional positional parameter.
125
+ * `config`: New command `ascp schema` displays JSON schema for transfer spec for all, or just one agent.
126
+ * `node`: #198 By default do not allow creation of folder if a link exists with the same name. Use option `query` with parameter `check` set to `false` to disable.
127
+ * `node`: In gen4 operations, also used in `aoc files`, new commands: `mklink`, `mkfile`.
128
+
129
+ ### Issues Fixed
130
+
131
+ * `aoc`: #195 `package receive ALL` for shared inbox without workspace now works.
132
+
133
+ ### Breaking Changes
134
+
135
+ * `faspex5`, `aoc`: `gateway` now takes argument as `Hash` with `url` instead of only `String`.
136
+ * `faspex5 postprocessing`: Now takes a flat `Hash`, instead of multi-level `Hash`.
137
+ * HTTP: More retry parameters.
138
+ * `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.
139
+
140
+ ## 4.21.2
141
+
142
+ Released: 2025-04-11
143
+
144
+ ### New Features
145
+
146
+ * **container**: Updated Ruby to 3.4.2
147
+
148
+ ### Issues Fixed
149
+
150
+ * **global**: #185 `@val:` shall stop processing extended values
151
+ * **global**: #186 Removed dependency on OpenSSL 3.3 gem to avoid `MSYS2` dep on Windows.
152
+ * `echo`: Display of list (Array) was showing only first element of it.
153
+ * `transferd`: Support for version 1.1.5+
154
+
155
+ ### Breaking Changes
156
+
157
+ * `preview`: Updated Image Magick to v7+
158
+ * `aoc`: `admin subscription` split into `admin subscription account` and `admin subscription usage`
159
+ * **agent**: `alpha` renamed to `desktop`
160
+
161
+ ## 4.21.1
162
+
163
+ Released: 2025-03-15
164
+
165
+ ### New Features
166
+
167
+ * `config`: New command: `transferd` to list and install specific version of `asperatransferd` and `ascp`
168
+ * `config`: New command: `tokens` with `list`, `show`, `flush` (replace `flush_tokens`)
169
+ * `faspex5`: New command: `admin contact reset_password`
170
+ * `aoc`: #178 packages can be browsed, and individual files can be downloaded now.
171
+
172
+ ### Issues Fixed
173
+
174
+ * `config`: #175 `ascli config preset set GLOBAL version_check_days 0` causes a bad `config.yaml` to be written
175
+ * `config`: #180 problem in `ascp install`
176
+ * `config`: Soft links in transfer SDK archive are correctly extracted
177
+ * `aoc`: #184 token cache shall be different per AoC org.
178
+ * `aoc`: Fix `packages delete` not working.
179
+ * `direct` agent: #174 Race condition fix with `ascp`: timeout waiting management port connect (select not readable)
180
+ * `preview`: #177 fix bug that prevents preview generation to work.
181
+
182
+ ### Breaking Changes
183
+
184
+ * `transferd`: Use of Aspera Transfer Daemon requires minimum version 1.1.4. Agent `trsdk` renamed `transferd`.
185
+ * `ascp`: Default SDK version is now 1.1.4. Removes support for ascp4.
186
+ * `node`: Removed deprecated command prefix `exec:`, use `@ruby:` instead.
187
+ * **global**: Now uses OpenSSL 3.
188
+ * **global**: Ruby minimum versions is now 3.1 (mainly due to switch to OpenSSL 3). Future minimum is 3.2. Recommended is 3.4. (that removes macOS default ruby support. Newer Ruby version shall be installed on macOS with `brew`)
189
+ * **global**: Options `transpose_single` and `multi_table` replaced with single option `multi_single` and values: `no`, `yes`, `single`.
190
+ * **global**: Column name for single object is now `field` instead of `key`.
191
+
192
+ ## 4.20.0
193
+
194
+ Released: 2025-01-21
106
195
 
107
196
  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`.
108
197
 
109
- * New Features:
110
- * `aoc`: Improved usability for creation of Admin shared folders.
111
- * `node`: New option `node_cache` (bool) for gen4 operations.
112
- * `node`: Option `root_id` now always works for node gen4, as well as `%id:` for file selection in addition to path.
113
- * `node`: `transfer list` now uses the `iteration_token` to retrieve all values. Option `once_only` is now supported.
114
- * **global**: Option `http_options` now include retry options.
115
- * Issues Fixed:
116
- * `aoc`: Fixed `find` command not working. (undefined variable)
117
- * `aoc`: #165 AoC `mkdir` now follows the last link of containing folder
118
- * Breaking Changes:
119
- * Internal: Basic REST calls now return data directly. (no more `data` key). For advanced calls, use `call`.
120
- * 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.
198
+ ### New Features
199
+
200
+ * `aoc`: Improved usability for creation of Admin shared folders.
201
+ * `node`: New option `node_cache` (bool) for gen4 operations.
202
+ * `node`: Option `root_id` now always works for node gen4, as well as `%id:` for file selection in addition to path.
203
+ * `node`: `transfer list` now uses the `iteration_token` to retrieve all values. Option `once_only` is now supported.
204
+ * **global**: Option `http_options` now include retry options.
205
+
206
+ ### Issues Fixed
207
+
208
+ * `aoc`: Fixed `find` command not working. (undefined variable)
209
+ * `aoc`: #165 AoC `mkdir` now follows the last link of containing folder
210
+
211
+ ### Breaking Changes
212
+
213
+ * Internal: Basic REST calls now return data directly. (no more `data` key). For advanced calls, use `call`.
214
+ * 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.
121
215
  **global**: Option `format=multi` is replaced with option `multi_table=yes`
122
- * `faspex5`: Removed deprecated option `value` replaced with positional parameter.
216
+ * `faspex5`: Removed deprecated option `value` replaced with positional parameter.
123
217
 
124
- * 4.19.0 2024-10-02
125
-
126
- * New Features:
127
- * `server`: Add support for `async` (Aspera Sync) from Transfer SDK
128
- * **global**: #156 support sending folders with `httpgw`
129
- * **global**: New value for option `format`: `multi`
130
- * Issues Fixed:
131
- * `aoc`: #157 fix problem with `files browse` on a link
132
- * `sync`: Better documentation and handling of options.
133
- * Breaking Changes:
134
- * **global**: Default value for direct agent option `transfer_info.multi_incr_udp` is `true` on Windows, and now `false` on other platforms.
135
- * **global**: Token based transfers now use the RSA key only. Direct agent option `transfer_info.client_ssh_key` allows changing this behavior.
218
+ ## 4.19.0
219
+
220
+ Released: 2024-10-02
221
+
222
+ ### New Features
223
+
224
+ * `server`: Add support for `async` (Aspera Sync) from Transfer SDK
225
+ * **global**: #156 support sending folders with `httpgw`
226
+ * **global**: New value for option `format`: `multi`
227
+
228
+ ### Issues Fixed
229
+
230
+ * `aoc`: #157 fix problem with `files browse` on a link
231
+ * `sync`: Better documentation and handling of options.
232
+
233
+ ### Breaking Changes
234
+
235
+ * **global**: Default value for direct agent option `transfer_info.multi_incr_udp` is `true` on Windows, and now `false` on other platforms.
236
+ * **global**: Token based transfers now use the RSA key only. Direct agent option `transfer_info.client_ssh_key` allows changing this behavior.
136
237
 
137
- * 4.18.1 2024-08-21
138
-
139
- * New Features:
140
- * None
141
- * Issues Fixed:
142
- * **global**: #146 (@junkimu) Fix problem on Windows WRT terminal detection
143
- * **global**: Node gen4 (`aoc`) browsing through link now follows the link correctly
144
- * `shares`: #147 Fix problem for `shares files mkdir`
145
- * Breaking Changes:
146
- * **global**: Removed option `id`, deprecated since 4.14.0
147
-
148
- * 4.18.0 2024-07-10
238
+ ## 4.18.1
239
+
240
+ Released: 2024-08-21
241
+
242
+ ### New Features
243
+
244
+ * None
245
+
246
+ ### Issues Fixed
247
+
248
+ * **global**: #146 (@junkimu) Fix problem on Windows WRT terminal detection
249
+ * **global**: Node gen4 (`aoc`) browsing through link now follows the link correctly
250
+ * `shares`: #147 Fix problem for `shares files mkdir`
251
+
252
+ ### Breaking Changes
253
+
254
+ * **global**: Removed option `id`, deprecated since 4.14.0
255
+
256
+ ## 4.18.0
257
+
258
+ Released: 2024-07-10
149
259
 
150
- * New Features:
151
- * `faspex5`: Added command `admin configuration` for global parameters.
152
- * `faspex5`: Added command `admin clean_deleted`.
153
- * `faspex5`: Added resource `distribution_list`.
154
- * `node`: "gen3" browse now returns all elements using pages, and supports option `query` with parameter `recursive`, `max`, `self`.
155
- * `httpgw`: New plugin, detect the GW.
156
- * `faspio`: New plugin, configure bridges.
157
- * `config`: `ascp info` also shows the version of the OpenSSL library used by `ascp`.
158
- * `node`: New action: `transport` to display transfer address and ports
159
- * **global**: Added option `http_proxy`, as an alias to env var `http_proxy`.
160
- * **global**: Possibility to filter fields when using formats like `json` or `yaml`.
161
- * Issues Fixed:
162
- * `faspex5`: Fixed support for percent selector for metadata profiles.
163
- * Breaking Changes:
164
- * `aoc` : `admin resource` is deprecated, use just `admin`.
165
- * `faspex5` : `admin resource` is deprecated, use just `admin`.
166
- * **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)
167
- * **global**: Option `warnings` (and short `w`) is removed. To get ruby warnings invoke with `ruby -w .../ascli ...`. See `Makefile` in `test`
168
- * **global**: Option `table_style` now expects a Hash, not String.
169
- * **bss**: Removed unused plugin.
170
-
171
- * 4.17.0 2024-07-13
172
-
173
- * New Features:
174
- * `faspex5`: Automatic detection of HTTPGW.
175
- * `faspex5`: Support public and private invitations.
176
- * `faspex5`: Public links: Auto-fill recipient.
177
- * `faspex5`: Recursive content of package.
178
- * `faspex5`: Folder browsing now uses paging, requires >= 5.0.8.
179
- * `aoc`: Automatic detection of HTTPGW.
180
- * `shares`: Added group membership management.
181
- * Issues Fixed:
182
- * `aoc`: `exclude_dropbox_packages` query option can be overridden (#135)
183
- * **global**: Removed gem dependency on `bigdecimal` (not used and requires compilation)
184
- * **global**: Tested with JRuby 9.4.6.0 (use `ServerSocket` instead of `Socket`)
185
- * **global**: Update version for gem `terminal-table` to 3.0.2
186
- * Breaking Changes:
187
- * `config`: Command `remote_certificate` now takes a subcommand.
188
- * **global**: Moved a few internal classes in new/renamed modules
189
- * **global**: Deprecated pseudo transfer specification parameters starting with `EX_`:
190
- * `EX_ssh_key_paths`. Use spec `ssh_private_key` or option `transfer_info={"ascp_args":["-i","..."]}`
191
- * `EX_http_proxy_url`. Use option `transfer_info={"ascp_args":["-x","..."]}`
192
- * `EX_http_transfer_jpeg`. Use option `transfer_info={"ascp_args":["-j","1"]}`
193
- * `EX_no_read`. Use option `transfer_info={"ascp_args":["--no-read"]}`
194
- * `EX_no_write`. Use option `transfer_info={"ascp_args":["--no-write"]}`
195
- * `EX_file_list`. Use `ascli` file list feature or option `transfer_info={"ascp_args":["--file-list","..."]}`
196
- * `EX_file_pair_list`. Use `ascli` file list feature or option `transfer_info={"ascp_args":["--file-pair-list","..."]}`
197
- * `EX_ascp_args`. Use option `transfer_info={"ascp_args":[...]}`
198
- * `EX_at_rest_password`. Use spec parameter `content_protection_password`
199
- * `EX_proxy_password`. Set password in spec parameter `proxy` or use env var `ASPERA_PROXY_PASS`.
200
- * `EX_license_text`. Use env var `ASPERA_SCP_LICENSE`.
201
-
202
- * 4.16.0 2024-02-15
203
-
204
- * New Features:
205
- * **global**: Option `output` to redirect result to a file instead of `stdout`
206
- * **global**: New option `silent_insecure`
207
- * `config`: Keys added to `config ascp info`
208
- * `config`: Added command `pubkey` to extract public key from private key
209
- * `config`: New command `vault info`
210
- * `faspex5`: Added `shared_folders` management
211
- * `faspex5`: If package has content protection, ask passphrase interactively, unless `content_protection=null` in `ts`
212
- * `faspex`: Added `INIT` for `once_only`
213
- * `aoc`: Added `INIT` for `once_only`
214
- * `aoc`: More list commands honor option `query`
215
- * Issues Fixed:
216
- * `config`: Wizard was failing due to `require` of optional gem.
217
- * `aoc`: Use paging to list entities, instead of just one page(e.g. retrieve all packages)
218
- * `faspex5`: When receiving ALL packages, only get those with status `completed`.
219
- * `direct` agent: Better support for WSS
220
- * Breaking Changes:
221
- * `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`.
222
- * `aoc`, `faspex`: Package `recv` command changed to `receive`, for consistency with faspex5 (`recv` is now an alias command)
223
-
224
- * 4.15.0 2023-11-18
225
-
226
- * General: Removed many redundant options, more consistency between plugins, see below in "break".
227
- * New Features:
228
- * **global**: Added resolution hints for well known issues.
229
- * **global**: Extended value expression `@extend:` finds and replace extended values in a string (e.g. for JSON)
230
- * **global**: Option `fields` now supports `RegExp`
231
- * **global**: Option `home` to set the main folder for configuration and cache
232
- * **global**: Option `ignore_certificate` to specify specific URLs instead of global option `insecure`
233
- * **global**: Option `cert_stores` to specify alternate certificate stores
234
- * **global**: Uniform progress bar for any type of transfer.
235
- * **global**: Add extended value types: `re` and `yaml`
236
- * **global**: Option `pid_file` to write tool's PID during execution, deleted on exit
237
- * `config`: Command `remote_certificate` to retrieve a remote certificate
238
- * `config`: Added logger level `trace1` and `trace2`
239
- * `config`: `wizard` can detect multiple applications at the same address or URL.
240
- * `aoc`: Wizard accepts public links
241
- * `aoc`: Support private links, and possibility to list shared folder with workspace `@json:null`
242
- * `orchestrator`: Error analysis for workflow start
243
- * `httpgw`: Now supports pseudo file for testing: e.g. `faux:///testfile?1k`
244
- * `node`: Added command `transfer sessions` to list all sessions of all transfers
245
- * `node`: Generate bearer token from private key and user information
246
- * `node`: Access node API with bearer token as credentials
247
- * **global**: Agent `direct` allows ignoring certificate for WSS using HTTP options
248
- * `preview`: Command `show` generates a preview and displays it in terminal
249
- * Issues Fixed:
250
- * 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).
251
- * Breaking Changes:
252
- * **global**: Commands `detect` and `wizard` takes now a mandatory argument: address or URL instead of option `url`.
253
- * **global**: Renamed option `pkeypath` to `key_path`
254
- * **global**: Renamed option `notif_to` to `notify_to` and `notif_template` to `notify_template`
255
- * **global**: Removed extended value handler `incps`, as it is never used (use `extend` instead).
256
- * **global**: Option `fields`: `+prop` is replaced with: `DEF,prop` and `-field` is replaced with: `DEF,-field`, and whole list is evaluated.
257
- * **global**: Replaced option `progress` with option `progressbar` (bool)
258
- * **global**: Removed option `rest_debug` and `-r`, replaced with `--log-level=trace2`
259
- * **global**: The default file name for private key when using wizard is change from `aspera_aoc_key` to `my_private_key.pem`
260
- * `faspex5`: Removed option and `auth` type `link`: simply provide the public link as `url`
261
- * `faspex`: Remote source selection now uses percent selector instead of parameter `id` or `name`
262
- * `faspex`: Option `source_name` is now `remote_source`
263
- * `aoc`: Selection by name uses percent selector instead of option or parameter `name`
264
- * `aoc`: Removed option `link`: use `url` instead
265
- * `aoc`: In command `short_link`, place type before command, e.g. `short_link private create /blah`
266
- * `aoc`: Replaced option `operation` with mandatory positional parameter for command `files transfer`
267
- * `aoc`: Replaced option `from_folder` with mandatory positional parameter for command `files transfer`
268
- * `orchestrator`: Workflow start takes arguments as optional positional extended value instead of option `param`
269
- * `node`: `find` command now takes an optional `@ruby:` extended value instead of option `query` with prefix: `exec:`
270
- * `sync`: Plugin `sync` is removed: actions are available through `server` and `node` plugins.
271
- * `sync`: Replaced option `sync_session` with optional positional parameter.
272
- * `preview`: Command `scan`, `events` and `trevents` replaced option `query` with optional positional parameter for filter (like `find`).
273
- * **global**: Agent `trsdk` parameters `host` and `port` in option `transfer_info` are replaced with parameter `url`, like `grpc://host:port`
274
-
275
- * 4.14.0 2023-09-22
276
-
277
- * New Features:
278
- * `server`: Option `passphrase` for simpler command line (#114)
279
- * Percent selector for entities identifier
280
- * `faspex5`: Shared inbox and workgroup membership management
281
- * `faspex5`: Invite external user to shared inbox
282
- * `faspex5`: Package list and receive from workgroup and shared inbox
283
- * `config`: Command `ascp info` shows default transfer spec.
284
- * **global**: Agent `httpgw` synchronous and asynchronous upload modes
285
- * `node`: Command `bandwidth_average` to get average bandwidth of node, per periods
286
- * Issues Fixed:
287
- * Option `ts`: Deep add and remove of keys. (#117)
288
- * `faspex5`: User lookup for `packages send` shall be exact match (#120)
289
- * **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.
290
- * Breaking Changes:
291
- * Using `aoc files` or node gen4 operations (`browse`, `delete`) on a link will follow the link only if path ends with /
292
- * `shares`: Command `repository` is changed to `files` for consistency with aoc and upcoming faspex5, but is still available as alias
293
- * `aoc`: Better handling of shared links
294
- * **global**: Option `value` is deprecated. Use positional parameter for creation data and option `query` for list/delete operations.
295
- * `config`: Remove deprecated command: `export_to_cli`
296
- * `config`: Removed all legacy preset command, newer command `preset` shall be used now.
297
- * `config`: SDK is now installed in `$HOME/.aspera/sdk` instead of `$HOME/.aspera/ascli/sdk`
298
- * `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_`
299
- * `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`
300
-
301
- * 4.13.0 2023-06-29
302
-
303
- * New Features:
304
- * `preview`: Option `reencode_ffmpeg` allows overriding all re-encoding options
305
- * `faspex5`: `package delete` (#107)
306
- * `faspex5`: `package recv` for inboxes and regular users (#108)
307
- * `faspex5`: SMTP management
308
- * `faspex5`: Use public link for authorization of package download, using option `link`
309
- * `faspex5`: List content of package, and allow partial download of package
310
- * `faspex5`: List packages support multiple pages and items limitations (`max` and `pmax`)
311
- * `aoc`: Files operations with workspace-less user (#109)
312
- * `node`: `async` with gen3 token (#110)
313
- * `node`: Display of preview of file in terminal for access keys
314
- * Issues Fixed:
315
- * `cos`: Do not use refresh token when not supported
316
- * **container**: SDK installed in other folder than `ascli` (#106)
317
- * Breaking Changes:
318
- * Option `transfer_info` is now cumulative, setting several times merge values
319
- * 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.
320
-
321
- * 4.12.0 2023-03-20
322
-
323
- * New Features:
324
- * **container**: Build image from official gem version, possibility to deploy beta as well
325
- * **global**: `delete` operation supports option `value` for deletion parameters
326
- * `aoc`: Command `aoc packages recv` accepts option `query` to specify a shared inbox
327
- * `faspex`: (v4) user delete accepts option `value` with value `{"destroy":true}` to delete users permanently
328
- * `faspex`: (v4) gateway to Faspex 5 for package send
329
- * `faspex5`: Possibility to change email templates
330
- * `faspex5`: Shared folder list and browse
331
- * `faspex5`: Emulate Faspex 4 post-processing, plugin: `faspex5` command: `postprocessing`
332
- * `faspex5`: Send package from remote source
333
- * `shares`: Option `type` for command `shares admin user`
334
- * `shares`: Full support for shares admin operations
335
- * Breaking Changes:
336
- * `shares`: Command `shares admin user saml_import` replaced with `shares admin user import --type=saml`
337
- * `shares`: Command `shares admin user ldap_import` replaced with `shares admin user add --type=ldap`
338
- * `shares`: Command `app_authorizations` now has sub commands `show` and `modify`
339
- * `shares`: Similar changes for `shares admin share user show`
340
- * Option `ascp_opts` is removed, and replaced with `transfer_info` parameter `ascp_args`
341
-
342
- * 4.11.0 2023-01-26
343
-
344
- * New Features:
345
- * **global**: `vault`: Secret finder, migration from config file
346
- * **global**: Allow removal of transfer spec parameter by setting value to `null`
347
- * **global**: Option `ascp_opts` allows providing native `ascp` options on command line
348
- * `node`, `server`: Command `sync` added to `node` (gen4) and `server` plugins, also available in `aoc`
349
- * Issues Fixed:
350
- * **global**: Security: no shell interpolation
351
- * **global**: Agent `node`: when WSS is used: no localhost (certificate)
352
- * `aoc`: #99 `file download` for single shared folder
353
- * `faspex5`: Change of API in Faspex 5 for send package (paths is mandatory for any type of transfer now)
354
- * **global**: OAuth web authentication was broken, fixed now
355
- * Breaking Changes:
356
- * **container**: Image has entry point
357
- * `aoc`: `admin res node` commands `v3` and `v4` replaced with `do` and command `v3` moved inside `do`
358
- * Renamed options for `sync`
359
- * Node gen4 operations are moved from aoc plugin to node plugin but made available where gen4 is used
360
- * If wss is enabled on server, use wss
361
- * Lots of cleanup and refactoring
362
-
363
- * 4.10.0 2022-12-02
364
-
365
- * New Features:
366
- * `httpgw`: Transfer agent support API v2, support transfer through HTTP proxy, including proxy password
367
- * `faspex5`: Get bearer token
368
- * Issues Fixed:
369
- * **container**: Container version
370
- * Breaking Changes:
371
- * `config`: Option `secrets` is renamed to `vault`
372
-
373
- * 4.9.0 2022-09-15
374
-
375
- * New Features:
376
- * `shares`: Import of SAML users and LDAP users
377
- * M1 apple silicon support SDK install (uses x86 ascp)
378
- * Support bulk operation more globally (create/delete), not all ops , though
379
- * Added missing transfer spec parameters, e.g. `src_base`, `password`
380
- * Improved documentation on faspex and aoc package send
381
- * Issues Fixed:
382
- * `node do` command fixed
383
- * Improved secret hiding from logs
384
- * Breaking Changes:
385
- * Removed rarely commands `nodeadmin`, `configuration`, `userdata`, `ctl` from plugin `server`
260
+ ### New Features
261
+
262
+ * `faspex5`: Added command `admin configuration` for global parameters.
263
+ * `faspex5`: Added command `admin clean_deleted`.
264
+ * `faspex5`: Added resource `distribution_list`.
265
+ * `node`: "gen3" browse now returns all elements using pages, and supports option `query` with parameter `recursive`, `max`, `self`.
266
+ * `httpgw`: New plugin, detect the GW.
267
+ * `faspio`: New plugin, configure bridges.
268
+ * `config`: `ascp info` also shows the version of the OpenSSL library used by `ascp`.
269
+ * `node`: New action: `transport` to display transfer address and ports
270
+ * **global**: Added option `http_proxy`, as an alias to env var `http_proxy`.
271
+ * **global**: Possibility to filter fields when using formats like `json` or `yaml`.
272
+
273
+ ### Issues Fixed
274
+
275
+ * `faspex5`: Fixed support for percent selector for metadata profiles.
276
+
277
+ ### Breaking Changes
278
+
279
+ * `aoc` : `admin resource` is deprecated, use just `admin`.
280
+ * `faspex5` : `admin resource` is deprecated, use just `admin`.
281
+ * **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)
282
+ * **global**: Option `warnings` (and short `w`) is removed. To get ruby warnings invoke with `ruby -w .../ascli ...`. See `Makefile` in `test`
283
+ * **global**: Option `table_style` now expects a Hash, not String.
284
+ * **bss**: Removed unused plugin.
285
+
286
+ ## 4.17.0
287
+
288
+ Released: 2024-07-13
289
+
290
+ ### New Features
291
+
292
+ * `faspex5`: Automatic detection of HTTPGW.
293
+ * `faspex5`: Support public and private invitations.
294
+ * `faspex5`: Public links: Auto-fill recipient.
295
+ * `faspex5`: Recursive content of package.
296
+ * `faspex5`: Folder browsing now uses paging, requires >= 5.0.8.
297
+ * `aoc`: Automatic detection of HTTPGW.
298
+ * `shares`: Added group membership management.
299
+
300
+ ### Issues Fixed
301
+
302
+ * `aoc`: `exclude_dropbox_packages` query option can be overridden (#135)
303
+ * **global**: Removed gem dependency on `bigdecimal` (not used and requires compilation)
304
+ * **global**: Tested with JRuby 9.4.6.0 (use `ServerSocket` instead of `Socket`)
305
+ * **global**: Update version for gem `terminal-table` to 3.0.2
306
+
307
+ ### Breaking Changes
308
+
309
+ * `config`: Command `remote_certificate` now takes a subcommand.
310
+ * **global**: Moved a few internal classes in new/renamed modules
311
+ * **global**: Deprecated pseudo transfer specification parameters starting with `EX_`:
312
+ * `EX_ssh_key_paths`. Use spec `ssh_private_key` or option `transfer_info={"ascp_args":["-i","..."]}`
313
+ * `EX_http_proxy_url`. Use option `transfer_info={"ascp_args":["-x","..."]}`
314
+ * `EX_http_transfer_jpeg`. Use option `transfer_info={"ascp_args":["-j","1"]}`
315
+ * `EX_no_read`. Use option `transfer_info={"ascp_args":["--no-read"]}`
316
+ * `EX_no_write`. Use option `transfer_info={"ascp_args":["--no-write"]}`
317
+ * `EX_file_list`. Use `ascli` file list feature or option `transfer_info={"ascp_args":["--file-list","..."]}`
318
+ * `EX_file_pair_list`. Use `ascli` file list feature or option `transfer_info={"ascp_args":["--file-pair-list","..."]}`
319
+ * `EX_ascp_args`. Use option `transfer_info={"ascp_args":[...]}`
320
+ * `EX_at_rest_password`. Use spec parameter `content_protection_password`
321
+ * `EX_proxy_password`. Set password in spec parameter `proxy` or use env var `ASPERA_PROXY_PASS`.
322
+ * `EX_license_text`. Use env var `ASPERA_SCP_LICENSE`.
323
+
324
+ ## 4.16.0
325
+
326
+ Released: 2024-02-15
327
+
328
+ ### New Features
329
+
330
+ * **global**: Option `output` to redirect result to a file instead of `stdout`
331
+ * **global**: New option `silent_insecure`
332
+ * `config`: Keys added to `config ascp info`
333
+ * `config`: Added command `pubkey` to extract public key from private key
334
+ * `config`: New command `vault info`
335
+ * `faspex5`: Added `shared_folders` management
336
+ * `faspex5`: If package has content protection, ask passphrase interactively, unless `content_protection=null` in `ts`
337
+ * `faspex`: Added `INIT` for `once_only`
338
+ * `aoc`: Added `INIT` for `once_only`
339
+ * `aoc`: More list commands honor option `query`
340
+
341
+ ### Issues Fixed
342
+
343
+ * `config`: Wizard was failing due to `require` of optional gem.
344
+ * `aoc`: Use paging to list entities, instead of just one page(e.g. retrieve all packages)
345
+ * `faspex5`: When receiving ALL packages, only get those with status `completed`.
346
+ * `direct` agent: Better support for WSS
347
+
348
+ ### Breaking Changes
349
+
350
+ * `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`.
351
+ * `aoc`, `faspex`: Package `recv` command changed to `receive`, for consistency with faspex5 (`recv` is now an alias command)
352
+
353
+ ## 4.15.0
354
+
355
+ Released: 2023-11-18
356
+
357
+ General: Removed many redundant options, more consistency between plugins, see below in "break"
358
+
359
+ ### New Features
360
+
361
+ * **global**: Added resolution hints for well known issues.
362
+ * **global**: Extended value expression `@extend:` finds and replace extended values in a string (e.g. for JSON)
363
+ * **global**: Option `fields` now supports `RegExp`
364
+ * **global**: Option `home` to set the main folder for configuration and cache
365
+ * **global**: Option `ignore_certificate` to specify specific URLs instead of global option `insecure`
366
+ * **global**: Option `cert_stores` to specify alternate certificate stores
367
+ * **global**: Uniform progress bar for any type of transfer.
368
+ * **global**: Add extended value types: `re` and `yaml`
369
+ * **global**: Option `pid_file` to write tool's PID during execution, deleted on exit
370
+ * `config`: Command `remote_certificate` to retrieve a remote certificate
371
+ * `config`: Added logger level `trace1` and `trace2`
372
+ * `config`: `wizard` can detect multiple applications at the same address or URL.
373
+ * `aoc`: Wizard accepts public links
374
+ * `aoc`: Support private links, and possibility to list shared folder with workspace `@json:null`
375
+ * `orchestrator`: Error analysis for workflow start
376
+ * `httpgw`: Now supports pseudo file for testing: e.g. `faux:///testfile?1k`
377
+ * `node`: Added command `transfer sessions` to list all sessions of all transfers
378
+ * `node`: Generate bearer token from private key and user information
379
+ * `node`: Access node API with bearer token as credentials
380
+ * **global**: Agent `direct` allows ignoring certificate for WSS using HTTP options
381
+ * `preview`: Command `show` generates a preview and displays it in terminal
382
+
383
+ ### Issues Fixed
384
+
385
+ * 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).
386
+
387
+ ### Breaking Changes
388
+
389
+ * **global**: Commands `detect` and `wizard` takes now a mandatory argument: address or URL instead of option `url`.
390
+ * **global**: Renamed option `pkeypath` to `key_path`
391
+ * **global**: Renamed option `notif_to` to `notify_to` and `notif_template` to `notify_template`
392
+ * **global**: Removed extended value handler `incps`, as it is never used (use `extend` instead).
393
+ * **global**: Option `fields`: `+prop` is replaced with: `DEF,prop` and `-field` is replaced with: `DEF,-field`, and whole list is evaluated.
394
+ * **global**: Replaced option `progress` with option `progressbar` (bool)
395
+ * **global**: Removed option `rest_debug` and `-r`, replaced with `--log-level=trace2`
396
+ * **global**: The default file name for private key when using wizard is change from `aspera_aoc_key` to `my_private_key.pem`
397
+ * `faspex5`: Removed option and `auth` type `link`: simply provide the public link as `url`
398
+ * `faspex`: Remote source selection now uses percent selector instead of parameter `id` or `name`
399
+ * `faspex`: Option `source_name` is now `remote_source`
400
+ * `aoc`: Selection by name uses percent selector instead of option or parameter `name`
401
+ * `aoc`: Removed option `link`: use `url` instead
402
+ * `aoc`: In command `short_link`, place type before command, e.g. `short_link private create /blah`
403
+ * `aoc`: Replaced option `operation` with mandatory positional parameter for command `files transfer`
404
+ * `aoc`: Replaced option `from_folder` with mandatory positional parameter for command `files transfer`
405
+ * `orchestrator`: Workflow start takes arguments as optional positional extended value instead of option `param`
406
+ * `node`: `find` command now takes an optional `@ruby:` extended value instead of option `query` with prefix: `exec:`
407
+ * `sync`: Plugin `sync` is removed: actions are available through `server` and `node` plugins.
408
+ * `sync`: Replaced option `sync_session` with optional positional parameter.
409
+ * `preview`: Command `scan`, `events` and `trevents` replaced option `query` with optional positional parameter for filter (like `find`).
410
+ * **global**: Agent `trsdk` parameters `host` and `port` in option `transfer_info` are replaced with parameter `url`, like `grpc://host:port`
411
+
412
+ ## 4.14.0
413
+
414
+ Released: 2023-09-22
415
+
416
+ ### New Features
417
+
418
+ * `server`: Option `passphrase` for simpler command line (#114)
419
+ * Percent selector for entities identifier
420
+ * `faspex5`: Shared inbox and workgroup membership management
421
+ * `faspex5`: Invite external user to shared inbox
422
+ * `faspex5`: Package list and receive from workgroup and shared inbox
423
+ * `config`: Command `ascp info` shows default transfer spec.
424
+ * **global**: Agent `httpgw` synchronous and asynchronous upload modes
425
+ * `node`: Command `bandwidth_average` to get average bandwidth of node, per periods
426
+
427
+ ### Issues Fixed
428
+
429
+ * Option `ts`: Deep add and remove of keys. (#117)
430
+ * `faspex5`: User lookup for `packages send` shall be exact match (#120)
431
+ * **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.
432
+
433
+ ### Breaking Changes
434
+
435
+ * Using `aoc files` or node gen4 operations (`browse`, `delete`) on a link will follow the link only if path ends with /
436
+ * `shares`: Command `repository` is changed to `files` for consistency with aoc and upcoming faspex5, but is still available as alias
437
+ * `aoc`: Better handling of shared links
438
+ * **global**: Option `value` is deprecated. Use positional parameter for creation data and option `query` for list/delete operations.
439
+ * `config`: Remove deprecated command: `export_to_cli`
440
+ * `config`: Removed all legacy preset command, newer command `preset` shall be used now.
441
+ * `config`: SDK is now installed in `$HOME/.aspera/sdk` instead of `$HOME/.aspera/ascli/sdk`
442
+ * `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_`
443
+ * `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`
444
+
445
+ ## 4.13.0
446
+
447
+ Released: 2023-06-29
448
+
449
+ ### New Features
450
+
451
+ * `preview`: Option `reencode_ffmpeg` allows overriding all re-encoding options
452
+ * `faspex5`: `package delete` (#107)
453
+ * `faspex5`: `package recv` for inboxes and regular users (#108)
454
+ * `faspex5`: SMTP management
455
+ * `faspex5`: Use public link for authorization of package download, using option `link`
456
+ * `faspex5`: List content of package, and allow partial download of package
457
+ * `faspex5`: List packages support multiple pages and items limitations (`max` and `pmax`)
458
+ * `aoc`: Files operations with workspace-less user (#109)
459
+ * `node`: `async` with gen3 token (#110)
460
+ * `node`: Display of preview of file in terminal for access keys
461
+
462
+ ### Issues Fixed
463
+
464
+ * `cos`: Do not use refresh token when not supported
465
+ * **container**: SDK installed in other folder than `ascli` (#106)
466
+
467
+ ### Breaking Changes
468
+
469
+ * Option `transfer_info` is now cumulative, setting several times merge values
470
+ * 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.
471
+
472
+ ## 4.12.0
473
+
474
+ Released: 2023-03-20
475
+
476
+ ### New Features
477
+
478
+ * **container**: Build image from official gem version, possibility to deploy beta as well
479
+ * **global**: `delete` operation supports option `value` for deletion parameters
480
+ * `aoc`: Command `aoc packages recv` accepts option `query` to specify a shared inbox
481
+ * `faspex`: (v4) user delete accepts option `value` with value `{"destroy":true}` to delete users permanently
482
+ * `faspex`: (v4) gateway to Faspex 5 for package send
483
+ * `faspex5`: Possibility to change email templates
484
+ * `faspex5`: Shared folder list and browse
485
+ * `faspex5`: Emulate Faspex 4 post-processing, plugin: `faspex5` command: `postprocessing`
486
+ * `faspex5`: Send package from remote source
487
+ * `shares`: Option `type` for command `shares admin user`
488
+ * `shares`: Full support for shares admin operations
489
+
490
+ ### Breaking Changes
491
+
492
+ * `shares`: Command `shares admin user saml_import` replaced with `shares admin user import --type=saml`
493
+ * `shares`: Command `shares admin user ldap_import` replaced with `shares admin user add --type=ldap`
494
+ * `shares`: Command `app_authorizations` now has sub commands `show` and `modify`
495
+ * `shares`: Similar changes for `shares admin share user show`
496
+ * Option `ascp_opts` is removed, and replaced with `transfer_info` parameter `ascp_args`
497
+
498
+ ## 4.11.0
499
+
500
+ Released: 2023-01-26
501
+
502
+ ### New Features
503
+
504
+ * **global**: `vault`: Secret finder, migration from config file
505
+ * **global**: Allow removal of transfer spec parameter by setting value to `null`
506
+ * **global**: Option `ascp_opts` allows providing native `ascp` options on command line
507
+ * `node`, `server`: Command `sync` added to `node` (gen4) and `server` plugins, also available in `aoc`
508
+
509
+ ### Issues Fixed
510
+
511
+ * **global**: Security: no shell interpolation
512
+ * **global**: Agent `node`: when WSS is used: no localhost (certificate)
513
+ * `aoc`: #99 `file download` for single shared folder
514
+ * `faspex5`: Change of API in Faspex 5 for send package (paths is mandatory for any type of transfer now)
515
+ * **global**: OAuth web authentication was broken, fixed now
516
+
517
+ ### Breaking Changes
518
+
519
+ * **container**: Image has entry point
520
+ * `aoc`: `admin res node` commands `v3` and `v4` replaced with `do` and command `v3` moved inside `do`
521
+ * Renamed options for `sync`
522
+ * Node gen4 operations are moved from aoc plugin to node plugin but made available where gen4 is used
523
+ * If wss is enabled on server, use wss
524
+ * Lots of cleanup and refactoring
525
+
526
+ ## 4.10.0
527
+
528
+ Released: 2022-12-02
529
+
530
+ ### New Features
531
+
532
+ * `httpgw`: Transfer agent support API v2, support transfer through HTTP proxy, including proxy password
533
+ * `faspex5`: Get bearer token
534
+
535
+ ### Issues Fixed
536
+
537
+ * **container**: Container version
538
+
539
+ ### Breaking Changes
540
+
541
+ * `config`: Option `secrets` is renamed to `vault`
542
+
543
+ ## 4.9.0
544
+
545
+ Released: 2022-09-15
546
+
547
+ ### New Features
548
+
549
+ * `shares`: Import of SAML users and LDAP users
550
+ * M1 apple silicon support SDK install (uses x86 ascp)
551
+ * Support bulk operation more globally (create/delete), not all ops , though
552
+ * Added missing transfer spec parameters, e.g. `src_base`, `password`
553
+ * Improved documentation on faspex and aoc package send
554
+
555
+ ### Issues Fixed
556
+
557
+ * `node do` command fixed
558
+ * Improved secret hiding from logs
559
+
560
+ ### Breaking Changes
561
+
562
+ * Removed rarely commands `nodeadmin`, `configuration`, `userdata`, `ctl` from plugin `server`
386
563
  as well as option `cmd_prefix`
387
- * `ascli` runs as user `cliuser` instead of `root` in container
388
- * Default access right for config folder is now user only, including private keys
389
-
390
- * 4.8.0 2022-06-16
391
-
392
- * New Features:
393
- * #76 add resource `group_membership` in `aoc`
394
- * Add resource `metadata_profile` in `faspex5`
395
- * Add command `user profile` in `faspex5`
396
- * Add config wizard for `faspex5`
397
- * #75 gem is signed
398
- * Breaking Changes:
399
- * Removed dependency on gem `grpc` which is used only for the `trsdk` transfer agent. Users can install the gem manually if needed.
400
- * Hash vault keys are string instead of symbol
401
- * Cleanup with rubocop, all strings are immutable now by default, list constants are frozen
402
- * Removed Hash.dig implementation because it is by default in Ruby >= 2.3
403
- * Default is now to hide secrets on command output. Set option `show_secrets` to reveal secrets.
404
- * Option `insecure` displays a warning
405
-
406
- * 4.7.0 2022-03-23
407
-
408
- * New Features:
409
- * Option to specify font used to generate image of text file in `preview`
410
- * #66 improvement for content protection (support standard transfer spec options for direct agent)
411
- * Option `fpac` is now applicable to all ruby based HTTP connections, i.e. API calls
412
- * Option `show_secrets` to reveal secrets in command output
413
- * Added and updated commands for Faspex 5
414
- * Option `cache_tokens`
415
- * Faspex4 dropbox packages can now be received by id
416
- * Issues Fixed:
417
- * After AoC version update, wizard did not detect AoC properly
418
- * Breaking Changes:
419
- * Command `conf gem path` replaces `conf gem_path`
420
- * Option `fpac` expects a value instead of URL
421
- * Option `cipher` in transfer spec must have hyphen
422
- * Renamed option `log_passwords` to `log_secrets`
423
- * Removed plugin `shares2` as products is now EOL
424
-
425
- * 4.6.0 2022-02-04
426
-
427
- * New Features:
428
- * Command `conf plugin create`
429
- * Global option `plugin_folder`
430
- * Global option `transpose_single`
431
- * Simplified metadata passing for shared inbox package creation in AoC
432
- * Issues Fixed:
433
- * #60 ascli executable was not installed by default in 4.5.0
434
- * Add password hiding case in logs
435
- * Breaking Changes:
436
- * Command `aoc packages shared_inboxes list` replaces `aoc user shared_inboxes`
437
- * Command `aoc user profile` replaces `aoc user info`
438
- * Command `aoc user workspaces list` replaces `aoc user workspaces`
439
- * Command `aoc user workspaces current` replaces `aoc workspace`
440
- * Command `conf plugin list` replaces `conf plugins`
441
- * Command `conf connect` simplified
442
-
443
- * 4.5.0 2021-12-27
444
-
445
- * New Features:
446
- * Support transfer agent: [Transfer SDK](README.md#agt_trsdk)
447
- * Support [http socket options](README.md#http_options)
448
- * Logs hide passwords and secrets, option `log_passwords` to enable logging secrets
449
- * `config vault` supports encrypted passwords, also macos keychain
450
- * `config preset` command for consistency with id
451
- * Identifier can be provided using either option `id` or directly after the command, e.g. `delete 123` is the same as `delete --id=123`
452
- * Issues Fixed:
453
- * Various smaller fixes and renaming of some internal classes (transfer agents and few other)
454
- * Breaking Changes:
455
- * When using wss, use [ruby's CA certs](README.md#certificates)
456
- * Unexpected parameter makes exit code not zero
457
- * Options `id` and `name` cannot be specified at the same time anymore, use [positional identifier or name selection](README.md#res_select)
458
- * `aoc admin res node` does not take workspace main node as default node if no `id` specified.
459
- * : `orchestrator workflow status` requires id, and supports special id `ALL`
460
-
461
- * 4.4.0 2021-11-13
462
-
463
- * New Features:
464
- * `aoc packages list` add possibility to add filter with option `query`
465
- * `aoc admin res xxx list` now get all items by default #50
466
- * `preset` option can specify name or hash value
467
- * `node` plugin accepts bearer token and access key as credential
468
- * `node` option `token_type` allows using basic token in addition to aspera type.
469
- * Breaking Changes:
470
- * `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.
471
- * Resource `apps_new` of `aoc` replaced with `application` (more clear)
472
-
473
- * 4.3.0 2021-10-19
474
-
475
- * New Features:
476
- * 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.
477
- * 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.
478
-
479
- * 4.2.2 2021-09-23
480
-
481
- * New Features:
482
- * `faspex package list` retrieves the whole list, not just first page
483
- * Support web based auth to aoc and faspex 5 using HTTPS, new dependency on gem `webrick`
484
- * The error "Remote host is not who we expected" displays a special remediation message
485
- * `conf ascp spec` displays supported transfer spec
486
- * Options `notif_to` and `notif_template` to send email notifications on transfer (and other events)
487
- * Issues Fixed:
488
- * Space character in `faspe:` url are percent encoded if needed
489
- * `preview scan`: If file_id is unknown, ignore and continue scan
490
- * Breaking Changes:
491
- * 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)
492
- * Option `notify` or `aoc` replaced with `notif_to` and `notif_template`
493
-
494
- * 4.2.1 2021-09-01
495
-
496
- * New Features:
497
- * Command `faspex package recv` supports link of type: `faspe:`
498
- * Command `faspex package recv` supports option `recipient` to specify dropbox with leading `*`
499
-
500
- * 4.2.0 2021-08-24
501
-
502
- * New Features:
503
- * Command `aoc remind` to receive organization membership by email
504
- * In `preview` option `value` to filter out on file name
505
- * `initdemo` to initialize for demo server
506
- * [`direct`](README.md#agt_direct) transfer agent options: `spawn_timeout_sec` and `spawn_delay_sec`
507
- * Issues Fixed:
508
- * On Windows `conf ascp use` expects ascp.exe
509
- * (break) multi_session_threshold is Integer, not String
510
- * `conf ascp install` renames sdk folder if it already exists (leftover shared lib may make fail)
511
- * Removed `replace_illegal_chars` from default `aspera.conf` causing "Error creating illegal char conversion table"
512
- * Breaking Changes:
513
- * `aoc apiinfo` is removed, use `aoc servers` to provide the list of cloud systems
514
- * Parameters for resume in `transfer-info` for [`direct`](README.md#agt_direct) are now in sub-key `"resume"`
515
-
516
- * 4.1.0 2021-06-23
517
-
518
- * New Features:
519
- * Update documentation with regard to offline and docker installation
520
- * Renamed command `nagios_check` to `health`
521
- * Agent `http_gw` now supports upload
522
- * Added option `sdk_url` to install SDK from local file for offline install
523
- * Check new gem version periodically
524
- * The --fields= option, support -_field_name_ to remove a field from default fields
525
- * Oauth tokens are discarded automatically after 30 minutes (useful for COS delegated refresh tokens)
526
- * `mimemagic` is now optional, needs manual install for `preview`, compatible with version 0.4.x
527
- * AoC a password can be provided for a public link
528
- * `conf doc` take an optional parameter to go to a section
529
- * Initial support for Faspex 5 Beta 1
530
- * Issues Fixed:
531
- * Remove keys from transfer spec and command line when not needed
532
- * Default to `create_dir`:`true` so that sending single file to a folder does not rename file if folder does not exist
533
-
534
- * 4.0.0 2021-02-03
564
+ * `ascli` runs as user `cliuser` instead of `root` in container
565
+ * Default access right for config folder is now user only, including private keys
566
+
567
+ ## 4.8.0
568
+
569
+ Released: 2022-06-16
570
+
571
+ ### New Features
572
+
573
+ * #76 add resource `group_membership` in `aoc`
574
+ * Add resource `metadata_profile` in `faspex5`
575
+ * Add command `user profile` in `faspex5`
576
+ * Add config wizard for `faspex5`
577
+ * #75 gem is signed
578
+
579
+ ### Breaking Changes
580
+
581
+ * Removed dependency on gem `grpc` which is used only for the `trsdk` transfer agent. Users can install the gem manually if needed.
582
+ * Hash vault keys are string instead of symbol
583
+ * Cleanup with rubocop, all strings are immutable now by default, list constants are frozen
584
+ * Removed Hash.dig implementation because it is by default in Ruby >= 2.3
585
+ * Default is now to hide secrets on command output. Set option `show_secrets` to reveal secrets.
586
+ * Option `insecure` displays a warning
587
+
588
+ ## 4.7.0
589
+
590
+ Released: 2022-03-23
591
+
592
+ ### New Features
593
+
594
+ * Option to specify font used to generate image of text file in `preview`
595
+ * #66 improvement for content protection (support standard transfer spec options for direct agent)
596
+ * Option `fpac` is now applicable to all ruby based HTTP connections, i.e. API calls
597
+ * Option `show_secrets` to reveal secrets in command output
598
+ * Added and updated commands for Faspex 5
599
+ * Option `cache_tokens`
600
+ * Faspex4 dropbox packages can now be received by id
601
+
602
+ ### Issues Fixed
603
+
604
+ * After AoC version update, wizard did not detect AoC properly
605
+
606
+ ### Breaking Changes
607
+
608
+ * Command `conf gem path` replaces `conf gem_path`
609
+ * Option `fpac` expects a value instead of URL
610
+ * Option `cipher` in transfer spec must have hyphen
611
+ * Renamed option `log_passwords` to `log_secrets`
612
+ * Removed plugin `shares2` as products is now EOL
613
+
614
+ ## 4.6.0
615
+
616
+ Released: 2022-02-04
617
+
618
+ ### New Features
619
+
620
+ * Command `conf plugin create`
621
+ * Global option `plugin_folder`
622
+ * Global option `transpose_single`
623
+ * Simplified metadata passing for shared inbox package creation in AoC
624
+
625
+ ### Issues Fixed
626
+
627
+ * #60 ascli executable was not installed by default in 4.5.0
628
+ * Add password hiding case in logs
629
+
630
+ ### Breaking Changes
631
+
632
+ * Command `aoc packages shared_inboxes list` replaces `aoc user shared_inboxes`
633
+ * Command `aoc user profile` replaces `aoc user info`
634
+ * Command `aoc user workspaces list` replaces `aoc user workspaces`
635
+ * Command `aoc user workspaces current` replaces `aoc workspace`
636
+ * Command `conf plugin list` replaces `conf plugins`
637
+ * Command `conf connect` simplified
638
+
639
+ ## 4.5.0
640
+
641
+ Released: 2021-12-27
642
+
643
+ ### New Features
644
+
645
+ * Support transfer agent: [Transfer SDK](README.md#agt_trsdk)
646
+ * Support [http socket options](README.md#http_options)
647
+ * Logs hide passwords and secrets, option `log_passwords` to enable logging secrets
648
+ * `config vault` supports encrypted passwords, also macos keychain
649
+ * `config preset` command for consistency with id
650
+ * Identifier can be provided using either option `id` or directly after the command, e.g. `delete 123` is the same as `delete --id=123`
651
+
652
+ ### Issues Fixed
653
+
654
+ * Various smaller fixes and renaming of some internal classes (transfer agents and few other)
655
+
656
+ ### Breaking Changes
657
+
658
+ * When using wss, use [ruby's CA certs](README.md#certificates)
659
+ * Unexpected parameter makes exit code not zero
660
+ * Options `id` and `name` cannot be specified at the same time anymore, use [positional identifier or name selection](README.md#res_select)
661
+ * `aoc admin res node` does not take workspace main node as default node if no `id` specified.
662
+ * : `orchestrator workflow status` requires id, and supports special id `ALL`
663
+
664
+ ## 4.4.0
665
+
666
+ Released: 2021-11-13
667
+
668
+ ### New Features
669
+
670
+ * `aoc packages list` add possibility to add filter with option `query`
671
+ * `aoc admin res xxx list` now get all items by default #50
672
+ * `preset` option can specify name or hash value
673
+ * `node` plugin accepts bearer token and access key as credential
674
+ * `node` option `token_type` allows using basic token in addition to aspera type.
675
+
676
+ ### Breaking Changes
677
+
678
+ * `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.
679
+ * Resource `apps_new` of `aoc` replaced with `application` (more clear)
680
+
681
+ ## 4.3.0
682
+
683
+ Released: 2021-10-19
684
+
685
+ ### New Features
686
+
687
+ * 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.
688
+ * 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.
689
+
690
+ ## 4.2.2
691
+
692
+ Released: 2021-09-23
693
+
694
+ ### New Features
695
+
696
+ * `faspex package list` retrieves the whole list, not just first page
697
+ * Support web based auth to aoc and faspex 5 using HTTPS, new dependency on gem `webrick`
698
+ * The error "Remote host is not who we expected" displays a special remediation message
699
+ * `conf ascp spec` displays supported transfer spec
700
+ * Options `notif_to` and `notif_template` to send email notifications on transfer (and other events)
701
+
702
+ ### Issues Fixed
703
+
704
+ * Space character in `faspe:` url are percent encoded if needed
705
+ * `preview scan`: If file_id is unknown, ignore and continue scan
706
+
707
+ ### Breaking Changes
708
+
709
+ * 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)
710
+ * Option `notify` or `aoc` replaced with `notif_to` and `notif_template`
711
+
712
+ ## 4.2.1
713
+
714
+ Released: 2021-09-01
715
+
716
+ ### New Features
717
+
718
+ * Command `faspex package recv` supports link of type: `faspe:`
719
+ * Command `faspex package recv` supports option `recipient` to specify dropbox with leading `*`
720
+
721
+ ## 4.2.0
722
+
723
+ Released: 2021-08-24
724
+
725
+ ### New Features
726
+
727
+ * Command `aoc remind` to receive organization membership by email
728
+ * In `preview` option `value` to filter out on file name
729
+ * `initdemo` to initialize for demo server
730
+ * [`direct`](README.md#agt_direct) transfer agent options: `spawn_timeout_sec` and `spawn_delay_sec`
731
+
732
+ ### Issues Fixed
733
+
734
+ * On Windows `conf ascp use` expects ascp.exe
735
+ * (break) multi_session_threshold is Integer, not String
736
+ * `conf ascp install` renames sdk folder if it already exists (leftover shared lib may make fail)
737
+ * Removed `replace_illegal_chars` from default `aspera.conf` causing "Error creating illegal char conversion table"
738
+
739
+ ### Breaking Changes
740
+
741
+ * `aoc apiinfo` is removed, use `aoc servers` to provide the list of cloud systems
742
+ * Parameters for resume in `transfer-info` for [`direct`](README.md#agt_direct) are now in sub-key `"resume"`
743
+
744
+ ## 4.1.0
745
+
746
+ Released: 2021-06-23
747
+
748
+ ### New Features
749
+
750
+ * Update documentation with regard to offline and docker installation
751
+ * Renamed command `nagios_check` to `health`
752
+ * Agent `http_gw` now supports upload
753
+ * Added option `sdk_url` to install SDK from local file for offline install
754
+ * Check new gem version periodically
755
+ * The --fields= option, support -_field_name_ to remove a field from default fields
756
+ * Oauth tokens are discarded automatically after 30 minutes (useful for COS delegated refresh tokens)
757
+ * `mimemagic` is now optional, needs manual install for `preview`, compatible with version 0.4.x
758
+ * AoC a password can be provided for a public link
759
+ * `conf doc` take an optional parameter to go to a section
760
+ * Initial support for Faspex 5 Beta 1
761
+
762
+ ### Issues Fixed
763
+
764
+ * Remove keys from transfer spec and command line when not needed
765
+ * Default to `create_dir`:`true` so that sending single file to a folder does not rename file if folder does not exist
766
+
767
+ ## 4.0.0
768
+
769
+ Released: 2021-02-03
770
+
771
+ ### New Features
772
+
773
+ * Now available as open source (GitHub) with general cleanup
774
+ * Added possibility to install SDK: `config ascp install`
775
+
776
+ ### Breaking Changes
777
+
778
+ * Changed default tool name from `mlia` to `ascli`
779
+ * Changed `aspera` command to `aoc`
780
+ * Changed gem name from `asperalm` to `aspera-cli`
781
+ * Changed module name from `Asperalm` to `Aspera`
782
+ * Removed command `folder` in `preview`, merged to `scan`
783
+ * Persistency files go to sub folder instead of main folder
784
+
785
+ ## 0.11.8
786
+
787
+ * Simplified to use `unoconv` instead of bare `libreoffice` for office conversion, as `unoconv` does not require a X server (previously using `Xvfb`)
788
+
789
+ ## 0.11.7
790
+
791
+ * Rework on rest call error handling
792
+ * Use option `display` with value `data` to remove out of extraneous information
793
+ * Fixed option `lock_port` not working
794
+ * Generate special icon if preview failed
795
+ * Possibility to choose transfer progress bar type with option `progress`
796
+ * AoC package creation now output package id
797
+
798
+ ## 0.11.6
799
+
800
+ * `orchestrator`: Added more choice in auth type
801
+ * `preview`: Cleanup in generator (removed and renamed parameters)
802
+ * `preview`: Better documentation
803
+ * `preview`: Animated thumbnails for video (option: `video_png_conv=animated`)
804
+ * `preview`: New event trigger: `trevents` (`events` seems broken)
805
+ * `preview`: Unique tmp folder to avoid clash of multiple instances
806
+ * Repo: Added template for secrets used for testing
807
+
808
+ ## 0.11.5
809
+
810
+ * Added option `default_ports` for AoC (see manual)
811
+ * Allow bulk delete in `aspera files` with option `bulk=yes`
812
+ * Fix getting connect versions
813
+ * Added section for Aix
814
+ * Support all ciphers for [`direct`](README.md#agt_direct) agent (including gcm, etc..)
815
+ * Added transfer spec param `apply_local_docroot` for [`direct`](README.md#agt_direct)
816
+
817
+ ## 0.11.4
818
+
819
+ * Possibility to give shared inbox name when sending a package (else use id and type)
820
+
821
+ ## 0.11.3
822
+
823
+ * Minor fixes on multi-session: Avoid exception on progress bar
824
+
825
+ ## 0.11.2
826
+
827
+ * Fixes on multi-session: Progress bat and transfer spec param for "direct"
828
+
829
+ ## 0.11.1
830
+
831
+ * Enhanced short_link creation commands (see examples)
832
+
833
+ ## 0.11
834
+
835
+ * Add transfer spec option (agent `direct` only) to provide file list directly to ascp: `EX_file_list`
836
+
837
+ ## 0.10.18
838
+
839
+ * New option in. `server` : `ssh_options`
840
+
841
+ ## 0.10.17
842
+
843
+ * Fixed problem on `server` for option `ssh_keys`, now accepts both single value and list
844
+ * New modifier: `@list:<separator>val1<separator>...`
845
+
846
+ ## 0.10.16
847
+
848
+ * Added list of shared inboxes in workspace (or global), use `--query=@json:'{}'`
849
+
850
+ ## 0.10.15
851
+
852
+ * In case of command line error, display the error cause first, and non-parsed argument second
853
+ * `aoc`: Activity / Analytics
854
+
855
+ ## 0.10.14
856
+
857
+ * Added missing bss plugin
858
+
859
+ ## 0.10.13
860
+
861
+ * Added Faspex5 (use option `value` to give API arguments)
862
+
863
+ ## 0.10.12
864
+
865
+ * Added support for AoC node registration keys
866
+ * Replaced option : `local_resume` with `transfer_info` for agent [`direct`](README.md#agt_direct)
867
+ * Transfer agent is no more a Singleton instance, but only one is used in CLI
868
+ * `@incps` : New extended value modifier
869
+ * ATS: No more provides access keys secrets: now user must provide it
870
+ * Begin work on "aoc" transfer agent
871
+
872
+ ## 0.10.11
873
+
874
+ * Minor refactor and fixes
875
+
876
+ ## 0.10.10
877
+
878
+ * Fix on documentation
879
+
880
+ ## 0.10.9.1
881
+
882
+ * Add total number of items for AoC resource list
883
+ * Better gem version dependency (and fixes to support Ruby 2.0.0)
884
+ * Removed aoc search_nodes
885
+
886
+ ## 0.10.8
887
+
888
+ * Removed option: `fasp_proxy`, use pseudo transfer spec parameter: `EX_fasp_proxy_url`
889
+ * Removed option: `http_proxy`, use pseudo transfer spec parameter: `EX_http_proxy_url`
890
+ * Several other changes
891
+
892
+ ## 0.10.7
893
+
894
+ * Fix: `ascli` fails when username cannot be computed on Linux
895
+
896
+ ## 0.10.6
897
+
898
+ * 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
899
+ * Gem version requirements made more open
535
900
 
536
- * New Features:
537
- * Now available as open source (GitHub) with general cleanup
538
- * Added possibility to install SDK: `config ascp install`
539
- * Breaking Changes:
540
- * Changed default tool name from `mlia` to `ascli`
541
- * Changed `aspera` command to `aoc`
542
- * Changed gem name from `asperalm` to `aspera-cli`
543
- * Changed module name from `Asperalm` to `Aspera`
544
- * Removed command `folder` in `preview`, merged to `scan`
545
- * Persistency files go to sub folder instead of main folder
901
+ ## 0.10.5
546
902
 
547
- * 0.11.8
903
+ * Fix faspex package receive command not working
548
904
 
549
- * Simplified to use `unoconv` instead of bare `libreoffice` for office conversion, as `unoconv` does not require a X server (previously using `Xvfb`)
905
+ ## 0.10.4
550
906
 
551
- * 0.11.7
907
+ * New options for AoC : `secrets`
908
+ * `ACLI-533` temp file list folder to use file lists is set by default, and used by `asession`
552
909
 
553
- * Rework on rest call error handling
554
- * Use option `display` with value `data` to remove out of extraneous information
555
- * Fixed option `lock_port` not working
556
- * Generate special icon if preview failed
557
- * Possibility to choose transfer progress bar type with option `progress`
558
- * AoC package creation now output package id
910
+ ## 0.10.3
559
911
 
560
- * 0.11.6
912
+ * Included user name in oauth bearer token cache for AoC when JWT is used
561
913
 
562
- * `orchestrator`: Added more choice in auth type
563
- * `preview`: Cleanup in generator (removed and renamed parameters)
564
- * `preview`: Better documentation
565
- * `preview`: Animated thumbnails for video (option: `video_png_conv=animated`)
566
- * `preview`: New event trigger: `trevents` (`events` seems broken)
567
- * `preview`: Unique tmp folder to avoid clash of multiple instances
568
- * Repo: Added template for secrets used for testing
914
+ ## 0.10.2
569
915
 
570
- * 0.11.5
916
+ * Updated `search_nodes` to be more generic, so it can search not only on access key, but also other queries
917
+ * Added doc for "cargo" like actions
918
+ * Added doc for multi-session
571
919
 
572
- * Added option `default_ports` for AoC (see manual)
573
- * Allow bulk delete in `aspera files` with option `bulk=yes`
574
- * Fix getting connect versions
575
- * Added section for Aix
576
- * Support all ciphers for [`direct`](README.md#agt_direct) agent (including gcm, etc..)
577
- * Added transfer spec param `apply_local_docroot` for [`direct`](README.md#agt_direct)
920
+ ## 0.10.1
578
921
 
579
- * 0.11.4
922
+ * AoC and node v4 "browse" works now on non-folder items: file, link
923
+ * Initial support for AoC automation (do not use yet)
580
924
 
581
- * Possibility to give shared inbox name when sending a package (else use id and type)
925
+ ## 0.10
582
926
 
583
- * 0.11.3
927
+ * Support for transfer using IBM Cloud Object Storage
928
+ * Improved `find` action using arbitrary expressions
584
929
 
585
- * Minor fixes on multi-session: Avoid exception on progress bar
930
+ ## 0.9.36
586
931
 
587
- * 0.11.2
932
+ * Added option to specify file pair lists
588
933
 
589
- * Fixes on multi-session: Progress bat and transfer spec param for "direct"
934
+ ## 0.9.35
590
935
 
591
- * 0.11.1
936
+ * `preview`: Changed parameter names, added documentation
937
+ * `ats`: Fix: instance ID needed in request header
592
938
 
593
- * Enhanced short_link creation commands (see examples)
939
+ ## 0.9.34
594
940
 
595
- * 0.11
941
+ * Parser "@preset" can be used again in option "transfer_info"
942
+ * Some documentation re-organizing
596
943
 
597
- * Add transfer spec option (agent `direct` only) to provide file list directly to ascp: `EX_file_list`.
944
+ ## 0.9.33
598
945
 
599
- * 0.10.18
946
+ * New command to display basic token of node
947
+ * New command to display bearer token of node in AoC
948
+ * The --fields= option, support +_field_name_ to add a field to default fields
949
+ * Many small changes
600
950
 
601
- * New option in. `server` : `ssh_options`
951
+ ## 0.9.32
602
952
 
603
- * 0.10.17
953
+ ### New Features
604
954
 
605
- * Fixed problem on `server` for option `ssh_keys`, now accepts both single value and list.
606
- * New modifier: `@list:<separator>val1<separator>...`
955
+ * All Faspex public links are now supported
956
+ * Removed faspex operation `recv_publink`. Replaced with option `link` (consistent with AoC).
607
957
 
608
- * 0.10.16
958
+ ## 0.9.31
609
959
 
610
- * Added list of shared inboxes in workspace (or global), use `--query=@json:'{}'`
960
+ ### New Features
611
961
 
612
- * 0.10.15
962
+ * Added more support for public link: receive and send package, to user or dropbox and files view
963
+ * Delete expired file lists
964
+ * Changed text table gem from text-table to terminal-table because it supports multiline values
613
965
 
614
- * In case of command line error, display the error cause first, and non-parsed argument second
615
- * AoC : Activity / Analytics
966
+ ## 0.9.27
616
967
 
617
- * 0.10.14
968
+ ### New Features
618
969
 
619
- * Added missing bss plugin
970
+ * Basic email support with SMTP
971
+ * Basic proxy auto config support
620
972
 
621
- * 0.10.13
973
+ ## 0.9.26
622
974
 
623
- * Added Faspex5 (use option `value` to give API arguments)
975
+ ### New Features
624
976
 
625
- * 0.10.12
977
+ * Table display with `--fields=ALL` now includes all column names from all lines, not only first one
978
+ * Unprocessed argument shows error even if there is an error beforehand
626
979
 
627
- * Added support for AoC node registration keys
628
- * Replaced option : `local_resume` with `transfer_info` for agent [`direct`](README.md#agt_direct)
629
- * Transfer agent is no more a Singleton instance, but only one is used in CLI
630
- * `@incps` : New extended value modifier
631
- * ATS: No more provides access keys secrets: now user must provide it
632
- * Begin work on "aoc" transfer agent
980
+ ## 0.9.25
633
981
 
634
- * 0.10.11
982
+ ### New Features
635
983
 
636
- * Minor refactor and fixes
984
+ * The option `value` of command `find`, to filter on name, is not optional
985
+ * `find` now also reports all types (file, folder, link)
986
+ * `find` now is able to report all fields (type, size, etc...)
637
987
 
638
- * 0.10.10
988
+ ## 0.9.24
639
989
 
640
- * Fix on documentation
990
+ ### New Features
641
991
 
642
- * 0.10.9.1
992
+ * Fix bug where AoC node to node transfer did not work
993
+ * Fix bug on error if ED25519 private key is defined in .ssh
643
994
 
644
- * Add total number of items for AoC resource list
645
- * Better gem version dependency (and fixes to support Ruby 2.0.0)
646
- * Removed aoc search_nodes
995
+ ## 0.9.23
647
996
 
648
- * 0.10.8
997
+ ### New Features
649
998
 
650
- * Removed option: `fasp_proxy`, use pseudo transfer spec parameter: `EX_fasp_proxy_url`
651
- * Removed option: `http_proxy`, use pseudo transfer spec parameter: `EX_http_proxy_url`
652
- * Several other changes..
999
+ * Defined REST error handlers, more error conditions detected
1000
+ * Commands to select specific ascp location
653
1001
 
654
- * 0.10.7
1002
+ ## 0.9.21
655
1003
 
656
- * Fix: `ascli` fails when username cannot be computed on Linux.
1004
+ ### New Features
657
1005
 
658
- * 0.10.6
1006
+ * Supports simplified wizard using global client
1007
+ * Only `ascp` binary is required, other SDK (keys) files are now generated
659
1008
 
660
- * 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.
661
- * Gem version requirements made more open
1009
+ ## 0.9.20
662
1010
 
663
- * 0.10.5
1011
+ ### New Features
664
1012
 
665
- * Fix faspex package receive command not working
1013
+ * Improved wizard (prepare for AoC global client id)
1014
+ * Preview generator: Added option : --skip-format=&lt;png,mp4&gt;
1015
+ * Removed outdated pictures from this doc
666
1016
 
667
- * 0.10.4
1017
+ ## 0.9.19
668
1018
 
669
- * New options for AoC : `secrets`
670
- * `ACLI-533` temp file list folder to use file lists is set by default, and used by `asession`
1019
+ ### New Features
671
1020
 
672
- * 0.10.3
1021
+ * Added command `aspera bearer --scope=xx`
673
1022
 
674
- * Included user name in oauth bearer token cache for AoC when JWT is used.
1023
+ ## 0.9.18
675
1024
 
676
- * 0.10.2
1025
+ ### New Features
677
1026
 
678
- * Updated `search_nodes` to be more generic, so it can search not only on access key, but also other queries.
679
- * Added doc for "cargo" like actions
680
- * Added doc for multi-session
1027
+ * Enhanced aspera admin events to support query
681
1028
 
682
- * 0.10.1
1029
+ ## 0.9.16
683
1030
 
684
- * AoC and node v4 "browse" works now on non-folder items: file, link
685
- * Initial support for AoC automation (do not use yet)
1031
+ ### New Features
686
1032
 
687
- * 0.10
1033
+ * AoC transfers are now reported in activity app
1034
+ * New interface for Rest class authentication (keep backward compatibility)
688
1035
 
689
- * Support for transfer using IBM Cloud Object Storage
690
- * Improved `find` action using arbitrary expressions
1036
+ ## 0.9.15
691
1037
 
692
- * 0.9.36
1038
+ ### New Features
693
1039
 
694
- * Added option to specify file pair lists
1040
+ * New feature: "find" command in aspera files
1041
+ * Sample code for transfer API
695
1042
 
696
- * 0.9.35
1043
+ ## 0.9.12
697
1044
 
698
- * `preview`: Changed parameter names, added documentation
699
- * `ats`: Fix: instance ID needed in request header
1045
+ ### New Features
700
1046
 
701
- * 0.9.34
1047
+ * Add nagios commands
1048
+ * Support of ATS for IBM Cloud, removed old version based on aspera id
702
1049
 
703
- * Parser "@preset" can be used again in option "transfer_info"
704
- * Some documentation re-organizing
1050
+ ## 0.9.11
705
1051
 
706
- * 0.9.33
1052
+ * Support of ATS for IBM Cloud, removed old version based on aspera id
707
1053
 
708
- * New command to display basic token of node
709
- * New command to display bearer token of node in AoC
710
- * The --fields= option, support +_field_name_ to add a field to default fields
711
- * Many small changes
1054
+ ### Breaking Changes
712
1055
 
713
- * 0.9.32
1056
+ * **global**: @stdin is now @stdin
714
1057
 
715
- * All Faspex public links are now supported
716
- * Removed faspex operation `recv_publink`
717
- * Replaced with option `link` (consistent with AoC)
1058
+ ## 0.9.10
718
1059
 
719
- * 0.9.31
1060
+ * Display SaaS storage usage with command: `aspera admin res node --id=nn info`
1061
+ * Cleaner way of specifying source file list for transfers
720
1062
 
721
- * Added more support for public link: receive and send package, to user or dropbox and files view.
722
- * Delete expired file lists
723
- * Changed text table gem from text-table to terminal-table because it supports multiline values
1063
+ ### Breaking Changes
724
1064
 
725
- * 0.9.27
1065
+ * **global**: Parameter transfer-node becomes more generic: `transfer-info`
1066
+ * **global**: Replaced download_mode option with http_download action
726
1067
 
727
- * Basic email support with SMTP
728
- * Basic proxy auto config support
1068
+ ## 0.9.9
729
1069
 
730
- * 0.9.26
1070
+ ### New Features
731
1071
 
732
- * Table display with --fields=ALL now includes all column names from all lines, not only first one
733
- * Unprocessed argument shows error even if there is an error beforehand
1072
+ * Now supports "cargo" for Aspera on Cloud (automatic package download)
734
1073
 
735
- * 0.9.25
1074
+ ### Breaking Changes
736
1075
 
737
- * The option `value` of command `find`, to filter on name, is not optional
738
- * `find` now also reports all types (file, folder, link)
739
- * `find` now is able to report all fields (type, size, etc...)
1076
+ * **global**: "aspera package send" parameter deprecated, use the --value option instead with "recipients" value. See example
740
1077
 
741
- * 0.9.24
1078
+ ## 0.9.8
742
1079
 
743
- * Fix bug where AoC node to node transfer did not work
744
- * Fix bug on error if ED25519 private key is defined in .ssh
1080
+ ### New Features
745
1081
 
746
- * 0.9.23
1082
+ * `faspex`: Use option `once_only` set to `yes` to enable cargo like function. id=NEW deprecated
1083
+ * `aoc`: Share to share transfer with command `transfer`
747
1084
 
748
- * Defined REST error handlers, more error conditions detected
749
- * Commands to select specific ascp location
1085
+ ## 0.9.7
750
1086
 
751
- * 0.9.21
1087
+ ### New Features
752
1088
 
753
- * Supports simplified wizard using global client
754
- * Only ascp binary is required, other SDK (keys) files are now generated
1089
+ * Homogeneous transfer spec for `node` and [`direct`](README.md#agt_direct) transfer agents
1090
+ * Preview persistency goes to unique file by default
1091
+ * Catch mxf extension in preview as video
1092
+ * Faspex: Possibility to download all packages by specifying id=ALL
1093
+ * Faspex: To come: Cargo-like function to download only new packages with id=NEW
755
1094
 
756
- * 0.9.20
1095
+ ## 0.9.6
757
1096
 
758
- * Improved wizard (prepare for AoC global client id)
759
- * Preview generator: Added option : --skip-format=&lt;png,mp4&gt;
760
- * Removed outdated pictures from this doc
1097
+ ### New Features
761
1098
 
762
- * 0.9.19
1099
+ * AoC: Added command to display current workspace information
763
1100
 
764
- * Added command aspera bearer --scope=xx
1101
+ ### Breaking Changes
765
1102
 
766
- * 0.9.18
1103
+ * **global**: `@param:`is now `@preset:` and is generic
767
1104
 
768
- * Enhanced aspera admin events to support query
1105
+ ## 0.9.5
769
1106
 
770
- * 0.9.16
1107
+ ### New Features
771
1108
 
772
- * AoC transfers are now reported in activity app
773
- * New interface for Rest class authentication (keep backward compatibility)
1109
+ * New parameter: `new_user_option` used to choose between public_link and invite of external users
1110
+ * Fixed bug in wizard, and wizard uses now product detection
774
1111
 
775
- * 0.9.15
1112
+ ## 0.9.4
776
1113
 
777
- * New feature: "find" command in aspera files
778
- * Sample code for transfer API
1114
+ ### New Features
779
1115
 
780
- * 0.9.12
1116
+ * AoC Package send supports external users
1117
+ * New command to export AoC config to Aspera CLI config
781
1118
 
782
- * Add nagios commands
783
- * Support of ATS for IBM Cloud, removed old version based on aspera id
1119
+ ### Breaking Changes
784
1120
 
785
- * 0.9.11
1121
+ * `oncloud`: `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)
786
1122
 
787
- * Change(break): @stdin is now @stdin:
788
- * Support of ATS for IBM Cloud, removed old version based on aspera id
1123
+ ## 0.9.3
789
1124
 
790
- * 0.9.10
1125
+ ### New Features
791
1126
 
792
- * Change(break): Parameter transfer-node becomes more generic: `transfer-info`
793
- * Display SaaS storage usage with command: `aspera admin res node --id=nn info`
794
- * Cleaner way of specifying source file list for transfers
795
- * Change(break): Replaced download_mode option with http_download action
1127
+ * REST error message show host and code
1128
+ * Option for quiet display
1129
+ * Modified transfer interface and allow token re-generation on error
1130
+ * `async` add `admin` command
1131
+ * `async` add db parameters
796
1132
 
797
- * 0.9.9
1133
+ ### Breaking Changes
798
1134
 
799
- * Change(break): "aspera package send" parameter deprecated, use the --value option instead with "recipients" value. See example.
800
- * Now supports "cargo" for Aspera on Cloud (automatic package download)
1135
+ * **global**: New option `sources` to specify files to transfer
801
1136
 
802
- * 0.9.8
1137
+ ## 0.9.2
803
1138
 
804
- * Faspex: Use option once_only set to yes to enable cargo like function. id=NEW deprecated.
805
- * AoC: Share to share transfer with command "transfer"
1139
+ ### Breaking Changes
806
1140
 
807
- * 0.9.7
1141
+ * `aoc`: Changed AoC package creation to match API, see AoC section
808
1142
 
809
- * Homogeneous transfer spec for `node` and [`direct`](README.md#agt_direct) transfer agents
810
- * Preview persistency goes to unique file by default
811
- * Catch mxf extension in preview as video
812
- * Faspex: Possibility to download all packages by specifying id=ALL
813
- * Faspex: To come: Cargo-like function to download only new packages with id=NEW
1143
+ ## 0.9.1
814
1144
 
815
- * 0.9.6
1145
+ ### Breaking Changes
816
1146
 
817
- * Change(break): `@param:`is now `@preset:` and is generic
818
- * AoC: Added command to display current workspace information
1147
+ * `faspex`: Changed faspex package creation to match API, see Faspex section
819
1148
 
820
- * 0.9.5
1149
+ ## 0.9
821
1150
 
822
- * New parameter: `new_user_option` used to choose between public_link and invite of external users.
823
- * Fixed bug in wizard, and wizard uses now product detection
1151
+ ### New Features
824
1152
 
825
- * 0.9.4
1153
+ * Automatic rename and conversion of former config folder from aslmcli to ascli
826
1154
 
827
- * 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).
828
- * AoC Package send supports external users
829
- * New command to export AoC config to Aspera CLI config
1155
+ ### Breaking Changes
830
1156
 
831
- * 0.9.3
1157
+ * Renamed the CLI from aslmcli to ascli
832
1158
 
833
- * REST error message show host and code
834
- * Option for quiet display
835
- * Modified transfer interface and allow token re-generation on error
836
- * `async` add `admin` command
837
- * `async` add db parameters
838
- * Change(break): New option "sources" to specify files to transfer
1159
+ ## 0.7.6
839
1160
 
840
- * 0.9.2
1161
+ ### New Features
841
1162
 
842
- * Change(break): Changed AoC package creation to match API, see AoC section
1163
+ * Add `sync` plugin
843
1164
 
844
- * 0.9.1
1165
+ ## 0.7
845
1166
 
846
- * Change(break): Changed faspex package creation to match API, see Faspex section
1167
+ ### New Features
847
1168
 
848
- * 0.9
1169
+ * AoC: Receive package from public link
1170
+ * Select by col value on output
1171
+ * Added rename (AoC, node)
849
1172
 
850
- * Renamed the CLI from aslmcli to ascli
851
- * Automatic rename and conversion of former config folder from aslmcli to ascli
1173
+ ### Breaking Changes
852
1174
 
853
- * 0.7.6
1175
+ * `aoc`: AoC `package recv` take option if for package instead of argument
1176
+ * **global**: Rest class and Oauth class changed init parameters
854
1177
 
855
- * Add `sync` plugin
1178
+ ## 0.6.19
856
1179
 
857
- * 0.7
1180
+ ### Breaking Changes
858
1181
 
859
- * Change(break): AoC `package recv` take option if for package instead of argument.
860
- * Change(break): Rest class and Oauth class changed init parameters
861
- * AoC: Receive package from public link
862
- * Select by col value on output
863
- * Added rename (AoC, node)
1182
+ * `ats`: `ats server list provisioned` &rarr; `ats cluster list`
1183
+ * `ats`: `ats server list clouds` &rarr; `ats cluster clouds`
1184
+ * `ats`: `ats server list instance --cloud=x --region=y` &rarr; `ats cluster show --cloud=x --region=y`
1185
+ * `ats`: `ats server id xxx` &rarr; `ats cluster show --id=xxx`
1186
+ * `ats`: `ats subscriptions` &rarr; `ats credential subscriptions`
1187
+ * `ats`: `ats api_key repository list` &rarr; `ats credential cache list`
1188
+ * `ats`: `ats api_key list` &rarr; `ats credential list`
1189
+ * `ats`: `ats access_key id xxx` &rarr; `ats access_key --id=xxx`
864
1190
 
865
- * 0.6.19
1191
+ ## 0.6.18
866
1192
 
867
- * Change(break): `ats server list provisioned` &rarr; `ats cluster list`
868
- * Change(break): `ats server list clouds` &rarr; `ats cluster clouds`
869
- * Change(break): `ats server list instance --cloud=x --region=y` &rarr; `ats cluster show --cloud=x --region=y`
870
- * Change(break): `ats server id xxx` &rarr; `ats cluster show --id=xxx`
871
- * Change(break): `ats subscriptions` &rarr; `ats credential subscriptions`
872
- * Change(break): `ats api_key repository list` &rarr; `ats credential cache list`
873
- * Change(break): `ats api_key list` &rarr; `ats credential list`
874
- * Change(break): `ats access_key id xxx` &rarr; `ats access_key --id=xxx`
1193
+ ### New Features
875
1194
 
876
- * 0.6.18
1195
+ * Some commands take now `--id` option instead of `id` command
877
1196
 
878
- * Some commands take now `--id` option instead of `id` command.
1197
+ ## 0.6.15
879
1198
 
880
- * 0.6.15
1199
+ ### Breaking Changes
881
1200
 
882
- * 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`.
1201
+ * `aspera`: `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`