aspera-cli 4.26.2 → 4.27.1

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 (159) hide show
  1. checksums.yaml +4 -4
  2. checksums.yaml.gz.sig +0 -0
  3. data/CHANGELOG.md +310 -21
  4. data/CONTRIBUTING.md +99 -14
  5. data/TODO.md +50 -0
  6. data/bin/ascli +3 -3
  7. data/docs/README.md +10977 -0
  8. data/docs/test-mcp-with-ai.md +202 -0
  9. data/lib/aspera/agent/base.rb +29 -7
  10. data/lib/aspera/agent/connect.rb +58 -21
  11. data/lib/aspera/agent/desktop.rb +53 -18
  12. data/lib/aspera/agent/direct.rb +71 -40
  13. data/lib/aspera/agent/factory.rb +3 -3
  14. data/lib/aspera/agent/httpgw.rb +55 -14
  15. data/lib/aspera/agent/node.rb +34 -2
  16. data/lib/aspera/agent/transferd.rb +48 -12
  17. data/lib/aspera/api/alee.rb +1 -1
  18. data/lib/aspera/api/aoc.rb +42 -44
  19. data/lib/aspera/api/cos_node.rb +10 -9
  20. data/lib/aspera/api/faspex.rb +16 -15
  21. data/lib/aspera/api/httpgw.rb +23 -23
  22. data/lib/aspera/api/node.rb +51 -70
  23. data/lib/aspera/api/queries/bss_subscription_account.graphql +18 -0
  24. data/lib/aspera/api/queries/bss_subscription_usage.graphql +18 -0
  25. data/lib/aspera/ascmd.rb +32 -30
  26. data/lib/aspera/ascp/installation.rb +75 -69
  27. data/lib/aspera/ascp/management.rb +7 -8
  28. data/lib/aspera/assert.rb +12 -13
  29. data/lib/aspera/cli/ascp_actions.rb +155 -0
  30. data/lib/aspera/cli/async_transfer_store.rb +125 -0
  31. data/lib/aspera/cli/bootstrapper.rb +197 -0
  32. data/lib/aspera/cli/command_registry.rb +145 -0
  33. data/lib/aspera/cli/command_spec.rb +141 -0
  34. data/lib/aspera/cli/context.rb +19 -6
  35. data/lib/aspera/cli/error.rb +16 -0
  36. data/lib/aspera/cli/extended_value.rb +27 -26
  37. data/lib/aspera/cli/formatter.rb +95 -59
  38. data/lib/aspera/cli/gem_checker.rb +65 -0
  39. data/lib/aspera/cli/hints.rb +3 -3
  40. data/lib/aspera/cli/http.rb +74 -30
  41. data/lib/aspera/cli/info.rb +2 -0
  42. data/lib/aspera/cli/mailer.rb +97 -0
  43. data/lib/aspera/cli/mcp_tool.rb +225 -0
  44. data/lib/aspera/cli/option_declarator.rb +77 -0
  45. data/lib/aspera/cli/options.schema.yaml +634 -7
  46. data/lib/aspera/cli/parser.rb +1217 -0
  47. data/lib/aspera/cli/plugins/alee.rb +20 -22
  48. data/lib/aspera/cli/plugins/aoc.rb +1178 -881
  49. data/lib/aspera/cli/plugins/ats.rb +205 -162
  50. data/lib/aspera/cli/plugins/base.rb +703 -175
  51. data/lib/aspera/cli/plugins/basic_auth.rb +7 -9
  52. data/lib/aspera/cli/plugins/config.rb +434 -757
  53. data/lib/aspera/cli/plugins/console.rb +107 -65
  54. data/lib/aspera/cli/plugins/cos.rb +46 -33
  55. data/lib/aspera/cli/plugins/factory.rb +6 -6
  56. data/lib/aspera/cli/plugins/faspex5.rb +627 -388
  57. data/lib/aspera/cli/plugins/faspio.rb +54 -51
  58. data/lib/aspera/cli/plugins/httpgw.rb +18 -25
  59. data/lib/aspera/cli/plugins/mcp.rb +279 -0
  60. data/lib/aspera/cli/plugins/node.rb +988 -840
  61. data/lib/aspera/cli/plugins/oauth.rb +7 -10
  62. data/lib/aspera/cli/plugins/orchestrator.rb +112 -135
  63. data/lib/aspera/cli/plugins/preview.rb +195 -157
  64. data/lib/aspera/cli/plugins/server.rb +141 -91
  65. data/lib/aspera/cli/plugins/shares.rb +343 -110
  66. data/lib/aspera/cli/preset_actions.rb +159 -0
  67. data/lib/aspera/cli/preset_manager.rb +82 -39
  68. data/lib/aspera/cli/result.rb +78 -26
  69. data/lib/aspera/cli/runner.rb +323 -153
  70. data/lib/aspera/cli/secret_finder.rb +40 -0
  71. data/lib/aspera/cli/special_values.rb +1 -0
  72. data/lib/aspera/cli/sync_actions.rb +89 -64
  73. data/lib/aspera/cli/terminal_formatter.rb +3 -3
  74. data/lib/aspera/cli/transfer_actions.rb +90 -0
  75. data/lib/aspera/cli/transfer_agent.rb +129 -64
  76. data/lib/aspera/cli/transfer_progress.rb +9 -9
  77. data/lib/aspera/cli/vault_manager.rb +79 -0
  78. data/lib/aspera/cli/version.rb +1 -1
  79. data/lib/aspera/cli/wizard.rb +28 -30
  80. data/lib/aspera/colors.rb +3 -3
  81. data/lib/aspera/command_line_builder.rb +34 -34
  82. data/lib/aspera/command_line_converter.rb +1 -1
  83. data/lib/aspera/coverage.rb +1 -2
  84. data/lib/aspera/data_repository.rb +2 -1
  85. data/lib/aspera/dot_container.rb +12 -12
  86. data/lib/aspera/environment.rb +30 -23
  87. data/lib/aspera/exec_spec.rb +13 -0
  88. data/lib/aspera/faspex_gw.rb +5 -5
  89. data/lib/aspera/faspex_postproc.rb +16 -10
  90. data/lib/aspera/graphql.rb +37 -0
  91. data/lib/aspera/hash_ext.rb +8 -2
  92. data/lib/aspera/json_rpc/client.rb +62 -0
  93. data/lib/aspera/json_rpc/version.rb +7 -0
  94. data/lib/aspera/keychain/base.rb +10 -3
  95. data/lib/aspera/keychain/encrypted_hash.rb +92 -17
  96. data/lib/aspera/keychain/factory.rb +20 -8
  97. data/lib/aspera/keychain/hashicorp_vault.rb +1 -1
  98. data/lib/aspera/keychain/macos_security.rb +23 -25
  99. data/lib/aspera/keychain/one_password_api.rb +86 -0
  100. data/lib/aspera/keychain/one_password_base.rb +34 -0
  101. data/lib/aspera/keychain/one_password_cli.rb +98 -0
  102. data/lib/aspera/link_header.rb +82 -0
  103. data/lib/aspera/log.rb +29 -15
  104. data/lib/aspera/markdown.rb +90 -7
  105. data/lib/aspera/nagios.rb +8 -8
  106. data/lib/aspera/node_simulator.rb +35 -27
  107. data/lib/aspera/oauth/base.rb +9 -10
  108. data/lib/aspera/oauth/boot.rb +5 -5
  109. data/lib/aspera/oauth/factory.rb +12 -10
  110. data/lib/aspera/oauth/jwt.rb +9 -11
  111. data/lib/aspera/oauth/web.rb +6 -6
  112. data/lib/aspera/persistency_action_once.rb +12 -12
  113. data/lib/aspera/persistency_folder.rb +18 -11
  114. data/lib/aspera/preview/file_types.rb +5 -5
  115. data/lib/aspera/preview/generator.rb +52 -49
  116. data/lib/aspera/preview/options.rb +3 -2
  117. data/lib/aspera/preview/terminal.rb +5 -5
  118. data/lib/aspera/preview/utils.rb +66 -19
  119. data/lib/aspera/products/connect.rb +2 -2
  120. data/lib/aspera/products/desktop.rb +1 -1
  121. data/lib/aspera/products/other.rb +3 -3
  122. data/lib/aspera/products/transferd.rb +4 -4
  123. data/lib/aspera/proxy_auto_config.rb +15 -14
  124. data/lib/aspera/rest.rb +159 -151
  125. data/lib/aspera/rest_error_analyzer.rb +6 -6
  126. data/lib/aspera/rest_errors_aspera.rb +0 -10
  127. data/lib/aspera/rest_list.rb +11 -10
  128. data/lib/aspera/schema/IBM Aspera Node API-4.4.6.yaml +6232 -0
  129. data/lib/aspera/schema/IBM Aspera faspio Gateway API-1.0.0.yaml +249 -0
  130. data/lib/aspera/schema/IBM Aspera on Cloud API-0.2.6-enhanced.yaml +1853 -510
  131. data/lib/aspera/schema/IBM_Aspera_Shares.yaml +4653 -0
  132. data/lib/aspera/schema/documentation.rb +65 -28
  133. data/lib/aspera/schema/reader.rb +136 -13
  134. data/lib/aspera/schema/registry.rb +60 -8
  135. data/lib/aspera/secret_hider.rb +12 -7
  136. data/lib/aspera/ssh.rb +64 -31
  137. data/lib/aspera/ssl.rb +5 -5
  138. data/lib/aspera/sync/conf.schema.yaml +2 -2
  139. data/lib/aspera/sync/database.rb +2 -2
  140. data/lib/aspera/sync/operations.rb +22 -25
  141. data/lib/aspera/temp_file_manager.rb +25 -5
  142. data/lib/aspera/timer_limiter.rb +1 -1
  143. data/lib/aspera/transfer/faux_file.rb +24 -11
  144. data/lib/aspera/transfer/parameters.rb +36 -34
  145. data/lib/aspera/transfer/result.rb +74 -0
  146. data/lib/aspera/transfer/resumer.rb +10 -10
  147. data/lib/aspera/transfer/spec.rb +18 -1
  148. data/lib/aspera/transfer/spec.schema.yaml +12 -3
  149. data/lib/aspera/uri_reader.rb +52 -15
  150. data/lib/aspera/web_auth.rb +8 -7
  151. data/lib/aspera/web_server_simple.rb +15 -12
  152. data/lib/aspera/yaml.rb +5 -4
  153. data.tar.gz.sig +0 -0
  154. metadata +34 -6
  155. metadata.gz.sig +0 -0
  156. data/lib/aspera/cli/manager.rb +0 -766
  157. data/lib/aspera/cli/plugins/faspex.rb +0 -539
  158. data/lib/aspera/json_rpc.rb +0 -52
  159. data/lib/aspera/transfer/uri.rb +0 -56
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3959459dc4ecd6fbc28e485b7665744293691d275d7597375b9ee2e80dfb9477
4
- data.tar.gz: 62fe6561296d5a6f35473e7c7e831a3089e54fecdbd364a4042e01f993db180e
3
+ metadata.gz: 4cd55cd81317773b0a3db9df127c37d38c7d4eb4b3740c12d9e950a175cdb3b7
4
+ data.tar.gz: 8cf2aa9a26337d022f920ed616f61beaf45ee13a47e22f2908c374a1124a094c
5
5
  SHA512:
6
- metadata.gz: 95a052413af5c03a31e74c5b71f359b4dcd7f2af34e59be7c5c2fb49af862b45ce76be92d464419da1c9c944e1d140cd5b957a72916f53384e95317faf08fbcf
7
- data.tar.gz: ed1aaa7ac2079839f69b506044ca7129e16cc4eb2c371d3311deb598aa91c6ed22c15bac03f8398062768cbdfc8131dc4fcafe84b637ce2a8357fb8c3af5c515
6
+ metadata.gz: 66e364c4c859eb7b1495ba55095d0b737e87fb3c450fe3017f0848b8002ff686cdcd2f3ddc3054c20f524401489bfeda634a6c663e78ed217ae09e964bbc8e6e
7
+ data.tar.gz: c117f95520d0d36bfa37c8a0cbac78727f0b085b89a22d0fa7318a1918d6510fa37a7cf01754ff7f8e45b7b43696e8fa26fda743ec74a03b5a67220846de6ac6
checksums.yaml.gz.sig CHANGED
Binary file
data/CHANGELOG.md CHANGED
@@ -1,5 +1,62 @@
1
1
  # Changes (Release notes)
2
2
 
3
+ ## 4.27.1
4
+
5
+ Released: 2026-09-16
6
+
7
+ ### New Features
8
+
9
+ * **global**: `browse` is now accepted as an alias for `ls` in `node access_key do`, `aoc files`, `aoc admin node do`, and `aoc admin ats access_key node`.
10
+ * `config`: Vault: added support for 1Password as a secret store.
11
+ * `config`: Preset secrets (passwords, keys) are now automatically moved to the vault when a preset is saved and a vault is used.
12
+ * `httpgw`: Added asynchronous transfer mode — `last_job_id` is now exposed so a transfer can be submitted and its status queried later.
13
+ * `direct`: Added asynchronous transfer mode — `last_job_id` is now exposed so a transfer can be submitted and its status queried later.
14
+ * `preview`: `scan` now accepts an optional path or `%id:<file_id>` selector, allowing preview generation for one file or a subtree. Added the `--filter` option, supporting glob strings, regular expressions, and `@ruby:` Proc expressions.
15
+ * `config`: Preset keys starting with `_` (e.g. `_comment`) are now ignored when a preset is applied as CLI options, allowing inline annotations in `config.yaml`.
16
+ * **global**: New composite option `--out` groups all output rendering options with dot-notation sub-keys: `format`, `level`, `file`, `fields`, `select`, `table[.pivot]`, `flat`, `secrets`, `img`. Individual options preserved with deprecation warnings.
17
+ * `config`: `preset set` now supports dot-notation keys with deep-merge and automatic type coercion.
18
+
19
+ ### Issues Fixed
20
+
21
+ * `faspex5`: Wizard was incorrectly nesting `client_id` and `client_secret` under a `params:` sub-key in the generated preset, instead of placing them at the top level.
22
+ * **global**: Assigning `@none:` to a `Hash`-typed option now correctly resets it to `nil` instead of being stored as a literal value.
23
+ * `config`: Vault: removed `symmetric-encryption` gem dependency, replaced with `openssl`. Existing encrypted data may not be compatible — export your vault contents first, then re-import after upgrading.
24
+ * `config`: Vault: fixed macOS Keychain API compatibility.
25
+ * **global**: Option type `Hash` is now automatically inferred when the option schema uses `oneOf`/`anyOf` with all-object branches; no need to specify `allowed: Hash` explicitly.
26
+
27
+ ### Breaking Changes
28
+
29
+ * `preview`: Options `--scan-id` and `--scan-path` are deprecated; use the optional `scan [path]` argument instead.
30
+ * `faspex`: **Plugin removed** - Faspex v4 is end of support since September 30th, 2024. Use `ascli` version 4.19.0 or earlier if still needed.
31
+
32
+ ## 4.27.0
33
+
34
+ Released: 2026-09-03
35
+
36
+ > [!IMPORTANT]
37
+ > This release includes a **major internal rework** of the command dispatch layer.
38
+ > Plugin commands are now declared via a Ruby DSL (`command`, `commands_under`, `option`, `root_setup` on `Plugins::Base`), backed by `CommandRegistry` / `CommandSpec`, replacing the previous per-plugin `case`/`when` dispatch.
39
+ > Help output is now generated directly, removing the dependency on `OptParse` and enabling proper multi-level help.
40
+ > This change has been thoroughly tested, but if you encounter any unexpected behavior, please [open an issue](https://github.com/IBM/aspera-cli/issues) and consider reverting to the previous release.
41
+
42
+ ### New Features
43
+
44
+ * `config`: `ascp install` / `transferd install`: Default version is now the SDK version tested with this release (`1.1.9`) instead of latest. Pass `LATEST` to install the latest available version.
45
+ * `config`: New command commands `agents` with `list`, `show <name>` and `parameters <name>` to discover available transfer agents, their short identifier and their configurable parameters.
46
+ * `mcp`: New plugin - starts a [Model Context Protocol](https://modelcontextprotocol.io/) server exposing `execute_ascli_command`. Supports `stdio` (default) and `http` (Streamable HTTP) transports.
47
+ * **global**: Documentation for growing files using the `file` PVCL adapter (`file:///path?grow=<seconds>`).
48
+ * **global**: New composite option `log` with sub-properties `level`, `type`, `format`.
49
+ * **global**: Option `transfer` is now composite (`Hash`). `transfer` also accepts a `String` (`agent` shorthand) for backward compatibility.
50
+ * `direct`: New `transfer` parameter `file_list` (default: `true`). Setting to `false` will pass source paths directly on the `ascp` command line instead of a temp file list.
51
+ * **global**: New pseudo transfer-spec parameter `target_rate` (bps). It translates to `target_rate_kbps` with optional unit suffix (`k`/`K`, `m`/`M`, `g`/`G`). Example: `--ts.target_rate=100m`.
52
+ * `config`: Bash completion (`config completion bash`) is now multi-level: pressing `Tab` after a plugin name or sub-command completes the next level of sub-commands (previously only first-level plugin names were completed).
53
+ * **global**: Use `--query=help` on any `list` command to display the available filter parameters and their types, as documented in the embedded OpenAPI spec. Supported for `faspex5 admin` resources and `aoc admin` resources.
54
+
55
+ ### Breaking Changes
56
+
57
+ * **global**: Option `--transfer-info` is deprecated in favor of `--transfer`.
58
+ * **global**: Options `--log-level`, `--logger`, `--log-format` are deprecated in favor of option `--log`. Individual options preserved for backward compatibility.
59
+
3
60
  ## 4.26.2
4
61
 
5
62
  Released: 2026-07-17
@@ -949,19 +1006,34 @@ Released: 2021-02-03
949
1006
 
950
1007
  ## 0.11.8
951
1008
 
1009
+ Released: 2020-11-30
1010
+
1011
+ ### New Features
1012
+
952
1013
  * Simplified to use `unoconv` instead of bare `libreoffice` for office conversion, as `unoconv` does not require an X server (previously using `Xvfb`).
953
1014
 
954
1015
  ## 0.11.7
955
1016
 
956
- * Rework on rest call error handling.
1017
+ Released: 2020-11-27
1018
+
1019
+ ### New Features
1020
+
957
1021
  * Use option `display` with value `data` to remove out of extraneous information.
958
- * Fixed option `lock_port` not working.
959
1022
  * Generate special icon if preview failed.
960
1023
  * Possibility to choose transfer progress bar type with option `progress`.
961
1024
  * AoC package creation now output package ID.
962
1025
 
1026
+ ### Issues Fixed
1027
+
1028
+ * Rework on rest call error handling.
1029
+ * Fixed option `lock_port` not working.
1030
+
963
1031
  ## 0.11.6
964
1032
 
1033
+ Released: 2020-11-19
1034
+
1035
+ ### New Features
1036
+
965
1037
  * `orchestrator`: Added more choice in auth type.
966
1038
  * `preview`: Cleanup in generator (removed and renamed parameters).
967
1039
  * `preview`: Better documentation.
@@ -972,164 +1044,311 @@ Released: 2021-02-03
972
1044
 
973
1045
  ## 0.11.5
974
1046
 
1047
+ Released: 2020-11-16
1048
+
1049
+ ### New Features
1050
+
975
1051
  * Added option `default_ports` for AoC (see manual).
976
1052
  * Allow bulk delete in `aspera files` with option `bulk=yes`.
977
- * Fix getting connect versions.
978
1053
  * Added section for AIX.
979
1054
  * Support all ciphers for [`direct`](README.md#agt_direct) agent (including GCM, etc.).
980
1055
  * Added transfer spec parameter `apply_local_docroot` for [`direct`](README.md#agt_direct).
981
1056
 
1057
+ ### Issues Fixed
1058
+
1059
+ * Fix getting connect versions.
1060
+
982
1061
  ## 0.11.4
983
1062
 
1063
+ Released: 2020-10-16
1064
+
1065
+ ### New Features
1066
+
984
1067
  * Possibility to give shared inbox name when sending a package (else use ID and type).
985
1068
 
986
1069
  ## 0.11.3
987
1070
 
1071
+ Released: 2020-10-12
1072
+
1073
+ ### Issues Fixed
1074
+
988
1075
  * Minor fixes on multi-session: Avoid exception on progress bar.
989
1076
 
990
1077
  ## 0.11.2
991
1078
 
1079
+ Released: 2020-10-09
1080
+
1081
+ ### Issues Fixed
1082
+
992
1083
  * Fixes on multi-session: Progress bar and transfer spec parameter for `direct`.
993
1084
 
994
1085
  ## 0.11.1
995
1086
 
1087
+ Released: 2020-10-01
1088
+
1089
+ ### New Features
1090
+
996
1091
  * Enhanced short_link creation commands (see examples).
997
1092
 
998
1093
  ## 0.11
999
1094
 
1095
+ Released: 2020-09-23
1096
+
1097
+ ### New Features
1098
+
1000
1099
  * Add transfer spec option (agent `direct` only) to provide file list directly to `ascp`: `EX_file_list`.
1001
1100
 
1002
1101
  ## 0.10.18
1003
1102
 
1004
- * New option in. `server` : `ssh_options`.
1103
+ Released: 2020-09-15
1104
+
1105
+ ### New Features
1106
+
1107
+ * New option in `server`: `ssh_options`.
1005
1108
 
1006
1109
  ## 0.10.17
1007
1110
 
1008
- * Fixed problem on `server` for option `ssh_keys`, now accepts both single value and list.
1111
+ Released: 2020-09-01
1112
+
1113
+ ### New Features
1114
+
1009
1115
  * New modifier: `@list:<separator>val1<separator>...`.
1010
1116
 
1117
+ ### Issues Fixed
1118
+
1119
+ * Fixed problem on `server` for option `ssh_keys`, now accepts both single value and list.
1120
+
1011
1121
  ## 0.10.16
1012
1122
 
1123
+ Released: 2020-08-21
1124
+
1125
+ ### New Features
1126
+
1013
1127
  * Added list of shared inboxes in workspace (or global), use `--query=@json:'{}'`.
1014
1128
 
1015
1129
  ## 0.10.15
1016
1130
 
1017
- * In case of command line error, display the error cause first, and non-parsed argument second.
1131
+ Released: 2020-07-23
1132
+
1133
+ ### New Features
1134
+
1018
1135
  * `aoc`: Activity / Analytics.
1019
1136
 
1137
+ ### Issues Fixed
1138
+
1139
+ * In case of command line error, display the error cause first, and non-parsed argument second.
1140
+
1020
1141
  ## 0.10.14
1021
1142
 
1143
+ Released: 2020-06-17
1144
+
1145
+ ### New Features
1146
+
1022
1147
  * Added missing `bss` plugin.
1023
1148
 
1024
1149
  ## 0.10.13
1025
1150
 
1151
+ Released: 2020-06-12
1152
+
1153
+ ### New Features
1154
+
1026
1155
  * Added Faspex5 (use option `value` to give API arguments).
1027
1156
 
1028
1157
  ## 0.10.12
1029
1158
 
1159
+ Released: 2020-05-15
1160
+
1161
+ ### New Features
1162
+
1030
1163
  * Added support for AoC node registration keys.
1031
- * Replaced option : `local_resume` with `transfer_info` for agent [`direct`](README.md#agt_direct).
1032
1164
  * Transfer agent is no more a Singleton instance, but only one is used in CLI.
1033
- * `@incps` : New extended value modifier.
1034
- * ATS: No more provides access keys secrets: now user must provide it.
1165
+ * `@incps`: New extended value modifier.
1035
1166
  * Begin work on `aoc` transfer agent.
1036
1167
 
1168
+ ### Breaking Changes
1169
+
1170
+ * Replaced option `local_resume` with `transfer_info` for agent [`direct`](README.md#agt_direct).
1171
+ * `ats`: No more provides access keys secrets: now user must provide it.
1172
+
1037
1173
  ## 0.10.11
1038
1174
 
1175
+ Released: 2020-04-29
1176
+
1177
+ ### Issues Fixed
1178
+
1039
1179
  * Minor refactor and fixes.
1040
1180
 
1041
1181
  ## 0.10.10
1042
1182
 
1183
+ Released: 2020-04-10
1184
+
1185
+ ### Issues Fixed
1186
+
1043
1187
  * Fix on documentation.
1044
1188
 
1045
1189
  ## 0.10.9.1
1046
1190
 
1191
+ Released: 2020-03-31
1192
+
1193
+ ### New Features
1194
+
1047
1195
  * Add total number of items for AoC resource list.
1196
+
1197
+ ### Issues Fixed
1198
+
1048
1199
  * Better gem version dependency (and fixes to support Ruby 2.0.0).
1200
+
1201
+ ### Breaking Changes
1202
+
1049
1203
  * Removed `aoc search_nodes`.
1050
1204
 
1051
1205
  ## 0.10.8
1052
1206
 
1053
- * Removed option: `fasp_proxy`, use pseudo transfer spec parameter: `EX_fasp_proxy_url`.
1054
- * Removed option: `http_proxy`, use pseudo transfer spec parameter: `EX_http_proxy_url`.
1055
- * Several other changes.
1207
+ Released: 2020-02-13
1208
+
1209
+ ### Breaking Changes
1210
+
1211
+ * Removed option `fasp_proxy`, use pseudo transfer spec parameter: `EX_fasp_proxy_url`.
1212
+ * Removed option `http_proxy`, use pseudo transfer spec parameter: `EX_http_proxy_url`.
1056
1213
 
1057
1214
  ## 0.10.7
1058
1215
 
1216
+ Released: 2020-01-03
1217
+
1218
+ ### Issues Fixed
1219
+
1059
1220
  * Fix: `ascli` fails when username cannot be computed on Linux.
1060
1221
 
1061
1222
  ## 0.10.6
1062
1223
 
1224
+ Released: 2019-12-11
1225
+
1226
+ ### New Features
1227
+
1063
1228
  * FaspManager: Transfer spec `authentication` is no longer 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.
1064
1229
  * Gem version requirements made more open.
1065
1230
 
1066
1231
  ## 0.10.5
1067
1232
 
1233
+ Released: 2019-12-11
1234
+
1235
+ ### Issues Fixed
1236
+
1068
1237
  * Fix Faspex package receive command not working.
1069
1238
 
1070
1239
  ## 0.10.4
1071
1240
 
1072
- * New options for AoC : `secrets`.
1241
+ Released: 2019-12-04
1242
+
1243
+ ### New Features
1244
+
1245
+ * New options for AoC: `secrets`.
1073
1246
  * `ACLI-533` temp file list folder to use file lists is set by default, and used by `asession`.
1074
1247
 
1075
1248
  ## 0.10.3
1076
1249
 
1250
+ Released: 2019-12-02
1251
+
1252
+ ### New Features
1253
+
1077
1254
  * Included username in OAuth bearer token cache for AoC when JWT is used.
1078
1255
 
1079
1256
  ## 0.10.2
1080
1257
 
1258
+ Released: 2019-11-25
1259
+
1260
+ ### New Features
1261
+
1081
1262
  * Updated `search_nodes` to be more generic, so it can search not only on access key, but also other queries.
1082
1263
  * Added doc for "cargo" like actions.
1083
1264
  * Added doc for multi-session.
1084
1265
 
1085
1266
  ## 0.10.1
1086
1267
 
1268
+ Released: 2019-11-11
1269
+
1270
+ ### New Features
1271
+
1087
1272
  * AoC and node v4 "browse" works now on non-folder items: file, link.
1088
1273
  * Initial support for AoC automation (do not use yet).
1089
1274
 
1090
1275
  ## 0.10
1091
1276
 
1277
+ Released: 2019-10-19
1278
+
1279
+ ### New Features
1280
+
1092
1281
  * Support for transfer using IBM Cloud Object Storage.
1093
1282
  * Improved `find` action using arbitrary expressions.
1094
1283
 
1095
1284
  ## 0.9.36
1096
1285
 
1286
+ Released: 2019-10-16
1287
+
1288
+ ### New Features
1289
+
1097
1290
  * Added option to specify file pair lists.
1098
1291
 
1099
1292
  ## 0.9.35
1100
1293
 
1294
+ Released: 2019-10-11
1295
+
1296
+ ### New Features
1297
+
1101
1298
  * `preview`: Changed parameter names, added documentation.
1299
+
1300
+ ### Issues Fixed
1301
+
1102
1302
  * `ats`: Fix: instance ID needed in request header.
1103
1303
 
1104
1304
  ## 0.9.34
1105
1305
 
1306
+ Released: 2019-10-03
1307
+
1308
+ ### Issues Fixed
1309
+
1106
1310
  * Parser `@preset` can be used again in option `transfer_info`.
1107
1311
  * Some documentation re-organizing.
1108
1312
 
1109
1313
  ## 0.9.33
1110
1314
 
1315
+ Released: 2019-08-28
1316
+
1317
+ ### New Features
1318
+
1111
1319
  * New command to display basic token of node.
1112
1320
  * New command to display bearer token of node in AoC.
1113
1321
  * The `--fields=` option, support `+_field_name_` to add a field to default fields.
1114
- * Many small changes.
1115
1322
 
1116
1323
  ## 0.9.32
1117
1324
 
1325
+ Released: 2019-06-13
1326
+
1118
1327
  ### New Features
1119
1328
 
1120
1329
  * All Faspex public links are now supported.
1330
+
1331
+ ### Breaking Changes
1332
+
1121
1333
  * Removed Faspex operation `recv_publink`. Replaced with option `link` (consistent with AoC).
1122
1334
 
1123
1335
  ## 0.9.31
1124
1336
 
1337
+ Released: 2019-06-12
1338
+
1125
1339
  ### New Features
1126
1340
 
1127
1341
  * Added more support for public link: receive and send package, to user or dropbox and files view.
1128
- * Delete expired file lists.
1129
1342
  * Changed text table gem from text-table to terminal-table because it supports multiline values.
1130
1343
 
1344
+ ### Issues Fixed
1345
+
1346
+ * Delete expired file lists.
1347
+
1131
1348
  ## 0.9.27
1132
1349
 
1350
+ Released: 2019-03-27
1351
+
1133
1352
  ### New Features
1134
1353
 
1135
1354
  * Basic email support with SMTP.
@@ -1137,6 +1356,8 @@ Released: 2021-02-03
1137
1356
 
1138
1357
  ## 0.9.26
1139
1358
 
1359
+ Released: 2019-03-13
1360
+
1140
1361
  ### New Features
1141
1362
 
1142
1363
  * Table display with `--fields=ALL` now includes all column names from all lines, not only first one.
@@ -1144,21 +1365,30 @@ Released: 2021-02-03
1144
1365
 
1145
1366
  ## 0.9.25
1146
1367
 
1368
+ Released: 2019-03-11
1369
+
1147
1370
  ### New Features
1148
1371
 
1149
- * The option `value` of command `find` to filter on name is mandatory.
1150
1372
  * `find` now also reports all types (file, folder, link).
1151
1373
  * `find` now is able to report all fields (type, size, etc...).
1152
1374
 
1375
+ ### Breaking Changes
1376
+
1377
+ * The option `value` of command `find` to filter on name is mandatory.
1378
+
1153
1379
  ## 0.9.24
1154
1380
 
1155
- ### New Features
1381
+ Released: 2019-03-05
1382
+
1383
+ ### Issues Fixed
1156
1384
 
1157
1385
  * Fix bug where AoC node to node transfer did not work.
1158
1386
  * Fix bug on error if ED25519 private key is defined in .ssh.
1159
1387
 
1160
1388
  ## 0.9.23
1161
1389
 
1390
+ Released: 2019-03-04
1391
+
1162
1392
  ### New Features
1163
1393
 
1164
1394
  * Defined REST error handlers, more error conditions detected.
@@ -1166,6 +1396,8 @@ Released: 2021-02-03
1166
1396
 
1167
1397
  ## 0.9.21
1168
1398
 
1399
+ Released: 2019-02-09
1400
+
1169
1401
  ### New Features
1170
1402
 
1171
1403
  * Supports simplified wizard using global client.
@@ -1173,26 +1405,33 @@ Released: 2021-02-03
1173
1405
 
1174
1406
  ## 0.9.20
1175
1407
 
1408
+ Released: 2019-01-22
1409
+
1176
1410
  ### New Features
1177
1411
 
1178
1412
  * Improved wizard (prepare for AoC global client ID).
1179
- * Preview generator: Added option : `skip_format` with values `png`, `mp4`.
1180
- * Removed outdated pictures from this doc.
1413
+ * Preview generator: Added option: `skip_format` with values `png`, `mp4`.
1181
1414
 
1182
1415
  ## 0.9.19
1183
1416
 
1417
+ Released: 2019-01-15
1418
+
1184
1419
  ### New Features
1185
1420
 
1186
1421
  * Added command `aspera bearer --scope=xx`.
1187
1422
 
1188
1423
  ## 0.9.18
1189
1424
 
1425
+ Released: 2019-01-12
1426
+
1190
1427
  ### New Features
1191
1428
 
1192
1429
  * Enhanced Aspera admin events to support query.
1193
1430
 
1194
1431
  ## 0.9.16
1195
1432
 
1433
+ Released: 2019-01-11
1434
+
1196
1435
  ### New Features
1197
1436
 
1198
1437
  * AoC transfers are now reported in activity app.
@@ -1200,6 +1439,8 @@ Released: 2021-02-03
1200
1439
 
1201
1440
  ## 0.9.15
1202
1441
 
1442
+ Released: 2018-12-20
1443
+
1203
1444
  ### New Features
1204
1445
 
1205
1446
  * New feature: `find` command in Aspera Files.
@@ -1207,21 +1448,36 @@ Released: 2021-02-03
1207
1448
 
1208
1449
  ## 0.9.12
1209
1450
 
1451
+ Released: 2018-12-13
1452
+
1210
1453
  ### New Features
1211
1454
 
1212
1455
  * Add `nagios` commands.
1213
- * Support of ATS for IBM Cloud, removed old version based on Aspera ID.
1456
+ * Support of ATS for IBM Cloud.
1457
+
1458
+ ### Breaking Changes
1459
+
1460
+ * Removed old ATS implementation based on Aspera ID.
1214
1461
 
1215
1462
  ## 0.9.11
1216
1463
 
1217
- * Support of ATS for IBM Cloud, removed old version based on Aspera ID.
1464
+ Released: 2018-11-29
1465
+
1466
+ ### New Features
1467
+
1468
+ * Support of ATS for IBM Cloud.
1218
1469
 
1219
1470
  ### Breaking Changes
1220
1471
 
1472
+ * Removed old ATS implementation based on Aspera ID.
1221
1473
  * **global**: `@stdin` is now `@stdin:`.
1222
1474
 
1223
1475
  ## 0.9.10
1224
1476
 
1477
+ Released: 2018-11-20
1478
+
1479
+ ### New Features
1480
+
1225
1481
  * Display SaaS storage usage with command: `aspera admin res node --id=nn info`.
1226
1482
  * Cleaner way of specifying source file list for transfers.
1227
1483
 
@@ -1232,6 +1488,8 @@ Released: 2021-02-03
1232
1488
 
1233
1489
  ## 0.9.9
1234
1490
 
1491
+ Released: 2018-11-14
1492
+
1235
1493
  ### New Features
1236
1494
 
1237
1495
  * Now supports "cargo" for Aspera on Cloud (automatic package download).
@@ -1242,6 +1500,8 @@ Released: 2021-02-03
1242
1500
 
1243
1501
  ## 0.9.8
1244
1502
 
1503
+ Released: 2018-11-13
1504
+
1245
1505
  ### New Features
1246
1506
 
1247
1507
  * `faspex`: Use option `once_only` set to `yes` to enable cargo like function. `id=NEW` deprecated.
@@ -1249,6 +1509,8 @@ Released: 2021-02-03
1249
1509
 
1250
1510
  ## 0.9.7
1251
1511
 
1512
+ Released: 2018-11-08
1513
+
1252
1514
  ### New Features
1253
1515
 
1254
1516
  * Homogeneous transfer spec for `node` and [`direct`](README.md#agt_direct) transfer agents.
@@ -1259,6 +1521,8 @@ Released: 2021-02-03
1259
1521
 
1260
1522
  ## 0.9.6
1261
1523
 
1524
+ Released: 2018-10-30
1525
+
1262
1526
  ### New Features
1263
1527
 
1264
1528
  * AoC: Added command to display current workspace information.
@@ -1269,13 +1533,20 @@ Released: 2021-02-03
1269
1533
 
1270
1534
  ## 0.9.5
1271
1535
 
1536
+ Released: 2018-10-22
1537
+
1272
1538
  ### New Features
1273
1539
 
1274
1540
  * New parameter: `new_user_option` used to choose between public_link and invite of external users.
1541
+
1542
+ ### Issues Fixed
1543
+
1275
1544
  * Fixed bug in wizard, and wizard uses now product detection.
1276
1545
 
1277
1546
  ## 0.9.4
1278
1547
 
1548
+ Released: 2018-10-19
1549
+
1279
1550
  ### New Features
1280
1551
 
1281
1552
  * AoC Package send supports external users.
@@ -1287,6 +1558,8 @@ Released: 2021-02-03
1287
1558
 
1288
1559
  ## 0.9.3
1289
1560
 
1561
+ Released: 2018-10-18
1562
+
1290
1563
  ### New Features
1291
1564
 
1292
1565
  * REST error message show host and code.
@@ -1301,18 +1574,24 @@ Released: 2021-02-03
1301
1574
 
1302
1575
  ## 0.9.2
1303
1576
 
1577
+ Released: 2018-10-11
1578
+
1304
1579
  ### Breaking Changes
1305
1580
 
1306
1581
  * `aoc`: Changed AoC package creation to match API, see AoC section.
1307
1582
 
1308
1583
  ## 0.9.1
1309
1584
 
1585
+ Released: 2018-10-08
1586
+
1310
1587
  ### Breaking Changes
1311
1588
 
1312
1589
  * `faspex`: Changed Faspex package creation to match API, see Faspex section.
1313
1590
 
1314
1591
  ## 0.9
1315
1592
 
1593
+ Released: 2018-10-04
1594
+
1316
1595
  ### New Features
1317
1596
 
1318
1597
  * Automatic rename and conversion of former config folder from `aslmcli` to `ascli`.
@@ -1323,12 +1602,16 @@ Released: 2021-02-03
1323
1602
 
1324
1603
  ## 0.7.6
1325
1604
 
1605
+ Released: 2018-08-30
1606
+
1326
1607
  ### New Features
1327
1608
 
1328
1609
  * Add `sync` plugin.
1329
1610
 
1330
1611
  ## 0.7
1331
1612
 
1613
+ Released: 2018-05-31
1614
+
1332
1615
  ### New Features
1333
1616
 
1334
1617
  * AoC: Receive package from public link.
@@ -1342,6 +1625,8 @@ Released: 2021-02-03
1342
1625
 
1343
1626
  ## 0.6.19
1344
1627
 
1628
+ Released: 2018-04-27
1629
+
1345
1630
  ### Breaking Changes
1346
1631
 
1347
1632
  * `ats`: `ats server list provisioned` &rarr; `ats cluster list`.
@@ -1355,12 +1640,16 @@ Released: 2021-02-03
1355
1640
 
1356
1641
  ## 0.6.18
1357
1642
 
1643
+ Released: 2018-04-19
1644
+
1358
1645
  ### New Features
1359
1646
 
1360
1647
  * Some commands take now `--id` option instead of `id` command.
1361
1648
 
1362
1649
  ## 0.6.15
1363
1650
 
1651
+ Released: 2018-04-16
1652
+
1364
1653
  ### Breaking Changes
1365
1654
 
1366
1655
  * `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`.