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