aspera-cli 4.26.1 → 4.27.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 (145) hide show
  1. checksums.yaml +4 -4
  2. checksums.yaml.gz.sig +0 -0
  3. data/CHANGELOG.md +300 -22
  4. data/CONTRIBUTING.md +100 -12
  5. data/bin/ascli +5 -5
  6. data/docs/README.md +10757 -0
  7. data/docs/test-mcp-with-ai.md +202 -0
  8. data/lib/aspera/agent/base.rb +20 -6
  9. data/lib/aspera/agent/connect.rb +53 -16
  10. data/lib/aspera/agent/desktop.rb +52 -17
  11. data/lib/aspera/agent/direct.rb +27 -25
  12. data/lib/aspera/agent/factory.rb +4 -0
  13. data/lib/aspera/agent/httpgw.rb +2 -2
  14. data/lib/aspera/agent/node.rb +34 -2
  15. data/lib/aspera/agent/transferd.rb +39 -3
  16. data/lib/aspera/api/alee.rb +1 -1
  17. data/lib/aspera/api/aoc.rb +56 -51
  18. data/lib/aspera/api/cos_node.rb +2 -2
  19. data/lib/aspera/api/faspex.rb +22 -20
  20. data/lib/aspera/api/httpgw.rb +4 -4
  21. data/lib/aspera/api/node.rb +33 -30
  22. data/lib/aspera/api/queries/bss_subscription_account.graphql +18 -0
  23. data/lib/aspera/api/queries/bss_subscription_usage.graphql +18 -0
  24. data/lib/aspera/ascmd.rb +25 -23
  25. data/lib/aspera/ascp/installation.rb +43 -40
  26. data/lib/aspera/ascp/management.rb +2 -3
  27. data/lib/aspera/cli/ascp_actions.rb +155 -0
  28. data/lib/aspera/cli/async_transfer_store.rb +81 -0
  29. data/lib/aspera/cli/bootstrapper.rb +197 -0
  30. data/lib/aspera/cli/command_registry.rb +145 -0
  31. data/lib/aspera/cli/command_spec.rb +138 -0
  32. data/lib/aspera/cli/context.rb +71 -0
  33. data/lib/aspera/cli/error.rb +16 -0
  34. data/lib/aspera/cli/extended_value.rb +5 -3
  35. data/lib/aspera/cli/formatter.rb +122 -209
  36. data/lib/aspera/cli/gem_checker.rb +65 -0
  37. data/lib/aspera/cli/hints.rb +2 -2
  38. data/lib/aspera/cli/http.rb +218 -0
  39. data/lib/aspera/cli/info.rb +2 -0
  40. data/lib/aspera/cli/mailer.rb +97 -0
  41. data/lib/aspera/cli/mcp_tool.rb +198 -0
  42. data/lib/aspera/cli/options.schema.yaml +364 -7
  43. data/lib/aspera/cli/{manager.rb → parser.rb} +337 -144
  44. data/lib/aspera/cli/plugins/alee.rb +20 -22
  45. data/lib/aspera/cli/plugins/aoc.rb +1173 -849
  46. data/lib/aspera/cli/plugins/ats.rb +200 -161
  47. data/lib/aspera/cli/plugins/base.rb +470 -107
  48. data/lib/aspera/cli/plugins/basic_auth.rb +14 -4
  49. data/lib/aspera/cli/plugins/config.rb +434 -1032
  50. data/lib/aspera/cli/plugins/console.rb +106 -64
  51. data/lib/aspera/cli/plugins/cos.rb +44 -32
  52. data/lib/aspera/cli/plugins/factory.rb +7 -4
  53. data/lib/aspera/cli/plugins/faspex.rb +296 -259
  54. data/lib/aspera/cli/plugins/faspex5.rb +592 -344
  55. data/lib/aspera/cli/plugins/faspio.rb +49 -51
  56. data/lib/aspera/cli/plugins/httpgw.rb +18 -25
  57. data/lib/aspera/cli/plugins/mcp.rb +279 -0
  58. data/lib/aspera/cli/plugins/node.rb +1001 -797
  59. data/lib/aspera/cli/plugins/oauth.rb +7 -10
  60. data/lib/aspera/cli/plugins/orchestrator.rb +111 -139
  61. data/lib/aspera/cli/plugins/preview.rb +183 -142
  62. data/lib/aspera/cli/plugins/server.rb +125 -80
  63. data/lib/aspera/cli/plugins/shares.rb +301 -107
  64. data/lib/aspera/cli/preset_actions.rb +139 -0
  65. data/lib/aspera/cli/preset_manager.rb +236 -0
  66. data/lib/aspera/cli/result.rb +360 -0
  67. data/lib/aspera/cli/runner.rb +473 -0
  68. data/lib/aspera/cli/secret_finder.rb +40 -0
  69. data/lib/aspera/cli/special_values.rb +1 -0
  70. data/lib/aspera/cli/sync_actions.rb +84 -56
  71. data/lib/aspera/cli/terminal_formatter.rb +65 -0
  72. data/lib/aspera/cli/transfer_actions.rb +83 -0
  73. data/lib/aspera/cli/transfer_agent.rb +116 -51
  74. data/lib/aspera/cli/transfer_progress.rb +9 -9
  75. data/lib/aspera/cli/vault_manager.rb +57 -0
  76. data/lib/aspera/cli/version.rb +1 -1
  77. data/lib/aspera/cli/wizard.rb +26 -26
  78. data/lib/aspera/command_line_builder.rb +23 -23
  79. data/lib/aspera/data_repository.rb +6 -1
  80. data/lib/aspera/dot_container.rb +5 -5
  81. data/lib/aspera/environment.rb +39 -13
  82. data/lib/aspera/exec_spec.rb +13 -0
  83. data/lib/aspera/faspex_gw.rb +2 -2
  84. data/lib/aspera/faspex_postproc.rb +4 -3
  85. data/lib/aspera/graphql.rb +35 -0
  86. data/lib/aspera/hash_ext.rb +6 -0
  87. data/lib/aspera/json_rpc/client.rb +62 -0
  88. data/lib/aspera/json_rpc/version.rb +7 -0
  89. data/lib/aspera/keychain/base.rb +1 -1
  90. data/lib/aspera/keychain/encrypted_hash.rb +2 -2
  91. data/lib/aspera/keychain/factory.rb +4 -4
  92. data/lib/aspera/keychain/macos_security.rb +4 -4
  93. data/lib/aspera/link_header.rb +82 -0
  94. data/lib/aspera/log.rb +23 -5
  95. data/lib/aspera/markdown.rb +85 -2
  96. data/lib/aspera/nagios.rb +2 -2
  97. data/lib/aspera/node_simulator.rb +3 -1
  98. data/lib/aspera/oauth/base.rb +10 -10
  99. data/lib/aspera/oauth/boot.rb +43 -0
  100. data/lib/aspera/oauth/factory.rb +41 -15
  101. data/lib/aspera/oauth/jwt.rb +4 -4
  102. data/lib/aspera/oauth/web.rb +4 -4
  103. data/lib/aspera/oauth.rb +1 -0
  104. data/lib/aspera/persistency_action_once.rb +10 -10
  105. data/lib/aspera/persistency_folder.rb +10 -3
  106. data/lib/aspera/preview/file_types.rb +7 -3
  107. data/lib/aspera/preview/generator.rb +3 -3
  108. data/lib/aspera/preview/utils.rb +1 -1
  109. data/lib/aspera/products/connect.rb +4 -1
  110. data/lib/aspera/products/other.rb +1 -1
  111. data/lib/aspera/products/transferd.rb +3 -3
  112. data/lib/aspera/proxy_auto_config.rb +10 -9
  113. data/lib/aspera/rest.rb +18 -40
  114. data/lib/aspera/rest_error_analyzer.rb +7 -3
  115. data/lib/aspera/rest_errors_aspera.rb +0 -10
  116. data/lib/aspera/rest_list.rb +13 -6
  117. data/lib/aspera/schema/IBM Aspera Faspex API-5.0-enhanced.yaml +14 -4
  118. data/lib/aspera/schema/IBM Aspera on Cloud API-0.2.6-enhanced.yaml +2730 -648
  119. data/lib/aspera/schema/async_tables.yaml +361 -0
  120. data/lib/aspera/schema/documentation.rb +57 -26
  121. data/lib/aspera/schema/reader.rb +60 -11
  122. data/lib/aspera/schema/registry.rb +50 -10
  123. data/lib/aspera/secret_hider.rb +11 -2
  124. data/lib/aspera/ssl.rb +4 -4
  125. data/lib/aspera/sync/conf.schema.yaml +2 -2
  126. data/lib/aspera/sync/database.rb +14 -10
  127. data/lib/aspera/sync/operations.rb +15 -18
  128. data/lib/aspera/temp_file_manager.rb +5 -1
  129. data/lib/aspera/timer_limiter.rb +1 -1
  130. data/lib/aspera/transfer/faux_file.rb +24 -11
  131. data/lib/aspera/transfer/parameters.rb +27 -25
  132. data/lib/aspera/transfer/result.rb +74 -0
  133. data/lib/aspera/transfer/resumer.rb +7 -7
  134. data/lib/aspera/transfer/spec.rb +18 -1
  135. data/lib/aspera/transfer/spec.schema.yaml +26 -8
  136. data/lib/aspera/transfer/uri.rb +1 -1
  137. data/lib/aspera/uri_reader.rb +2 -2
  138. data/lib/aspera/web_auth.rb +2 -2
  139. data/lib/aspera/web_server_simple.rb +8 -5
  140. data/lib/aspera/yaml.rb +2 -1
  141. data.tar.gz.sig +0 -0
  142. metadata +45 -16
  143. metadata.gz.sig +0 -0
  144. data/lib/aspera/cli/main.rb +0 -480
  145. data/lib/aspera/json_rpc.rb +0 -51
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bffa626f5f4970bf91f90b15e594315d3c81a1ed92c8eff2f9533f7faef71aab
4
- data.tar.gz: 552c9b1d9225d3c1360f83d920bface08022314c7227bf36e7af439310e51c75
3
+ metadata.gz: 1a276abd040bdbbe20862d416747d5edadfbb6aa146c0e4cbde1593911b2dcf7
4
+ data.tar.gz: 88e8b1c3dedbc94b6b9d84926be491ef0e4d93a36b19aa339f481ed7ff244a44
5
5
  SHA512:
6
- metadata.gz: 2b655e7eaeee027e393fc7136c3f3b1a8d679a0825fb7d92baa6fa854d5cd68b11c01ecbeb9c32c457044f6eef3ae2bdbf22afa324b3d79643ec169aaad8f632
7
- data.tar.gz: eeb29fc5c14cbe809e31ee229b79cd650632987d93af8a892001e49aea06aa68ace8f7f660345dc27edf0a1ad6350a85e285ba449d8cc39774f9f4c1d4832a8a
6
+ metadata.gz: b3225ea03b8aeac02e25632b540058667e7695f52c348d6f118c9cd9c3cbb9d2b347835d00fa2278b6250a0ca91f7d7fedf1ff37268f402a895ab15d4ff70a3a
7
+ data.tar.gz: c39eca61481083a5e78f3ce423ecc18922bc960b5bda7a20ab255ab5b4fcc5464f3ce04bb1f3112ce53935f52ec45882697603a4d998e21376d7015937ebdb34
checksums.yaml.gz.sig CHANGED
Binary file
data/CHANGELOG.md CHANGED
@@ -1,6 +1,52 @@
1
1
  # Changes (Release notes)
2
2
 
3
- <!-- markdownlint-configure-file { "no-duplicate-heading": { "siblings_only": true } } -->
3
+ ## 4.27.0
4
+
5
+ Released: 2026-09-03
6
+
7
+ > [!IMPORTANT]
8
+ > This release includes a **major internal rework** of the command dispatch layer.
9
+ > 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.
10
+ > Help output is now generated directly, removing the dependency on `OptParse` and enabling proper multi-level help.
11
+ > 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.
12
+
13
+ ### New Features
14
+
15
+ * `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.
16
+ * `config`: New command commands `agents` with `list`, `show <name>` and `parameters <name>` to discover available transfer agents, their short identifier and their configurable parameters.
17
+ * `mcp`: New plugin - starts a [Model Context Protocol](https://modelcontextprotocol.io/) server exposing `execute_ascli_command`. Supports `stdio` (default) and `http` (Streamable HTTP) transports.
18
+ * **global**: Documentation for growing files using the `file` PVCL adapter (`file:///path?grow=<seconds>`).
19
+ * **global**: New composite option `log` with sub-properties `level`, `type`, `format`.
20
+ * **global**: Option `transfer` is now composite (`Hash`). `transfer` also accepts a `String` (`agent` shorthand) for backward compatibility.
21
+ * `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.
22
+ * **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`.
23
+ * `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).
24
+ * **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.
25
+
26
+ ### Breaking Changes
27
+
28
+ * **global**: Option `--transfer-info` is deprecated in favor of `--transfer`.
29
+ * **global**: Options `--log-level`, `--logger`, `--log-format` are deprecated in favor of option `--log`. Individual options preserved for backward compatibility.
30
+
31
+ ## 4.26.2
32
+
33
+ Released: 2026-07-17
34
+
35
+ ### New Features
36
+
37
+ * `faspex5`: New commands `admin file_processing` and `packages file_processing`.
38
+ * `aoc`: Command `user settings` now support `create`, `delete`, `list`, `show`, `modify`.
39
+ * `aoc`: New command `network_policy` and `configuration_policy` in `admin`.
40
+ * `sync` : New command `admin query` to execute an arbitrary SQL command on the snap DB.
41
+ * `sync` : Option `sql` to add arbitrary SQL suffixes to sync actions with snapshot DB.
42
+
43
+ ### Issues Fixed
44
+
45
+ * `aoc`: Fixed `admin application membership create`.
46
+
47
+ ### Breaking Changes
48
+
49
+ **global**: Replaced option `--bash-comp` with `config completion bash`.
4
50
 
5
51
  ## 4.26.1
6
52
 
@@ -931,19 +977,34 @@ Released: 2021-02-03
931
977
 
932
978
  ## 0.11.8
933
979
 
980
+ Released: 2020-11-30
981
+
982
+ ### New Features
983
+
934
984
  * Simplified to use `unoconv` instead of bare `libreoffice` for office conversion, as `unoconv` does not require an X server (previously using `Xvfb`).
935
985
 
936
986
  ## 0.11.7
937
987
 
938
- * Rework on rest call error handling.
988
+ Released: 2020-11-27
989
+
990
+ ### New Features
991
+
939
992
  * Use option `display` with value `data` to remove out of extraneous information.
940
- * Fixed option `lock_port` not working.
941
993
  * Generate special icon if preview failed.
942
994
  * Possibility to choose transfer progress bar type with option `progress`.
943
995
  * AoC package creation now output package ID.
944
996
 
997
+ ### Issues Fixed
998
+
999
+ * Rework on rest call error handling.
1000
+ * Fixed option `lock_port` not working.
1001
+
945
1002
  ## 0.11.6
946
1003
 
1004
+ Released: 2020-11-19
1005
+
1006
+ ### New Features
1007
+
947
1008
  * `orchestrator`: Added more choice in auth type.
948
1009
  * `preview`: Cleanup in generator (removed and renamed parameters).
949
1010
  * `preview`: Better documentation.
@@ -954,164 +1015,311 @@ Released: 2021-02-03
954
1015
 
955
1016
  ## 0.11.5
956
1017
 
1018
+ Released: 2020-11-16
1019
+
1020
+ ### New Features
1021
+
957
1022
  * Added option `default_ports` for AoC (see manual).
958
1023
  * Allow bulk delete in `aspera files` with option `bulk=yes`.
959
- * Fix getting connect versions.
960
1024
  * Added section for AIX.
961
1025
  * Support all ciphers for [`direct`](README.md#agt_direct) agent (including GCM, etc.).
962
1026
  * Added transfer spec parameter `apply_local_docroot` for [`direct`](README.md#agt_direct).
963
1027
 
1028
+ ### Issues Fixed
1029
+
1030
+ * Fix getting connect versions.
1031
+
964
1032
  ## 0.11.4
965
1033
 
1034
+ Released: 2020-10-16
1035
+
1036
+ ### New Features
1037
+
966
1038
  * Possibility to give shared inbox name when sending a package (else use ID and type).
967
1039
 
968
1040
  ## 0.11.3
969
1041
 
1042
+ Released: 2020-10-12
1043
+
1044
+ ### Issues Fixed
1045
+
970
1046
  * Minor fixes on multi-session: Avoid exception on progress bar.
971
1047
 
972
1048
  ## 0.11.2
973
1049
 
1050
+ Released: 2020-10-09
1051
+
1052
+ ### Issues Fixed
1053
+
974
1054
  * Fixes on multi-session: Progress bar and transfer spec parameter for `direct`.
975
1055
 
976
1056
  ## 0.11.1
977
1057
 
1058
+ Released: 2020-10-01
1059
+
1060
+ ### New Features
1061
+
978
1062
  * Enhanced short_link creation commands (see examples).
979
1063
 
980
1064
  ## 0.11
981
1065
 
1066
+ Released: 2020-09-23
1067
+
1068
+ ### New Features
1069
+
982
1070
  * Add transfer spec option (agent `direct` only) to provide file list directly to `ascp`: `EX_file_list`.
983
1071
 
984
1072
  ## 0.10.18
985
1073
 
986
- * New option in. `server` : `ssh_options`.
1074
+ Released: 2020-09-15
1075
+
1076
+ ### New Features
1077
+
1078
+ * New option in `server`: `ssh_options`.
987
1079
 
988
1080
  ## 0.10.17
989
1081
 
990
- * Fixed problem on `server` for option `ssh_keys`, now accepts both single value and list.
1082
+ Released: 2020-09-01
1083
+
1084
+ ### New Features
1085
+
991
1086
  * New modifier: `@list:<separator>val1<separator>...`.
992
1087
 
1088
+ ### Issues Fixed
1089
+
1090
+ * Fixed problem on `server` for option `ssh_keys`, now accepts both single value and list.
1091
+
993
1092
  ## 0.10.16
994
1093
 
1094
+ Released: 2020-08-21
1095
+
1096
+ ### New Features
1097
+
995
1098
  * Added list of shared inboxes in workspace (or global), use `--query=@json:'{}'`.
996
1099
 
997
1100
  ## 0.10.15
998
1101
 
999
- * In case of command line error, display the error cause first, and non-parsed argument second.
1102
+ Released: 2020-07-23
1103
+
1104
+ ### New Features
1105
+
1000
1106
  * `aoc`: Activity / Analytics.
1001
1107
 
1108
+ ### Issues Fixed
1109
+
1110
+ * In case of command line error, display the error cause first, and non-parsed argument second.
1111
+
1002
1112
  ## 0.10.14
1003
1113
 
1114
+ Released: 2020-06-17
1115
+
1116
+ ### New Features
1117
+
1004
1118
  * Added missing `bss` plugin.
1005
1119
 
1006
1120
  ## 0.10.13
1007
1121
 
1122
+ Released: 2020-06-12
1123
+
1124
+ ### New Features
1125
+
1008
1126
  * Added Faspex5 (use option `value` to give API arguments).
1009
1127
 
1010
1128
  ## 0.10.12
1011
1129
 
1130
+ Released: 2020-05-15
1131
+
1132
+ ### New Features
1133
+
1012
1134
  * Added support for AoC node registration keys.
1013
- * Replaced option : `local_resume` with `transfer_info` for agent [`direct`](README.md#agt_direct).
1014
1135
  * Transfer agent is no more a Singleton instance, but only one is used in CLI.
1015
- * `@incps` : New extended value modifier.
1016
- * ATS: No more provides access keys secrets: now user must provide it.
1136
+ * `@incps`: New extended value modifier.
1017
1137
  * Begin work on `aoc` transfer agent.
1018
1138
 
1139
+ ### Breaking Changes
1140
+
1141
+ * Replaced option `local_resume` with `transfer_info` for agent [`direct`](README.md#agt_direct).
1142
+ * `ats`: No more provides access keys secrets: now user must provide it.
1143
+
1019
1144
  ## 0.10.11
1020
1145
 
1146
+ Released: 2020-04-29
1147
+
1148
+ ### Issues Fixed
1149
+
1021
1150
  * Minor refactor and fixes.
1022
1151
 
1023
1152
  ## 0.10.10
1024
1153
 
1154
+ Released: 2020-04-10
1155
+
1156
+ ### Issues Fixed
1157
+
1025
1158
  * Fix on documentation.
1026
1159
 
1027
1160
  ## 0.10.9.1
1028
1161
 
1162
+ Released: 2020-03-31
1163
+
1164
+ ### New Features
1165
+
1029
1166
  * Add total number of items for AoC resource list.
1167
+
1168
+ ### Issues Fixed
1169
+
1030
1170
  * Better gem version dependency (and fixes to support Ruby 2.0.0).
1171
+
1172
+ ### Breaking Changes
1173
+
1031
1174
  * Removed `aoc search_nodes`.
1032
1175
 
1033
1176
  ## 0.10.8
1034
1177
 
1035
- * Removed option: `fasp_proxy`, use pseudo transfer spec parameter: `EX_fasp_proxy_url`.
1036
- * Removed option: `http_proxy`, use pseudo transfer spec parameter: `EX_http_proxy_url`.
1037
- * Several other changes.
1178
+ Released: 2020-02-13
1179
+
1180
+ ### Breaking Changes
1181
+
1182
+ * Removed option `fasp_proxy`, use pseudo transfer spec parameter: `EX_fasp_proxy_url`.
1183
+ * Removed option `http_proxy`, use pseudo transfer spec parameter: `EX_http_proxy_url`.
1038
1184
 
1039
1185
  ## 0.10.7
1040
1186
 
1187
+ Released: 2020-01-03
1188
+
1189
+ ### Issues Fixed
1190
+
1041
1191
  * Fix: `ascli` fails when username cannot be computed on Linux.
1042
1192
 
1043
1193
  ## 0.10.6
1044
1194
 
1195
+ Released: 2019-12-11
1196
+
1197
+ ### New Features
1198
+
1045
1199
  * 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.
1046
1200
  * Gem version requirements made more open.
1047
1201
 
1048
1202
  ## 0.10.5
1049
1203
 
1204
+ Released: 2019-12-11
1205
+
1206
+ ### Issues Fixed
1207
+
1050
1208
  * Fix Faspex package receive command not working.
1051
1209
 
1052
1210
  ## 0.10.4
1053
1211
 
1054
- * New options for AoC : `secrets`.
1212
+ Released: 2019-12-04
1213
+
1214
+ ### New Features
1215
+
1216
+ * New options for AoC: `secrets`.
1055
1217
  * `ACLI-533` temp file list folder to use file lists is set by default, and used by `asession`.
1056
1218
 
1057
1219
  ## 0.10.3
1058
1220
 
1221
+ Released: 2019-12-02
1222
+
1223
+ ### New Features
1224
+
1059
1225
  * Included username in OAuth bearer token cache for AoC when JWT is used.
1060
1226
 
1061
1227
  ## 0.10.2
1062
1228
 
1229
+ Released: 2019-11-25
1230
+
1231
+ ### New Features
1232
+
1063
1233
  * Updated `search_nodes` to be more generic, so it can search not only on access key, but also other queries.
1064
1234
  * Added doc for "cargo" like actions.
1065
1235
  * Added doc for multi-session.
1066
1236
 
1067
1237
  ## 0.10.1
1068
1238
 
1239
+ Released: 2019-11-11
1240
+
1241
+ ### New Features
1242
+
1069
1243
  * AoC and node v4 "browse" works now on non-folder items: file, link.
1070
1244
  * Initial support for AoC automation (do not use yet).
1071
1245
 
1072
1246
  ## 0.10
1073
1247
 
1248
+ Released: 2019-10-19
1249
+
1250
+ ### New Features
1251
+
1074
1252
  * Support for transfer using IBM Cloud Object Storage.
1075
1253
  * Improved `find` action using arbitrary expressions.
1076
1254
 
1077
1255
  ## 0.9.36
1078
1256
 
1257
+ Released: 2019-10-16
1258
+
1259
+ ### New Features
1260
+
1079
1261
  * Added option to specify file pair lists.
1080
1262
 
1081
1263
  ## 0.9.35
1082
1264
 
1265
+ Released: 2019-10-11
1266
+
1267
+ ### New Features
1268
+
1083
1269
  * `preview`: Changed parameter names, added documentation.
1270
+
1271
+ ### Issues Fixed
1272
+
1084
1273
  * `ats`: Fix: instance ID needed in request header.
1085
1274
 
1086
1275
  ## 0.9.34
1087
1276
 
1277
+ Released: 2019-10-03
1278
+
1279
+ ### Issues Fixed
1280
+
1088
1281
  * Parser `@preset` can be used again in option `transfer_info`.
1089
1282
  * Some documentation re-organizing.
1090
1283
 
1091
1284
  ## 0.9.33
1092
1285
 
1286
+ Released: 2019-08-28
1287
+
1288
+ ### New Features
1289
+
1093
1290
  * New command to display basic token of node.
1094
1291
  * New command to display bearer token of node in AoC.
1095
1292
  * The `--fields=` option, support `+_field_name_` to add a field to default fields.
1096
- * Many small changes.
1097
1293
 
1098
1294
  ## 0.9.32
1099
1295
 
1296
+ Released: 2019-06-13
1297
+
1100
1298
  ### New Features
1101
1299
 
1102
1300
  * All Faspex public links are now supported.
1301
+
1302
+ ### Breaking Changes
1303
+
1103
1304
  * Removed Faspex operation `recv_publink`. Replaced with option `link` (consistent with AoC).
1104
1305
 
1105
1306
  ## 0.9.31
1106
1307
 
1308
+ Released: 2019-06-12
1309
+
1107
1310
  ### New Features
1108
1311
 
1109
1312
  * Added more support for public link: receive and send package, to user or dropbox and files view.
1110
- * Delete expired file lists.
1111
1313
  * Changed text table gem from text-table to terminal-table because it supports multiline values.
1112
1314
 
1315
+ ### Issues Fixed
1316
+
1317
+ * Delete expired file lists.
1318
+
1113
1319
  ## 0.9.27
1114
1320
 
1321
+ Released: 2019-03-27
1322
+
1115
1323
  ### New Features
1116
1324
 
1117
1325
  * Basic email support with SMTP.
@@ -1119,6 +1327,8 @@ Released: 2021-02-03
1119
1327
 
1120
1328
  ## 0.9.26
1121
1329
 
1330
+ Released: 2019-03-13
1331
+
1122
1332
  ### New Features
1123
1333
 
1124
1334
  * Table display with `--fields=ALL` now includes all column names from all lines, not only first one.
@@ -1126,21 +1336,30 @@ Released: 2021-02-03
1126
1336
 
1127
1337
  ## 0.9.25
1128
1338
 
1339
+ Released: 2019-03-11
1340
+
1129
1341
  ### New Features
1130
1342
 
1131
- * The option `value` of command `find` to filter on name is mandatory.
1132
1343
  * `find` now also reports all types (file, folder, link).
1133
1344
  * `find` now is able to report all fields (type, size, etc...).
1134
1345
 
1346
+ ### Breaking Changes
1347
+
1348
+ * The option `value` of command `find` to filter on name is mandatory.
1349
+
1135
1350
  ## 0.9.24
1136
1351
 
1137
- ### New Features
1352
+ Released: 2019-03-05
1353
+
1354
+ ### Issues Fixed
1138
1355
 
1139
1356
  * Fix bug where AoC node to node transfer did not work.
1140
1357
  * Fix bug on error if ED25519 private key is defined in .ssh.
1141
1358
 
1142
1359
  ## 0.9.23
1143
1360
 
1361
+ Released: 2019-03-04
1362
+
1144
1363
  ### New Features
1145
1364
 
1146
1365
  * Defined REST error handlers, more error conditions detected.
@@ -1148,6 +1367,8 @@ Released: 2021-02-03
1148
1367
 
1149
1368
  ## 0.9.21
1150
1369
 
1370
+ Released: 2019-02-09
1371
+
1151
1372
  ### New Features
1152
1373
 
1153
1374
  * Supports simplified wizard using global client.
@@ -1155,26 +1376,33 @@ Released: 2021-02-03
1155
1376
 
1156
1377
  ## 0.9.20
1157
1378
 
1379
+ Released: 2019-01-22
1380
+
1158
1381
  ### New Features
1159
1382
 
1160
1383
  * Improved wizard (prepare for AoC global client ID).
1161
- * Preview generator: Added option : `skip_format` with values `png`, `mp4`.
1162
- * Removed outdated pictures from this doc.
1384
+ * Preview generator: Added option: `skip_format` with values `png`, `mp4`.
1163
1385
 
1164
1386
  ## 0.9.19
1165
1387
 
1388
+ Released: 2019-01-15
1389
+
1166
1390
  ### New Features
1167
1391
 
1168
1392
  * Added command `aspera bearer --scope=xx`.
1169
1393
 
1170
1394
  ## 0.9.18
1171
1395
 
1396
+ Released: 2019-01-12
1397
+
1172
1398
  ### New Features
1173
1399
 
1174
1400
  * Enhanced Aspera admin events to support query.
1175
1401
 
1176
1402
  ## 0.9.16
1177
1403
 
1404
+ Released: 2019-01-11
1405
+
1178
1406
  ### New Features
1179
1407
 
1180
1408
  * AoC transfers are now reported in activity app.
@@ -1182,6 +1410,8 @@ Released: 2021-02-03
1182
1410
 
1183
1411
  ## 0.9.15
1184
1412
 
1413
+ Released: 2018-12-20
1414
+
1185
1415
  ### New Features
1186
1416
 
1187
1417
  * New feature: `find` command in Aspera Files.
@@ -1189,21 +1419,36 @@ Released: 2021-02-03
1189
1419
 
1190
1420
  ## 0.9.12
1191
1421
 
1422
+ Released: 2018-12-13
1423
+
1192
1424
  ### New Features
1193
1425
 
1194
1426
  * Add `nagios` commands.
1195
- * Support of ATS for IBM Cloud, removed old version based on Aspera ID.
1427
+ * Support of ATS for IBM Cloud.
1428
+
1429
+ ### Breaking Changes
1430
+
1431
+ * Removed old ATS implementation based on Aspera ID.
1196
1432
 
1197
1433
  ## 0.9.11
1198
1434
 
1199
- * Support of ATS for IBM Cloud, removed old version based on Aspera ID.
1435
+ Released: 2018-11-29
1436
+
1437
+ ### New Features
1438
+
1439
+ * Support of ATS for IBM Cloud.
1200
1440
 
1201
1441
  ### Breaking Changes
1202
1442
 
1443
+ * Removed old ATS implementation based on Aspera ID.
1203
1444
  * **global**: `@stdin` is now `@stdin:`.
1204
1445
 
1205
1446
  ## 0.9.10
1206
1447
 
1448
+ Released: 2018-11-20
1449
+
1450
+ ### New Features
1451
+
1207
1452
  * Display SaaS storage usage with command: `aspera admin res node --id=nn info`.
1208
1453
  * Cleaner way of specifying source file list for transfers.
1209
1454
 
@@ -1214,6 +1459,8 @@ Released: 2021-02-03
1214
1459
 
1215
1460
  ## 0.9.9
1216
1461
 
1462
+ Released: 2018-11-14
1463
+
1217
1464
  ### New Features
1218
1465
 
1219
1466
  * Now supports "cargo" for Aspera on Cloud (automatic package download).
@@ -1224,6 +1471,8 @@ Released: 2021-02-03
1224
1471
 
1225
1472
  ## 0.9.8
1226
1473
 
1474
+ Released: 2018-11-13
1475
+
1227
1476
  ### New Features
1228
1477
 
1229
1478
  * `faspex`: Use option `once_only` set to `yes` to enable cargo like function. `id=NEW` deprecated.
@@ -1231,6 +1480,8 @@ Released: 2021-02-03
1231
1480
 
1232
1481
  ## 0.9.7
1233
1482
 
1483
+ Released: 2018-11-08
1484
+
1234
1485
  ### New Features
1235
1486
 
1236
1487
  * Homogeneous transfer spec for `node` and [`direct`](README.md#agt_direct) transfer agents.
@@ -1241,6 +1492,8 @@ Released: 2021-02-03
1241
1492
 
1242
1493
  ## 0.9.6
1243
1494
 
1495
+ Released: 2018-10-30
1496
+
1244
1497
  ### New Features
1245
1498
 
1246
1499
  * AoC: Added command to display current workspace information.
@@ -1251,13 +1504,20 @@ Released: 2021-02-03
1251
1504
 
1252
1505
  ## 0.9.5
1253
1506
 
1507
+ Released: 2018-10-22
1508
+
1254
1509
  ### New Features
1255
1510
 
1256
1511
  * New parameter: `new_user_option` used to choose between public_link and invite of external users.
1512
+
1513
+ ### Issues Fixed
1514
+
1257
1515
  * Fixed bug in wizard, and wizard uses now product detection.
1258
1516
 
1259
1517
  ## 0.9.4
1260
1518
 
1519
+ Released: 2018-10-19
1520
+
1261
1521
  ### New Features
1262
1522
 
1263
1523
  * AoC Package send supports external users.
@@ -1269,6 +1529,8 @@ Released: 2021-02-03
1269
1529
 
1270
1530
  ## 0.9.3
1271
1531
 
1532
+ Released: 2018-10-18
1533
+
1272
1534
  ### New Features
1273
1535
 
1274
1536
  * REST error message show host and code.
@@ -1283,18 +1545,24 @@ Released: 2021-02-03
1283
1545
 
1284
1546
  ## 0.9.2
1285
1547
 
1548
+ Released: 2018-10-11
1549
+
1286
1550
  ### Breaking Changes
1287
1551
 
1288
1552
  * `aoc`: Changed AoC package creation to match API, see AoC section.
1289
1553
 
1290
1554
  ## 0.9.1
1291
1555
 
1556
+ Released: 2018-10-08
1557
+
1292
1558
  ### Breaking Changes
1293
1559
 
1294
1560
  * `faspex`: Changed Faspex package creation to match API, see Faspex section.
1295
1561
 
1296
1562
  ## 0.9
1297
1563
 
1564
+ Released: 2018-10-04
1565
+
1298
1566
  ### New Features
1299
1567
 
1300
1568
  * Automatic rename and conversion of former config folder from `aslmcli` to `ascli`.
@@ -1305,12 +1573,16 @@ Released: 2021-02-03
1305
1573
 
1306
1574
  ## 0.7.6
1307
1575
 
1576
+ Released: 2018-08-30
1577
+
1308
1578
  ### New Features
1309
1579
 
1310
1580
  * Add `sync` plugin.
1311
1581
 
1312
1582
  ## 0.7
1313
1583
 
1584
+ Released: 2018-05-31
1585
+
1314
1586
  ### New Features
1315
1587
 
1316
1588
  * AoC: Receive package from public link.
@@ -1324,6 +1596,8 @@ Released: 2021-02-03
1324
1596
 
1325
1597
  ## 0.6.19
1326
1598
 
1599
+ Released: 2018-04-27
1600
+
1327
1601
  ### Breaking Changes
1328
1602
 
1329
1603
  * `ats`: `ats server list provisioned` &rarr; `ats cluster list`.
@@ -1337,12 +1611,16 @@ Released: 2021-02-03
1337
1611
 
1338
1612
  ## 0.6.18
1339
1613
 
1614
+ Released: 2018-04-19
1615
+
1340
1616
  ### New Features
1341
1617
 
1342
1618
  * Some commands take now `--id` option instead of `id` command.
1343
1619
 
1344
1620
  ## 0.6.15
1345
1621
 
1622
+ Released: 2018-04-16
1623
+
1346
1624
  ### Breaking Changes
1347
1625
 
1348
1626
  * `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`.