aspera-cli 4.20.0 → 4.21.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (43) hide show
  1. checksums.yaml +4 -4
  2. checksums.yaml.gz.sig +0 -0
  3. data/CHANGELOG.md +20 -2
  4. data/README.md +281 -156
  5. data/bin/asession +2 -2
  6. data/lib/aspera/agent/alpha.rb +7 -12
  7. data/lib/aspera/agent/connect.rb +19 -1
  8. data/lib/aspera/agent/direct.rb +20 -29
  9. data/lib/aspera/agent/node.rb +1 -11
  10. data/lib/aspera/agent/trsdk.rb +4 -25
  11. data/lib/aspera/api/aoc.rb +5 -0
  12. data/lib/aspera/api/node.rb +45 -28
  13. data/lib/aspera/ascp/installation.rb +69 -38
  14. data/lib/aspera/ascp/management.rb +27 -6
  15. data/lib/aspera/cli/formatter.rb +149 -141
  16. data/lib/aspera/cli/info.rb +1 -1
  17. data/lib/aspera/cli/manager.rb +1 -0
  18. data/lib/aspera/cli/plugin.rb +2 -2
  19. data/lib/aspera/cli/plugins/aoc.rb +27 -17
  20. data/lib/aspera/cli/plugins/config.rb +31 -21
  21. data/lib/aspera/cli/plugins/faspex.rb +1 -1
  22. data/lib/aspera/cli/plugins/faspex5.rb +11 -3
  23. data/lib/aspera/cli/plugins/node.rb +44 -38
  24. data/lib/aspera/cli/version.rb +1 -1
  25. data/lib/aspera/command_line_builder.rb +1 -1
  26. data/lib/aspera/environment.rb +5 -6
  27. data/lib/aspera/node_simulator.rb +228 -112
  28. data/lib/aspera/oauth/base.rb +31 -42
  29. data/lib/aspera/oauth/factory.rb +41 -2
  30. data/lib/aspera/persistency_folder.rb +20 -2
  31. data/lib/aspera/preview/generator.rb +1 -1
  32. data/lib/aspera/preview/utils.rb +1 -1
  33. data/lib/aspera/products/alpha.rb +30 -0
  34. data/lib/aspera/products/connect.rb +48 -0
  35. data/lib/aspera/products/other.rb +82 -0
  36. data/lib/aspera/products/trsdk.rb +54 -0
  37. data/lib/aspera/rest.rb +18 -13
  38. data/lib/aspera/ssh.rb +28 -24
  39. data/lib/aspera/transfer/spec.yaml +22 -20
  40. data.tar.gz.sig +0 -0
  41. metadata +21 -4
  42. metadata.gz.sig +0 -0
  43. data/lib/aspera/ascp/products.rb +0 -168
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3fb5a0fc5c22da5479bff1858e9bedd7188e7622c751f7560af1f0ce318fffc9
4
- data.tar.gz: 22cb2c17972d50bc198a63cce4c8a29dbb52dc184fa1ffda6a220cd793ef4e28
3
+ metadata.gz: 7eccd1786db449f6b69ba6671389cd9d2558eac163919f0df3f80c0e9d480d13
4
+ data.tar.gz: 1b2fdc5576d710c03b2454dd683e5f4904d3035def46e521aee4c47ac4317687
5
5
  SHA512:
6
- metadata.gz: 3e468ed7fae059b54a56402bf4a1e414eb28cfe527325f22f645b9bfe754ba2a2084298186b6a0afceef8698e87a914045132c1126ab39d7b75163dc50d4440f
7
- data.tar.gz: 4c774e429d9b364b3e5382873e4926fecd355b2d5504af30a7ce5814cc556c5686c50c309ba10f89ba5e1e6666651fcd195266d043d27be5cc77f9abad4735e3
6
+ metadata.gz: bae71442b0027dd3ffa41aaeeff2ef40cee4e1d4c099704d99dee7b7cc7c60cf6075b869ab8ecd2e885dbbf995fe323e3f874076d8fac43fa9095599ca4f8afa
7
+ data.tar.gz: 9e12befc58a0901903c29dc6009087f3448721ed6c37d3b8fa5df21ec4be439ba87cc81784461977f074a78e5ff3f6ce2808310606c1eddceb42cb7ded8eb7a3
checksums.yaml.gz.sig CHANGED
Binary file
data/CHANGELOG.md CHANGED
@@ -1,15 +1,33 @@
1
1
  # Changes (Release notes)
2
2
 
3
+ * 4.21.0
4
+
5
+ * New Features:
6
+ * `faspex5`: New command: `admin contact reset_password`
7
+ * `config`: New command: `tokens` with `list`, `show`, `flush` (replace `flush_tokens`)
8
+ * `aoc`: #178 packages can be browsed, and individual files can be downloaded now.
9
+ * Issues Fixed:
10
+ * `config`: Soft links in transfer SDK archive are correctly extracted
11
+ * `aoc`: Fix `packages delete` not working.
12
+ * `direct` agent: #174 Race condition fix with `ascp`: timeout waiting mgt port connect (select not readable)
13
+ * `config`: #175 `ascli config preset set GLOBAL version_check_days 0` causes a bad `config.yaml` to be written
14
+ * `preview`: #177 fix bug that prevents preview generation to work.
15
+ * Breaking Changes:
16
+ * **global** : Options `transpose_single` and `multi_table` replaced with single option `multi_single` and values: `no`, `yes`, `single`.
17
+ * **global** : Column name for single object is now `field` instead of `key`.
18
+ * **global** : Ruby minimum versions is now 2.7 (2.6 previously, that removes macOS default ruby support, but newer ruby version can be installed on macOS)
19
+ * `node`: Removed deprecated command prefix `exec:`, use `@ruby:` instead.
20
+
3
21
  * 4.20.0
4
22
 
5
- ATTENTIION: Due to the fact that Faspex version 4 is end of support, the `faspex` command will be deprecated. Use Faspex 5 from now.
23
+ 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`.
6
24
 
7
25
  * New Features:
8
26
  * `aoc`: Improved usability for creation of Admin shared folders.
9
27
  * `node`: New option `node_cache` (bool) for gen4 operations.
10
28
  * `node`: Option `root_id` now works always for node gen4, as well as `%id:` for file selection in addition to path.
11
29
  * `node`: `transfer list` now uses the `iteratin_token` to retrieve all values. Option `once_only` is now supported.
12
- * `global` : option `http_options` now include retry options.
30
+ * **global** : option `http_options` now include retry options.
13
31
  * Issues Fixed:
14
32
  * `aoc`: Fixed `find` command not working. (undefined variable)
15
33
  * `aoc`: #165 aoc mkdir now follows the last link of containing folder