aspera-cli 4.25.0 → 4.25.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.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data/CHANGELOG.md +11 -2
- data/README.md +8 -8
- data/lib/aspera/cli/version.rb +1 -1
- data/release_notes.md +8 -0
- data.tar.gz.sig +0 -0
- metadata +2 -1
- 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: 7147e3eb2457fe7b9703cf0e5cc4168403bfd8580cee8cc42f51d8bf93ebd665
|
|
4
|
+
data.tar.gz: 711445c7d6d81f9fdc16436a86d6db3c6e3310c043b1d80ba2d4f553fe68f587
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bb91b5e5434e210809dfedc4c78bc3e6fad47a31de64ba7b26f719db4226ecc7f8abad74342bf7f971c3576b4e34ceda8196747dfb30ed37cfcf8111dedbf9e9
|
|
7
|
+
data.tar.gz: 8bee7a43906676d2a05c229e18b4c8cba30bd1f95d3c655aaa9304d8067076556bff3b5e9eb06627da0bd0c45cfd8fcb81baa9c7d2e3ae0a46ca50935f0dfb5f
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
data/CHANGELOG.md
CHANGED
|
@@ -2,9 +2,18 @@
|
|
|
2
2
|
|
|
3
3
|
<!-- markdownlint-configure-file { "no-duplicate-heading": { "siblings_only": true } } -->
|
|
4
4
|
|
|
5
|
-
## 4.25.
|
|
5
|
+
## 4.25.1
|
|
6
6
|
|
|
7
|
-
Released:
|
|
7
|
+
Released: 2026-01-21
|
|
8
|
+
|
|
9
|
+
### Issues Fixed
|
|
10
|
+
|
|
11
|
+
* `build`: Fixed deploy workflow to use global rake instead of bundle exec.
|
|
12
|
+
* `build`: Made rspec require conditional in test.rake for deploy environment.
|
|
13
|
+
|
|
14
|
+
## 4.25.0
|
|
15
|
+
|
|
16
|
+
Released: 2026-01-21
|
|
8
17
|
|
|
9
18
|
### New Features
|
|
10
19
|
|
data/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
<!--
|
|
3
3
|
DO NOT EDIT: THIS FILE IS GENERATED, edit docs/README.erb.md, for details, read docs/README.md
|
|
4
4
|
PANDOC_META_BEGIN
|
|
5
|
-
subtitle: "ascli 4.25.
|
|
5
|
+
subtitle: "ascli 4.25.1"
|
|
6
6
|
author: "Laurent MARTIN"
|
|
7
7
|
PANDOC_META_END
|
|
8
8
|
-->
|
|
@@ -42,7 +42,7 @@ Need to debug? I’ll show you what’s going on under the hood.
|
|
|
42
42
|
|
|
43
43
|
Think of me as Aspera’s command-line sidekick: quick, reliable, and a little no-nonsense. You bring the files; I’ll bring the horsepower."
|
|
44
44
|
|
|
45
|
-
Version : 4.25.
|
|
45
|
+
Version : 4.25.1
|
|
46
46
|
|
|
47
47
|
Laurent/2016-2026
|
|
48
48
|
|
|
@@ -139,7 +139,7 @@ ascli --version
|
|
|
139
139
|
```
|
|
140
140
|
|
|
141
141
|
```text
|
|
142
|
-
4.25.
|
|
142
|
+
4.25.1
|
|
143
143
|
```
|
|
144
144
|
|
|
145
145
|
> [!NOTE]
|
|
@@ -806,11 +806,11 @@ Necessary gems can be packed in a `tar.gz` like this:
|
|
|
806
806
|
|
|
807
807
|
```bash
|
|
808
808
|
mkdir temp_folder
|
|
809
|
-
gem install aspera-cli:4.25.
|
|
809
|
+
gem install aspera-cli:4.25.1 --no-document --install-dir temp_folder
|
|
810
810
|
find temp_folder
|
|
811
|
-
mv temp_folder/cache aspera-cli-4.25.
|
|
811
|
+
mv temp_folder/cache aspera-cli-4.25.1-gems
|
|
812
812
|
rm -fr temp_folder
|
|
813
|
-
tar zcvf aspera-cli-4.25.
|
|
813
|
+
tar zcvf aspera-cli-4.25.1-gems aspera-cli-4.25.1-gems.tgz
|
|
814
814
|
```
|
|
815
815
|
|
|
816
816
|
#### Unix-like
|
|
@@ -955,7 +955,7 @@ ascli -v
|
|
|
955
955
|
```
|
|
956
956
|
|
|
957
957
|
```text
|
|
958
|
-
4.25.
|
|
958
|
+
4.25.1
|
|
959
959
|
```
|
|
960
960
|
|
|
961
961
|
In order to keep persistency of configuration on the host, you should specify your user's configuration folder as a volume for the container.
|
|
@@ -4664,7 +4664,7 @@ ascli server upload "faux:///mydir?file=testfile&count=1000&size=1" --to-folder=
|
|
|
4664
4664
|
ascli -h
|
|
4665
4665
|
WARN No config file found. New configuration file: /home/runner/.aspera/ascli/config.yaml
|
|
4666
4666
|
NAME
|
|
4667
|
-
ascli -- a command line tool for Aspera Applications (v4.25.
|
|
4667
|
+
ascli -- a command line tool for Aspera Applications (v4.25.1)
|
|
4668
4668
|
|
|
4669
4669
|
SYNOPSIS
|
|
4670
4670
|
ascli COMMANDS [OPTIONS] [ARGS]
|
data/lib/aspera/cli/version.rb
CHANGED
data/release_notes.md
ADDED
data.tar.gz.sig
CHANGED
|
Binary file
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aspera-cli
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 4.25.
|
|
4
|
+
version: 4.25.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Laurent Martin
|
|
@@ -432,6 +432,7 @@ files:
|
|
|
432
432
|
- lib/aspera/web_server_simple.rb
|
|
433
433
|
- lib/transferd_pb.rb
|
|
434
434
|
- lib/transferd_services_pb.rb
|
|
435
|
+
- release_notes.md
|
|
435
436
|
homepage: https://github.com/IBM/aspera-cli
|
|
436
437
|
licenses:
|
|
437
438
|
- Apache-2.0
|
metadata.gz.sig
CHANGED
|
Binary file
|