aspera-cli 4.25.6 → 4.26.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 +74 -47
- data/CONTRIBUTING.md +1 -1
- data/lib/aspera/api/aoc.rb +118 -78
- data/lib/aspera/api/node.rb +101 -49
- data/lib/aspera/ascp/installation.rb +94 -30
- data/lib/aspera/cli/extended_value.rb +1 -0
- data/lib/aspera/cli/formatter.rb +47 -40
- data/lib/aspera/cli/manager.rb +30 -4
- data/lib/aspera/cli/plugins/aoc.rb +214 -136
- data/lib/aspera/cli/plugins/ats.rb +3 -3
- data/lib/aspera/cli/plugins/base.rb +17 -42
- data/lib/aspera/cli/plugins/config.rb +5 -3
- data/lib/aspera/cli/plugins/console.rb +3 -3
- data/lib/aspera/cli/plugins/faspex.rb +5 -5
- data/lib/aspera/cli/plugins/faspex5.rb +20 -18
- data/lib/aspera/cli/plugins/node.rb +66 -70
- data/lib/aspera/cli/plugins/oauth.rb +5 -12
- data/lib/aspera/cli/plugins/orchestrator.rb +13 -13
- data/lib/aspera/cli/plugins/preview.rb +116 -80
- data/lib/aspera/cli/plugins/server.rb +2 -10
- data/lib/aspera/cli/plugins/shares.rb +7 -7
- data/lib/aspera/cli/version.rb +1 -1
- data/lib/aspera/dot_container.rb +7 -3
- data/lib/aspera/environment.rb +3 -2
- data/lib/aspera/log.rb +1 -1
- data/lib/aspera/preview/file_types.rb +1 -1
- data/lib/aspera/preview/generator.rb +146 -91
- data/lib/aspera/preview/options.rb +4 -1
- data/lib/aspera/preview/terminal.rb +50 -20
- data/lib/aspera/preview/utils.rb +76 -34
- data/lib/aspera/products/transferd.rb +1 -1
- data/lib/aspera/rest.rb +1 -0
- data/lib/aspera/rest_list.rb +23 -16
- data/lib/aspera/secret_hider.rb +3 -1
- data/lib/aspera/uri_reader.rb +17 -2
- data.tar.gz.sig +0 -0
- metadata +5 -5
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5dcaa66a7401bb325ae68b4f51ef44e7820332159203a7a5247fc3c2d447d9e5
|
|
4
|
+
data.tar.gz: cf0a6734797c0803d77daa01b547daccf4dc4af0c17ff7872d186ad3fbffe62f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e3c8fb9d31eca016b0c88ef324aa307e73535b34672cd2f42d54c4695b7d12fa8d18e98cdbff7115a65856d161ba5869fb3e3e83eef97293411189d7c8f5a454
|
|
7
|
+
data.tar.gz: bfee651a574ceaa6c6e10ea54b51d50e3d58cf33e0e89b909ad71bff7969dcb01c45707b3ae2cc4bccd553bb69c42ab0f288a043943df01fd9ca9379d6650872
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,33 @@
|
|
|
2
2
|
|
|
3
3
|
<!-- markdownlint-configure-file { "no-duplicate-heading": { "siblings_only": true } } -->
|
|
4
4
|
|
|
5
|
+
## 4.26.0
|
|
6
|
+
|
|
7
|
+
Released: 2026-05-28
|
|
8
|
+
|
|
9
|
+
### New Features
|
|
10
|
+
|
|
11
|
+
* `preview`: New option `root_url` (replaces `file_access`), to override how to access files on storage.
|
|
12
|
+
* `node`: (also `aoc files`) Operation `modify` added to `permissions`.
|
|
13
|
+
* `node`: (also `aoc files`) Operation `list` now uses paging.
|
|
14
|
+
* `aoc`: When creating a shared inbox, the value of option `workspace` is now used as default value to set field `workspace_id`.
|
|
15
|
+
* `aoc`: Support additional operations on `admin application`, like activate/deactivate app in workspace.
|
|
16
|
+
* `aoc`: Support additional operations on `admin user` and `user`: `preferences` and `notifications`.
|
|
17
|
+
* `aoc`: Support selection of workspace using percent selectors: `%name:` and `%id:`.
|
|
18
|
+
* **global**: Added download URLs for `transferd` 1.1.8.
|
|
19
|
+
* **global**: New Extended Value modifier: `s` converts to `String`.
|
|
20
|
+
* **global**: Parameter `str_lst_sep` or option `table_style` allows setting separator for list of strings.
|
|
21
|
+
|
|
22
|
+
### Issues Fixed
|
|
23
|
+
|
|
24
|
+
* `format`: In `table` format with option `flat_hash=yes`, fixed that some parameters were not shown. Moreover, (Node API: /info), if an array of hash with name/value keys is returned with one extra key, still apply simplification.
|
|
25
|
+
* **global**: Fixed #254.
|
|
26
|
+
|
|
27
|
+
### Breaking Changes
|
|
28
|
+
|
|
29
|
+
* `preview`: Removed option `file_access`, replaced with option `root_url`.
|
|
30
|
+
* `aoc`: Command `resource` in `admin`is now removed. It was deprecated since 4.18. Use the same command without `resource`. Place the resource name directly after `admin`.
|
|
31
|
+
|
|
5
32
|
## 4.25.6
|
|
6
33
|
|
|
7
34
|
Released: 2026-04-08
|
|
@@ -309,7 +336,7 @@ Released: 2025-01-21
|
|
|
309
336
|
### New Features
|
|
310
337
|
|
|
311
338
|
* `aoc`: Improved usability for creation of Admin shared folders.
|
|
312
|
-
* `node`: New option `node_cache` (
|
|
339
|
+
* `node`: New option `node_cache` (boolean) for gen4 operations.
|
|
313
340
|
* `node`: Option `root_id` now always works for node gen4, as well as `%id:` for file selection in addition to path.
|
|
314
341
|
* `node`: `transfer list` now uses the `iteration_token` to retrieve all values. Option `once_only` is now supported.
|
|
315
342
|
* **global**: Option `http_options` now include retry options.
|
|
@@ -413,7 +440,7 @@ Released: 2024-07-13
|
|
|
413
440
|
|
|
414
441
|
### Breaking Changes
|
|
415
442
|
|
|
416
|
-
* `config`: Command `remote_certificate` now takes a
|
|
443
|
+
* `config`: Command `remote_certificate` now takes a sub-command.
|
|
417
444
|
* **global**: Moved a few internal classes in new/renamed modules.
|
|
418
445
|
* **global**: Deprecated pseudo transfer specification parameters starting with `EX_`:
|
|
419
446
|
* `EX_ssh_key_paths`: Use spec `ssh_private_key` or option `transfer_info={"ascp_args":["-i","..."]}`
|
|
@@ -498,7 +525,7 @@ General: Removed many redundant options, more consistency between plugins, see b
|
|
|
498
525
|
* **global**: Renamed option `notif_to` to `notify_to` and `notif_template` to `notify_template`.
|
|
499
526
|
* **global**: Removed extended value handler `incps`, as it is never used (use `extend` instead).
|
|
500
527
|
* **global**: Option `fields`: `+prop` is replaced with: `DEF,prop` and `-field` is replaced with: `DEF,-field`, and whole list is evaluated.
|
|
501
|
-
* **global**: Replaced option `progress` with option `progressbar` (
|
|
528
|
+
* **global**: Replaced option `progress` with option `progressbar` (boolean).
|
|
502
529
|
* **global**: Removed option `rest_debug` and `-r`, replaced with `--log-level=trace2`.
|
|
503
530
|
* **global**: The default file name for private key when using wizard is change from `aspera_aoc_key` to `my_private_key.pem`.
|
|
504
531
|
* `faspex5`: Removed option and `auth` type `link`: simply provide the public link as `url`.
|
|
@@ -626,8 +653,8 @@ Released: 2023-01-26
|
|
|
626
653
|
* **container**: Image has entry point.
|
|
627
654
|
* `aoc`: `admin res node` commands `v3` and `v4` replaced with `do` and command `v3` moved inside `do`.
|
|
628
655
|
* Renamed options for `sync`.
|
|
629
|
-
* Node gen4 operations are moved from aoc plugin to node plugin but made available where gen4 is used.
|
|
630
|
-
* If
|
|
656
|
+
* Node gen4 operations are moved from `aoc` plugin to node plugin but made available where gen4 is used.
|
|
657
|
+
* If WSS is enabled on server, use WSS.
|
|
631
658
|
* Lots of cleanup and refactoring.
|
|
632
659
|
|
|
633
660
|
## 4.10.0
|
|
@@ -677,9 +704,9 @@ Released: 2022-06-16
|
|
|
677
704
|
### New Features
|
|
678
705
|
|
|
679
706
|
* #76 add resource `group_membership` in `aoc`.
|
|
680
|
-
*
|
|
681
|
-
*
|
|
682
|
-
*
|
|
707
|
+
* New resource `metadata_profile` in `faspex5`.
|
|
708
|
+
* New command `user profile` in `faspex5`.
|
|
709
|
+
* Config wizard for `faspex5`.
|
|
683
710
|
* #75 gem is signed.
|
|
684
711
|
|
|
685
712
|
### Breaking Changes
|
|
@@ -703,7 +730,7 @@ Released: 2022-03-23
|
|
|
703
730
|
* Option `show_secrets` to reveal secrets in command output.
|
|
704
731
|
* Added and updated commands for Faspex 5.
|
|
705
732
|
* Option `cache_tokens`.
|
|
706
|
-
* Faspex4 dropbox packages can now be received by
|
|
733
|
+
* Faspex4 dropbox packages can now be received by ID.
|
|
707
734
|
|
|
708
735
|
### Issues Fixed
|
|
709
736
|
|
|
@@ -713,7 +740,7 @@ Released: 2022-03-23
|
|
|
713
740
|
|
|
714
741
|
* Command `conf gem path` replaces `conf gem_path`.
|
|
715
742
|
* Option `fpac` expects a value instead of URL.
|
|
716
|
-
* Option `cipher` in transfer spec must
|
|
743
|
+
* Option `cipher` in transfer spec must be hyphened.
|
|
717
744
|
* Renamed option `log_passwords` to `log_secrets`.
|
|
718
745
|
* Removed plugin `shares2` as products is now EOL.
|
|
719
746
|
|
|
@@ -730,7 +757,7 @@ Released: 2022-02-04
|
|
|
730
757
|
|
|
731
758
|
### Issues Fixed
|
|
732
759
|
|
|
733
|
-
* #60 ascli executable was not installed by default in 4.5.0.
|
|
760
|
+
* #60 `ascli` executable was not installed by default in 4.5.0.
|
|
734
761
|
* Add password hiding case in logs.
|
|
735
762
|
|
|
736
763
|
### Breaking Changes
|
|
@@ -749,9 +776,9 @@ Released: 2021-12-27
|
|
|
749
776
|
### New Features
|
|
750
777
|
|
|
751
778
|
* Support transfer agent: [Transfer SDK](README.md#agt_trsdk).
|
|
752
|
-
* Support [
|
|
779
|
+
* Support [HTTP socket options](README.md#http_options).
|
|
753
780
|
* Logs hide passwords and secrets, option `log_passwords` to enable logging secrets.
|
|
754
|
-
* `config vault` supports encrypted passwords, also
|
|
781
|
+
* `config vault` supports encrypted passwords, also macOS keychain.
|
|
755
782
|
* `config preset` command for consistency with macOS.
|
|
756
783
|
* Identifier can be provided using either option `id` or directly after the command, e.g. `delete 123` is the same as `delete --id=123`.
|
|
757
784
|
|
|
@@ -777,7 +804,7 @@ Released: 2021-11-13
|
|
|
777
804
|
* `aoc admin res xxx list` now get all items by default #50.
|
|
778
805
|
* `preset` option can specify name or hash value.
|
|
779
806
|
* `node` plugin accepts bearer token and access key as credential.
|
|
780
|
-
* `node` option `token_type` allows using basic token in addition to
|
|
807
|
+
* `node` option `token_type` allows using basic token in addition to Aspera type.
|
|
781
808
|
|
|
782
809
|
### Breaking Changes
|
|
783
810
|
|
|
@@ -800,14 +827,14 @@ Released: 2021-09-23
|
|
|
800
827
|
### New Features
|
|
801
828
|
|
|
802
829
|
* `faspex package list` retrieves the whole list, not just first page.
|
|
803
|
-
* Support web based auth to aoc and
|
|
830
|
+
* Support web based auth to `aoc` and `faspex5` using HTTPS, new dependency on gem `webrick`.
|
|
804
831
|
* The error "Remote host is not who we expected" displays a special remediation message.
|
|
805
832
|
* `conf ascp spec` displays supported transfer spec.
|
|
806
833
|
* Options `notif_to` and `notif_template` to send email notifications on transfer (and other events).
|
|
807
834
|
|
|
808
835
|
### Issues Fixed
|
|
809
836
|
|
|
810
|
-
* Space character in `faspe:`
|
|
837
|
+
* Space character in `faspe:` URL are percent encoded if needed.
|
|
811
838
|
* `preview scan`: If file_id is unknown, ignore and continue scan.
|
|
812
839
|
|
|
813
840
|
### Breaking Changes
|
|
@@ -839,7 +866,7 @@ Released: 2021-08-24
|
|
|
839
866
|
|
|
840
867
|
* On Windows `conf ascp use` expects ascp.exe.
|
|
841
868
|
* (break) multi_session_threshold is Integer, not String.
|
|
842
|
-
* `conf ascp install` renames sdk folder if it already exists (leftover shared lib may make fail).
|
|
869
|
+
* `conf ascp install` renames `sdk` folder if it already exists (leftover shared lib may make fail).
|
|
843
870
|
* Removed `replace_illegal_chars` from default `aspera.conf` causing "Error creating illegal char conversion table".
|
|
844
871
|
|
|
845
872
|
### Breaking Changes
|
|
@@ -859,8 +886,8 @@ Released: 2021-06-23
|
|
|
859
886
|
* Added option `sdk_url` to install SDK from local file for offline install.
|
|
860
887
|
* Check new gem version periodically.
|
|
861
888
|
* The --fields= option, support -_field_name_ to remove a field from default fields.
|
|
862
|
-
*
|
|
863
|
-
* `mimemagic` is now optional, needs manual
|
|
889
|
+
* OAuth's tokens are discarded automatically after 30 minutes (useful for COS delegated refresh tokens).
|
|
890
|
+
* `mimemagic` is now optional, needs manual installation for `preview`, compatible with version 0.4.x.
|
|
864
891
|
* AoC a password can be provided for a public link.
|
|
865
892
|
* `conf doc` take an optional parameter to go to a section.
|
|
866
893
|
* Initial support for Faspex 5 Beta 1.
|
|
@@ -882,7 +909,7 @@ Released: 2021-02-03
|
|
|
882
909
|
### Breaking Changes
|
|
883
910
|
|
|
884
911
|
* Changed default tool name from `mlia` to `ascli`.
|
|
885
|
-
*
|
|
912
|
+
* Renamed `aspera` command to `aoc`.
|
|
886
913
|
* Changed gem name from `asperalm` to `aspera-cli`.
|
|
887
914
|
* Changed module name from `Asperalm` to `Aspera`.
|
|
888
915
|
* Removed command `folder` in `preview`, merged to `scan`.
|
|
@@ -890,7 +917,7 @@ Released: 2021-02-03
|
|
|
890
917
|
|
|
891
918
|
## 0.11.8
|
|
892
919
|
|
|
893
|
-
* Simplified to use `unoconv` instead of bare `libreoffice` for office conversion, as `unoconv` does not require
|
|
920
|
+
* Simplified to use `unoconv` instead of bare `libreoffice` for office conversion, as `unoconv` does not require an X server (previously using `Xvfb`).
|
|
894
921
|
|
|
895
922
|
## 0.11.7
|
|
896
923
|
|
|
@@ -899,7 +926,7 @@ Released: 2021-02-03
|
|
|
899
926
|
* Fixed option `lock_port` not working.
|
|
900
927
|
* Generate special icon if preview failed.
|
|
901
928
|
* Possibility to choose transfer progress bar type with option `progress`.
|
|
902
|
-
* AoC package creation now output package
|
|
929
|
+
* AoC package creation now output package ID.
|
|
903
930
|
|
|
904
931
|
## 0.11.6
|
|
905
932
|
|
|
@@ -916,13 +943,13 @@ Released: 2021-02-03
|
|
|
916
943
|
* Added option `default_ports` for AoC (see manual).
|
|
917
944
|
* Allow bulk delete in `aspera files` with option `bulk=yes`.
|
|
918
945
|
* Fix getting connect versions.
|
|
919
|
-
* Added section for
|
|
920
|
-
* Support all ciphers for [`direct`](README.md#agt_direct) agent (including
|
|
921
|
-
* Added transfer spec
|
|
946
|
+
* Added section for AIX.
|
|
947
|
+
* Support all ciphers for [`direct`](README.md#agt_direct) agent (including GCM, etc.).
|
|
948
|
+
* Added transfer spec parameter `apply_local_docroot` for [`direct`](README.md#agt_direct).
|
|
922
949
|
|
|
923
950
|
## 0.11.4
|
|
924
951
|
|
|
925
|
-
* Possibility to give shared inbox name when sending a package (else use
|
|
952
|
+
* Possibility to give shared inbox name when sending a package (else use ID and type).
|
|
926
953
|
|
|
927
954
|
## 0.11.3
|
|
928
955
|
|
|
@@ -930,7 +957,7 @@ Released: 2021-02-03
|
|
|
930
957
|
|
|
931
958
|
## 0.11.2
|
|
932
959
|
|
|
933
|
-
* Fixes on multi-session: Progress bar and transfer spec
|
|
960
|
+
* Fixes on multi-session: Progress bar and transfer spec parameter for `direct`.
|
|
934
961
|
|
|
935
962
|
## 0.11.1
|
|
936
963
|
|
|
@@ -938,7 +965,7 @@ Released: 2021-02-03
|
|
|
938
965
|
|
|
939
966
|
## 0.11
|
|
940
967
|
|
|
941
|
-
* Add transfer spec option (agent `direct` only) to provide file list directly to ascp
|
|
968
|
+
* Add transfer spec option (agent `direct` only) to provide file list directly to `ascp`: `EX_file_list`.
|
|
942
969
|
|
|
943
970
|
## 0.10.18
|
|
944
971
|
|
|
@@ -960,7 +987,7 @@ Released: 2021-02-03
|
|
|
960
987
|
|
|
961
988
|
## 0.10.14
|
|
962
989
|
|
|
963
|
-
* Added missing bss plugin.
|
|
990
|
+
* Added missing `bss` plugin.
|
|
964
991
|
|
|
965
992
|
## 0.10.13
|
|
966
993
|
|
|
@@ -1006,7 +1033,7 @@ Released: 2021-02-03
|
|
|
1006
1033
|
|
|
1007
1034
|
## 0.10.5
|
|
1008
1035
|
|
|
1009
|
-
* Fix
|
|
1036
|
+
* Fix Faspex package receive command not working.
|
|
1010
1037
|
|
|
1011
1038
|
## 0.10.4
|
|
1012
1039
|
|
|
@@ -1015,7 +1042,7 @@ Released: 2021-02-03
|
|
|
1015
1042
|
|
|
1016
1043
|
## 0.10.3
|
|
1017
1044
|
|
|
1018
|
-
* Included
|
|
1045
|
+
* Included username in OAuth bearer token cache for AoC when JWT is used.
|
|
1019
1046
|
|
|
1020
1047
|
## 0.10.2
|
|
1021
1048
|
|
|
@@ -1044,7 +1071,7 @@ Released: 2021-02-03
|
|
|
1044
1071
|
|
|
1045
1072
|
## 0.9.34
|
|
1046
1073
|
|
|
1047
|
-
* Parser
|
|
1074
|
+
* Parser `@preset` can be used again in option `transfer_info`.
|
|
1048
1075
|
* Some documentation re-organizing.
|
|
1049
1076
|
|
|
1050
1077
|
## 0.9.33
|
|
@@ -1059,7 +1086,7 @@ Released: 2021-02-03
|
|
|
1059
1086
|
### New Features
|
|
1060
1087
|
|
|
1061
1088
|
* All Faspex public links are now supported.
|
|
1062
|
-
* Removed
|
|
1089
|
+
* Removed Faspex operation `recv_publink`. Replaced with option `link` (consistent with AoC).
|
|
1063
1090
|
|
|
1064
1091
|
## 0.9.31
|
|
1065
1092
|
|
|
@@ -1103,7 +1130,7 @@ Released: 2021-02-03
|
|
|
1103
1130
|
### New Features
|
|
1104
1131
|
|
|
1105
1132
|
* Defined REST error handlers, more error conditions detected.
|
|
1106
|
-
* Commands to select specific ascp location.
|
|
1133
|
+
* Commands to select specific `ascp` location.
|
|
1107
1134
|
|
|
1108
1135
|
## 0.9.21
|
|
1109
1136
|
|
|
@@ -1116,7 +1143,7 @@ Released: 2021-02-03
|
|
|
1116
1143
|
|
|
1117
1144
|
### New Features
|
|
1118
1145
|
|
|
1119
|
-
* Improved wizard (prepare for AoC global client
|
|
1146
|
+
* Improved wizard (prepare for AoC global client ID).
|
|
1120
1147
|
* Preview generator: Added option : `skip_format` with values `png`, `mp4`.
|
|
1121
1148
|
* Removed outdated pictures from this doc.
|
|
1122
1149
|
|
|
@@ -1130,7 +1157,7 @@ Released: 2021-02-03
|
|
|
1130
1157
|
|
|
1131
1158
|
### New Features
|
|
1132
1159
|
|
|
1133
|
-
* Enhanced
|
|
1160
|
+
* Enhanced Aspera admin events to support query.
|
|
1134
1161
|
|
|
1135
1162
|
## 0.9.16
|
|
1136
1163
|
|
|
@@ -1143,19 +1170,19 @@ Released: 2021-02-03
|
|
|
1143
1170
|
|
|
1144
1171
|
### New Features
|
|
1145
1172
|
|
|
1146
|
-
* New feature:
|
|
1173
|
+
* New feature: `find` command in Aspera Files.
|
|
1147
1174
|
* Sample code for transfer API.
|
|
1148
1175
|
|
|
1149
1176
|
## 0.9.12
|
|
1150
1177
|
|
|
1151
1178
|
### New Features
|
|
1152
1179
|
|
|
1153
|
-
* Add nagios commands.
|
|
1154
|
-
* Support of ATS for IBM Cloud, removed old version based on
|
|
1180
|
+
* Add `nagios` commands.
|
|
1181
|
+
* Support of ATS for IBM Cloud, removed old version based on Aspera ID.
|
|
1155
1182
|
|
|
1156
1183
|
## 0.9.11
|
|
1157
1184
|
|
|
1158
|
-
* Support of ATS for IBM Cloud, removed old version based on
|
|
1185
|
+
* Support of ATS for IBM Cloud, removed old version based on Aspera ID.
|
|
1159
1186
|
|
|
1160
1187
|
### Breaking Changes
|
|
1161
1188
|
|
|
@@ -1169,7 +1196,7 @@ Released: 2021-02-03
|
|
|
1169
1196
|
### Breaking Changes
|
|
1170
1197
|
|
|
1171
1198
|
* **global**: Parameter transfer-node becomes more generic: `transfer-info`.
|
|
1172
|
-
* **global**: Replaced download_mode option with http_download action.
|
|
1199
|
+
* **global**: Replaced `download_mode` option with `http_download` action.
|
|
1173
1200
|
|
|
1174
1201
|
## 0.9.9
|
|
1175
1202
|
|
|
@@ -1179,7 +1206,7 @@ Released: 2021-02-03
|
|
|
1179
1206
|
|
|
1180
1207
|
### Breaking Changes
|
|
1181
1208
|
|
|
1182
|
-
* **global**:
|
|
1209
|
+
* **global**: `aspera package send` parameter deprecated, use the --value option instead with "recipients" value. See example.
|
|
1183
1210
|
|
|
1184
1211
|
## 0.9.8
|
|
1185
1212
|
|
|
@@ -1224,7 +1251,7 @@ Released: 2021-02-03
|
|
|
1224
1251
|
|
|
1225
1252
|
### Breaking Changes
|
|
1226
1253
|
|
|
1227
|
-
* `oncloud`: `oncloud file list` follow `--source` convention as well (plus specific case for download when first path is source folder, and
|
|
1254
|
+
* `oncloud`: `oncloud file list` follow `--source` convention as well (plus specific case for download when first path is source folder, and others are source file names).
|
|
1228
1255
|
|
|
1229
1256
|
## 0.9.3
|
|
1230
1257
|
|
|
@@ -1250,17 +1277,17 @@ Released: 2021-02-03
|
|
|
1250
1277
|
|
|
1251
1278
|
### Breaking Changes
|
|
1252
1279
|
|
|
1253
|
-
* `faspex`: Changed
|
|
1280
|
+
* `faspex`: Changed Faspex package creation to match API, see Faspex section.
|
|
1254
1281
|
|
|
1255
1282
|
## 0.9
|
|
1256
1283
|
|
|
1257
1284
|
### New Features
|
|
1258
1285
|
|
|
1259
|
-
* Automatic rename and conversion of former config folder from aslmcli to ascli
|
|
1286
|
+
* Automatic rename and conversion of former config folder from `aslmcli` to `ascli`.
|
|
1260
1287
|
|
|
1261
1288
|
### Breaking Changes
|
|
1262
1289
|
|
|
1263
|
-
* Renamed the CLI from aslmcli to ascli
|
|
1290
|
+
* Renamed the CLI from `aslmcli` to `ascli`.
|
|
1264
1291
|
|
|
1265
1292
|
## 0.7.6
|
|
1266
1293
|
|
|
@@ -1279,7 +1306,7 @@ Released: 2021-02-03
|
|
|
1279
1306
|
### Breaking Changes
|
|
1280
1307
|
|
|
1281
1308
|
* `aoc`: AoC `package recv` take option if for package instead of argument.
|
|
1282
|
-
* **global**: Rest class and
|
|
1309
|
+
* **global**: Rest class and OAuth class changed initialization parameters.
|
|
1283
1310
|
|
|
1284
1311
|
## 0.6.19
|
|
1285
1312
|
|
data/CONTRIBUTING.md
CHANGED
|
@@ -114,7 +114,7 @@ The following environment variables and macros control specific build behaviors:
|
|
|
114
114
|
| `ENABLE_COVERAGE` | set/unset | Enables test coverage analysis when defined. |
|
|
115
115
|
| `SIGNING_KEY` | File path | Path to the signing key used for building the gem file. |
|
|
116
116
|
| `SIGNING_KEY_PEM` | PEM Value | The PEM content of the signing key. |
|
|
117
|
-
| `DRY_RUN` | `1` | Simulates execution without performing actual operations (git
|
|
117
|
+
| `DRY_RUN` | `1` | Simulates execution without performing actual operations (`git`, `gh`). |
|
|
118
118
|
| `DEBUG` | `1` | Shows stack trace on errors during documentation generation. |
|
|
119
119
|
|
|
120
120
|
These values can be set as standard environment variables or passed directly to the `rake` command.
|