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