aspera-cli 4.24.2 → 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.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data/CHANGELOG.md +1064 -758
- data/CONTRIBUTING.md +43 -100
- data/README.md +671 -419
- data/lib/aspera/api/aoc.rb +71 -43
- data/lib/aspera/api/cos_node.rb +3 -2
- data/lib/aspera/api/faspex.rb +6 -5
- data/lib/aspera/api/node.rb +10 -12
- data/lib/aspera/ascmd.rb +1 -2
- data/lib/aspera/ascp/installation.rb +53 -39
- data/lib/aspera/assert.rb +25 -3
- data/lib/aspera/cli/error.rb +4 -2
- data/lib/aspera/cli/extended_value.rb +84 -60
- data/lib/aspera/cli/formatter.rb +55 -22
- data/lib/aspera/cli/main.rb +21 -14
- data/lib/aspera/cli/manager.rb +348 -247
- data/lib/aspera/cli/plugins/alee.rb +3 -3
- data/lib/aspera/cli/plugins/aoc.rb +70 -14
- data/lib/aspera/cli/plugins/base.rb +57 -49
- data/lib/aspera/cli/plugins/config.rb +69 -84
- data/lib/aspera/cli/plugins/console.rb +13 -8
- data/lib/aspera/cli/plugins/cos.rb +1 -1
- data/lib/aspera/cli/plugins/faspex.rb +32 -26
- data/lib/aspera/cli/plugins/faspex5.rb +45 -43
- data/lib/aspera/cli/plugins/faspio.rb +5 -5
- data/lib/aspera/cli/plugins/httpgw.rb +1 -1
- data/lib/aspera/cli/plugins/node.rb +131 -120
- data/lib/aspera/cli/plugins/oauth.rb +1 -1
- data/lib/aspera/cli/plugins/orchestrator.rb +114 -32
- data/lib/aspera/cli/plugins/preview.rb +26 -46
- data/lib/aspera/cli/plugins/server.rb +6 -8
- data/lib/aspera/cli/plugins/shares.rb +27 -32
- data/lib/aspera/cli/sync_actions.rb +49 -38
- data/lib/aspera/cli/transfer_agent.rb +16 -34
- data/lib/aspera/cli/version.rb +1 -1
- data/lib/aspera/cli/wizard.rb +8 -5
- data/lib/aspera/command_line_builder.rb +20 -17
- data/lib/aspera/coverage.rb +1 -1
- data/lib/aspera/environment.rb +41 -34
- data/lib/aspera/faspex_gw.rb +1 -1
- data/lib/aspera/keychain/factory.rb +1 -2
- data/lib/aspera/markdown.rb +31 -0
- data/lib/aspera/nagios.rb +6 -5
- data/lib/aspera/oauth/base.rb +17 -27
- data/lib/aspera/oauth/factory.rb +1 -1
- data/lib/aspera/oauth/url_json.rb +2 -1
- data/lib/aspera/preview/file_types.rb +23 -37
- data/lib/aspera/products/connect.rb +3 -3
- data/lib/aspera/rest.rb +51 -39
- data/lib/aspera/rest_error_analyzer.rb +4 -4
- data/lib/aspera/ssh.rb +5 -2
- data/lib/aspera/ssl.rb +41 -0
- data/lib/aspera/sync/conf.schema.yaml +182 -34
- data/lib/aspera/sync/database.rb +2 -1
- data/lib/aspera/sync/operations.rb +125 -69
- data/lib/aspera/transfer/parameters.rb +3 -4
- data/lib/aspera/transfer/spec.rb +2 -3
- data/lib/aspera/transfer/spec.schema.yaml +48 -18
- data/lib/aspera/transfer/spec_doc.rb +14 -14
- data/lib/aspera/uri_reader.rb +1 -1
- data/lib/transferd_pb.rb +2 -2
- data.tar.gz.sig +0 -0
- metadata +19 -6
- metadata.gz.sig +3 -2
data/CHANGELOG.md
CHANGED
|
@@ -1,895 +1,1201 @@
|
|
|
1
1
|
# Changes (Release notes)
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
*
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
*
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
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` → `ascp_openssl_dir`, `openssl_version` → `ascp_openssl_version`, `sdk_ascp_version` → `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
|
|
119
195
|
|
|
120
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`.
|
|
121
197
|
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
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.
|
|
134
215
|
**global**: Option `format=multi` is replaced with option `multi_table=yes`
|
|
135
|
-
|
|
216
|
+
* `faspex5`: Removed deprecated option `value` replaced with positional parameter.
|
|
136
217
|
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
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.
|
|
149
237
|
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
*
|
|
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
|
|
162
259
|
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
*
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
*
|
|
216
|
-
|
|
217
|
-
*
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
*
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
*
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
*
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
*
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
*
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
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`
|
|
399
563
|
as well as option `cmd_prefix`
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
*
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
*
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
*
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
*
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
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
|
|
548
900
|
|
|
549
|
-
|
|
550
|
-
* Now available as open source (GitHub) with general cleanup
|
|
551
|
-
* Added possibility to install SDK: `config ascp install`
|
|
552
|
-
* Breaking Changes:
|
|
553
|
-
* Changed default tool name from `mlia` to `ascli`
|
|
554
|
-
* Changed `aspera` command to `aoc`
|
|
555
|
-
* Changed gem name from `asperalm` to `aspera-cli`
|
|
556
|
-
* Changed module name from `Asperalm` to `Aspera`
|
|
557
|
-
* Removed command `folder` in `preview`, merged to `scan`
|
|
558
|
-
* Persistency files go to sub folder instead of main folder
|
|
901
|
+
## 0.10.5
|
|
559
902
|
|
|
560
|
-
*
|
|
903
|
+
* Fix faspex package receive command not working
|
|
561
904
|
|
|
562
|
-
|
|
905
|
+
## 0.10.4
|
|
563
906
|
|
|
564
|
-
*
|
|
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`
|
|
565
909
|
|
|
566
|
-
|
|
567
|
-
* Use option `display` with value `data` to remove out of extraneous information
|
|
568
|
-
* Fixed option `lock_port` not working
|
|
569
|
-
* Generate special icon if preview failed
|
|
570
|
-
* Possibility to choose transfer progress bar type with option `progress`
|
|
571
|
-
* AoC package creation now output package id
|
|
910
|
+
## 0.10.3
|
|
572
911
|
|
|
573
|
-
*
|
|
912
|
+
* Included user name in oauth bearer token cache for AoC when JWT is used
|
|
574
913
|
|
|
575
|
-
|
|
576
|
-
* `preview`: Cleanup in generator (removed and renamed parameters)
|
|
577
|
-
* `preview`: Better documentation
|
|
578
|
-
* `preview`: Animated thumbnails for video (option: `video_png_conv=animated`)
|
|
579
|
-
* `preview`: New event trigger: `trevents` (`events` seems broken)
|
|
580
|
-
* `preview`: Unique tmp folder to avoid clash of multiple instances
|
|
581
|
-
* Repo: Added template for secrets used for testing
|
|
914
|
+
## 0.10.2
|
|
582
915
|
|
|
583
|
-
*
|
|
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
|
|
584
919
|
|
|
585
|
-
|
|
586
|
-
* Allow bulk delete in `aspera files` with option `bulk=yes`
|
|
587
|
-
* Fix getting connect versions
|
|
588
|
-
* Added section for Aix
|
|
589
|
-
* Support all ciphers for [`direct`](README.md#agt_direct) agent (including gcm, etc..)
|
|
590
|
-
* Added transfer spec param `apply_local_docroot` for [`direct`](README.md#agt_direct)
|
|
920
|
+
## 0.10.1
|
|
591
921
|
|
|
592
|
-
*
|
|
922
|
+
* AoC and node v4 "browse" works now on non-folder items: file, link
|
|
923
|
+
* Initial support for AoC automation (do not use yet)
|
|
593
924
|
|
|
594
|
-
|
|
925
|
+
## 0.10
|
|
595
926
|
|
|
596
|
-
*
|
|
927
|
+
* Support for transfer using IBM Cloud Object Storage
|
|
928
|
+
* Improved `find` action using arbitrary expressions
|
|
597
929
|
|
|
598
|
-
|
|
930
|
+
## 0.9.36
|
|
599
931
|
|
|
600
|
-
*
|
|
932
|
+
* Added option to specify file pair lists
|
|
601
933
|
|
|
602
|
-
|
|
934
|
+
## 0.9.35
|
|
603
935
|
|
|
604
|
-
*
|
|
936
|
+
* `preview`: Changed parameter names, added documentation
|
|
937
|
+
* `ats`: Fix: instance ID needed in request header
|
|
605
938
|
|
|
606
|
-
|
|
939
|
+
## 0.9.34
|
|
607
940
|
|
|
608
|
-
*
|
|
941
|
+
* Parser "@preset" can be used again in option "transfer_info"
|
|
942
|
+
* Some documentation re-organizing
|
|
609
943
|
|
|
610
|
-
|
|
944
|
+
## 0.9.33
|
|
611
945
|
|
|
612
|
-
*
|
|
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
|
|
613
950
|
|
|
614
|
-
|
|
951
|
+
## 0.9.32
|
|
615
952
|
|
|
616
|
-
|
|
953
|
+
### New Features
|
|
617
954
|
|
|
618
|
-
|
|
619
|
-
|
|
955
|
+
* All Faspex public links are now supported
|
|
956
|
+
* Removed faspex operation `recv_publink`. Replaced with option `link` (consistent with AoC).
|
|
620
957
|
|
|
621
|
-
|
|
958
|
+
## 0.9.31
|
|
622
959
|
|
|
623
|
-
|
|
960
|
+
### New Features
|
|
624
961
|
|
|
625
|
-
*
|
|
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
|
|
626
965
|
|
|
627
|
-
|
|
628
|
-
* AoC : Activity / Analytics
|
|
966
|
+
## 0.9.27
|
|
629
967
|
|
|
630
|
-
|
|
968
|
+
### New Features
|
|
631
969
|
|
|
632
|
-
|
|
970
|
+
* Basic email support with SMTP
|
|
971
|
+
* Basic proxy auto config support
|
|
633
972
|
|
|
634
|
-
|
|
973
|
+
## 0.9.26
|
|
635
974
|
|
|
636
|
-
|
|
975
|
+
### New Features
|
|
637
976
|
|
|
638
|
-
*
|
|
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
|
|
639
979
|
|
|
640
|
-
|
|
641
|
-
* Replaced option : `local_resume` with `transfer_info` for agent [`direct`](README.md#agt_direct)
|
|
642
|
-
* Transfer agent is no more a Singleton instance, but only one is used in CLI
|
|
643
|
-
* `@incps` : New extended value modifier
|
|
644
|
-
* ATS: No more provides access keys secrets: now user must provide it
|
|
645
|
-
* Begin work on "aoc" transfer agent
|
|
980
|
+
## 0.9.25
|
|
646
981
|
|
|
647
|
-
|
|
982
|
+
### New Features
|
|
648
983
|
|
|
649
|
-
|
|
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...)
|
|
650
987
|
|
|
651
|
-
|
|
988
|
+
## 0.9.24
|
|
652
989
|
|
|
653
|
-
|
|
990
|
+
### New Features
|
|
654
991
|
|
|
655
|
-
*
|
|
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
|
|
656
994
|
|
|
657
|
-
|
|
658
|
-
* Better gem version dependency (and fixes to support Ruby 2.0.0)
|
|
659
|
-
* Removed aoc search_nodes
|
|
995
|
+
## 0.9.23
|
|
660
996
|
|
|
661
|
-
|
|
997
|
+
### New Features
|
|
662
998
|
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
* Several other changes..
|
|
999
|
+
* Defined REST error handlers, more error conditions detected
|
|
1000
|
+
* Commands to select specific ascp location
|
|
666
1001
|
|
|
667
|
-
|
|
1002
|
+
## 0.9.21
|
|
668
1003
|
|
|
669
|
-
|
|
1004
|
+
### New Features
|
|
670
1005
|
|
|
671
|
-
*
|
|
1006
|
+
* Supports simplified wizard using global client
|
|
1007
|
+
* Only `ascp` binary is required, other SDK (keys) files are now generated
|
|
672
1008
|
|
|
673
|
-
|
|
674
|
-
* Gem version requirements made more open
|
|
1009
|
+
## 0.9.20
|
|
675
1010
|
|
|
676
|
-
|
|
1011
|
+
### New Features
|
|
677
1012
|
|
|
678
|
-
|
|
1013
|
+
* Improved wizard (prepare for AoC global client id)
|
|
1014
|
+
* Preview generator: Added option : --skip-format=<png,mp4>
|
|
1015
|
+
* Removed outdated pictures from this doc
|
|
679
1016
|
|
|
680
|
-
|
|
1017
|
+
## 0.9.19
|
|
681
1018
|
|
|
682
|
-
|
|
683
|
-
* `ACLI-533` temp file list folder to use file lists is set by default, and used by `asession`
|
|
1019
|
+
### New Features
|
|
684
1020
|
|
|
685
|
-
*
|
|
1021
|
+
* Added command `aspera bearer --scope=xx`
|
|
686
1022
|
|
|
687
|
-
|
|
1023
|
+
## 0.9.18
|
|
688
1024
|
|
|
689
|
-
|
|
1025
|
+
### New Features
|
|
690
1026
|
|
|
691
|
-
|
|
692
|
-
* Added doc for "cargo" like actions
|
|
693
|
-
* Added doc for multi-session
|
|
1027
|
+
* Enhanced aspera admin events to support query
|
|
694
1028
|
|
|
695
|
-
|
|
1029
|
+
## 0.9.16
|
|
696
1030
|
|
|
697
|
-
|
|
698
|
-
* Initial support for AoC automation (do not use yet)
|
|
1031
|
+
### New Features
|
|
699
1032
|
|
|
700
|
-
*
|
|
1033
|
+
* AoC transfers are now reported in activity app
|
|
1034
|
+
* New interface for Rest class authentication (keep backward compatibility)
|
|
701
1035
|
|
|
702
|
-
|
|
703
|
-
* Improved `find` action using arbitrary expressions
|
|
1036
|
+
## 0.9.15
|
|
704
1037
|
|
|
705
|
-
|
|
1038
|
+
### New Features
|
|
706
1039
|
|
|
707
|
-
|
|
1040
|
+
* New feature: "find" command in aspera files
|
|
1041
|
+
* Sample code for transfer API
|
|
708
1042
|
|
|
709
|
-
|
|
1043
|
+
## 0.9.12
|
|
710
1044
|
|
|
711
|
-
|
|
712
|
-
* `ats`: Fix: instance ID needed in request header
|
|
1045
|
+
### New Features
|
|
713
1046
|
|
|
714
|
-
*
|
|
1047
|
+
* Add nagios commands
|
|
1048
|
+
* Support of ATS for IBM Cloud, removed old version based on aspera id
|
|
715
1049
|
|
|
716
|
-
|
|
717
|
-
* Some documentation re-organizing
|
|
1050
|
+
## 0.9.11
|
|
718
1051
|
|
|
719
|
-
*
|
|
1052
|
+
* Support of ATS for IBM Cloud, removed old version based on aspera id
|
|
720
1053
|
|
|
721
|
-
|
|
722
|
-
* New command to display bearer token of node in AoC
|
|
723
|
-
* The --fields= option, support +_field_name_ to add a field to default fields
|
|
724
|
-
* Many small changes
|
|
1054
|
+
### Breaking Changes
|
|
725
1055
|
|
|
726
|
-
*
|
|
1056
|
+
* **global**: @stdin is now @stdin
|
|
727
1057
|
|
|
728
|
-
|
|
729
|
-
* Removed faspex operation `recv_publink`
|
|
730
|
-
* Replaced with option `link` (consistent with AoC)
|
|
1058
|
+
## 0.9.10
|
|
731
1059
|
|
|
732
|
-
*
|
|
1060
|
+
* Display SaaS storage usage with command: `aspera admin res node --id=nn info`
|
|
1061
|
+
* Cleaner way of specifying source file list for transfers
|
|
733
1062
|
|
|
734
|
-
|
|
735
|
-
* Delete expired file lists
|
|
736
|
-
* Changed text table gem from text-table to terminal-table because it supports multiline values
|
|
1063
|
+
### Breaking Changes
|
|
737
1064
|
|
|
738
|
-
*
|
|
1065
|
+
* **global**: Parameter transfer-node becomes more generic: `transfer-info`
|
|
1066
|
+
* **global**: Replaced download_mode option with http_download action
|
|
739
1067
|
|
|
740
|
-
|
|
741
|
-
* Basic proxy auto config support
|
|
1068
|
+
## 0.9.9
|
|
742
1069
|
|
|
743
|
-
|
|
1070
|
+
### New Features
|
|
744
1071
|
|
|
745
|
-
|
|
746
|
-
* Unprocessed argument shows error even if there is an error beforehand
|
|
1072
|
+
* Now supports "cargo" for Aspera on Cloud (automatic package download)
|
|
747
1073
|
|
|
748
|
-
|
|
1074
|
+
### Breaking Changes
|
|
749
1075
|
|
|
750
|
-
|
|
751
|
-
* `find` now also reports all types (file, folder, link)
|
|
752
|
-
* `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
|
|
753
1077
|
|
|
754
|
-
|
|
1078
|
+
## 0.9.8
|
|
755
1079
|
|
|
756
|
-
|
|
757
|
-
* Fix bug on error if ED25519 private key is defined in .ssh
|
|
1080
|
+
### New Features
|
|
758
1081
|
|
|
759
|
-
*
|
|
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`
|
|
760
1084
|
|
|
761
|
-
|
|
762
|
-
* Commands to select specific ascp location
|
|
1085
|
+
## 0.9.7
|
|
763
1086
|
|
|
764
|
-
|
|
1087
|
+
### New Features
|
|
765
1088
|
|
|
766
|
-
|
|
767
|
-
|
|
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
|
|
768
1094
|
|
|
769
|
-
|
|
1095
|
+
## 0.9.6
|
|
770
1096
|
|
|
771
|
-
|
|
772
|
-
* Preview generator: Added option : --skip-format=<png,mp4>
|
|
773
|
-
* Removed outdated pictures from this doc
|
|
1097
|
+
### New Features
|
|
774
1098
|
|
|
775
|
-
*
|
|
1099
|
+
* AoC: Added command to display current workspace information
|
|
776
1100
|
|
|
777
|
-
|
|
1101
|
+
### Breaking Changes
|
|
778
1102
|
|
|
779
|
-
*
|
|
1103
|
+
* **global**: `@param:`is now `@preset:` and is generic
|
|
780
1104
|
|
|
781
|
-
|
|
1105
|
+
## 0.9.5
|
|
782
1106
|
|
|
783
|
-
|
|
1107
|
+
### New Features
|
|
784
1108
|
|
|
785
|
-
|
|
786
|
-
|
|
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
|
|
787
1111
|
|
|
788
|
-
|
|
1112
|
+
## 0.9.4
|
|
789
1113
|
|
|
790
|
-
|
|
791
|
-
* Sample code for transfer API
|
|
1114
|
+
### New Features
|
|
792
1115
|
|
|
793
|
-
*
|
|
1116
|
+
* AoC Package send supports external users
|
|
1117
|
+
* New command to export AoC config to Aspera CLI config
|
|
794
1118
|
|
|
795
|
-
|
|
796
|
-
* Support of ATS for IBM Cloud, removed old version based on aspera id
|
|
1119
|
+
### Breaking Changes
|
|
797
1120
|
|
|
798
|
-
*
|
|
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)
|
|
799
1122
|
|
|
800
|
-
|
|
801
|
-
* Support of ATS for IBM Cloud, removed old version based on aspera id
|
|
1123
|
+
## 0.9.3
|
|
802
1124
|
|
|
803
|
-
|
|
1125
|
+
### New Features
|
|
804
1126
|
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
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
|
|
809
1132
|
|
|
810
|
-
|
|
1133
|
+
### Breaking Changes
|
|
811
1134
|
|
|
812
|
-
|
|
813
|
-
* Now supports "cargo" for Aspera on Cloud (automatic package download)
|
|
1135
|
+
* **global**: New option `sources` to specify files to transfer
|
|
814
1136
|
|
|
815
|
-
|
|
1137
|
+
## 0.9.2
|
|
816
1138
|
|
|
817
|
-
|
|
818
|
-
* AoC: Share to share transfer with command "transfer"
|
|
1139
|
+
### Breaking Changes
|
|
819
1140
|
|
|
820
|
-
*
|
|
1141
|
+
* `aoc`: Changed AoC package creation to match API, see AoC section
|
|
821
1142
|
|
|
822
|
-
|
|
823
|
-
* Preview persistency goes to unique file by default
|
|
824
|
-
* Catch mxf extension in preview as video
|
|
825
|
-
* Faspex: Possibility to download all packages by specifying id=ALL
|
|
826
|
-
* Faspex: To come: Cargo-like function to download only new packages with id=NEW
|
|
1143
|
+
## 0.9.1
|
|
827
1144
|
|
|
828
|
-
|
|
1145
|
+
### Breaking Changes
|
|
829
1146
|
|
|
830
|
-
|
|
831
|
-
* AoC: Added command to display current workspace information
|
|
1147
|
+
* `faspex`: Changed faspex package creation to match API, see Faspex section
|
|
832
1148
|
|
|
833
|
-
|
|
1149
|
+
## 0.9
|
|
834
1150
|
|
|
835
|
-
|
|
836
|
-
* Fixed bug in wizard, and wizard uses now product detection
|
|
1151
|
+
### New Features
|
|
837
1152
|
|
|
838
|
-
*
|
|
1153
|
+
* Automatic rename and conversion of former config folder from aslmcli to ascli
|
|
839
1154
|
|
|
840
|
-
|
|
841
|
-
* AoC Package send supports external users
|
|
842
|
-
* New command to export AoC config to Aspera CLI config
|
|
1155
|
+
### Breaking Changes
|
|
843
1156
|
|
|
844
|
-
*
|
|
1157
|
+
* Renamed the CLI from aslmcli to ascli
|
|
845
1158
|
|
|
846
|
-
|
|
847
|
-
* Option for quiet display
|
|
848
|
-
* Modified transfer interface and allow token re-generation on error
|
|
849
|
-
* `async` add `admin` command
|
|
850
|
-
* `async` add db parameters
|
|
851
|
-
* Change(break): New option "sources" to specify files to transfer
|
|
1159
|
+
## 0.7.6
|
|
852
1160
|
|
|
853
|
-
|
|
1161
|
+
### New Features
|
|
854
1162
|
|
|
855
|
-
|
|
1163
|
+
* Add `sync` plugin
|
|
856
1164
|
|
|
857
|
-
|
|
1165
|
+
## 0.7
|
|
858
1166
|
|
|
859
|
-
|
|
1167
|
+
### New Features
|
|
860
1168
|
|
|
861
|
-
*
|
|
1169
|
+
* AoC: Receive package from public link
|
|
1170
|
+
* Select by col value on output
|
|
1171
|
+
* Added rename (AoC, node)
|
|
862
1172
|
|
|
863
|
-
|
|
864
|
-
* Automatic rename and conversion of former config folder from aslmcli to ascli
|
|
1173
|
+
### Breaking Changes
|
|
865
1174
|
|
|
866
|
-
*
|
|
1175
|
+
* `aoc`: AoC `package recv` take option if for package instead of argument
|
|
1176
|
+
* **global**: Rest class and Oauth class changed init parameters
|
|
867
1177
|
|
|
868
|
-
|
|
1178
|
+
## 0.6.19
|
|
869
1179
|
|
|
870
|
-
|
|
1180
|
+
### Breaking Changes
|
|
871
1181
|
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
|
|
1182
|
+
* `ats`: `ats server list provisioned` → `ats cluster list`
|
|
1183
|
+
* `ats`: `ats server list clouds` → `ats cluster clouds`
|
|
1184
|
+
* `ats`: `ats server list instance --cloud=x --region=y` → `ats cluster show --cloud=x --region=y`
|
|
1185
|
+
* `ats`: `ats server id xxx` → `ats cluster show --id=xxx`
|
|
1186
|
+
* `ats`: `ats subscriptions` → `ats credential subscriptions`
|
|
1187
|
+
* `ats`: `ats api_key repository list` → `ats credential cache list`
|
|
1188
|
+
* `ats`: `ats api_key list` → `ats credential list`
|
|
1189
|
+
* `ats`: `ats access_key id xxx` → `ats access_key --id=xxx`
|
|
877
1190
|
|
|
878
|
-
|
|
1191
|
+
## 0.6.18
|
|
879
1192
|
|
|
880
|
-
|
|
881
|
-
* Change(break): `ats server list clouds` → `ats cluster clouds`
|
|
882
|
-
* Change(break): `ats server list instance --cloud=x --region=y` → `ats cluster show --cloud=x --region=y`
|
|
883
|
-
* Change(break): `ats server id xxx` → `ats cluster show --id=xxx`
|
|
884
|
-
* Change(break): `ats subscriptions` → `ats credential subscriptions`
|
|
885
|
-
* Change(break): `ats api_key repository list` → `ats credential cache list`
|
|
886
|
-
* Change(break): `ats api_key list` → `ats credential list`
|
|
887
|
-
* Change(break): `ats access_key id xxx` → `ats access_key --id=xxx`
|
|
1193
|
+
### New Features
|
|
888
1194
|
|
|
889
|
-
*
|
|
1195
|
+
* Some commands take now `--id` option instead of `id` command
|
|
890
1196
|
|
|
891
|
-
|
|
1197
|
+
## 0.6.15
|
|
892
1198
|
|
|
893
|
-
|
|
1199
|
+
### Breaking Changes
|
|
894
1200
|
|
|
895
|
-
|
|
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`
|