cnvrg 2.0.18 → 2.0.20
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
- data/Readme.md +7 -1
- data/lib/cnvrg/cli.rb +5 -1
- data/lib/cnvrg/files.rb +1 -1
- data/lib/cnvrg/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7d5e7aa6c49c6bbe9ce99dcc85f90825d67ef8a4d066c84dd5978da99afb116b
|
|
4
|
+
data.tar.gz: 81e5d10c09beddd7da049ac29d2bd71fc611f3c2ca5bd4b2e2431457573b683d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c338755e158c6e1c03dc84c16f3015c1801875d98e58ad788da47b5cf2374b06fa62445279ddd9585b9e2dd3a62bee381af968f1e5925c2b74a9eedf0652b17b
|
|
7
|
+
data.tar.gz: 674fe36d75e00c70919067c2539a85c3c56c6850852faf00781f8419a3a3a1dabb3d925be56316a9d20903a869300b761a893f01a0cea94eef6703f99c34d5a8
|
data/Readme.md
CHANGED
|
@@ -74,4 +74,10 @@
|
|
|
74
74
|
* DEV-10581 - Bug: CLI - getting 404 response in "cnvrg set_default_owner"
|
|
75
75
|
## Version v2.0.18
|
|
76
76
|
2022-01-31
|
|
77
|
-
* DEV-12637 - Bug: Dataset - creating file from CLI/SDK in a folder with + sign, replaces + with space AND creates 2 folders
|
|
77
|
+
* DEV-12637 - Bug: Dataset - creating file from CLI/SDK in a folder with + sign, replaces + with space AND creates 2 folders
|
|
78
|
+
## Version v2.0.19
|
|
79
|
+
2022-02-22
|
|
80
|
+
* DEV-13271 - Bug: CLI - on upload folders in working dir containing .cnvrg, dir not uploading - dir is on .cnvrgignore
|
|
81
|
+
## Version v2.0.20
|
|
82
|
+
2022-02-27
|
|
83
|
+
* DEV-12288 - Bug: wrong error message when upload fails
|
data/lib/cnvrg/cli.rb
CHANGED
|
@@ -2377,7 +2377,11 @@ module Cnvrg
|
|
|
2377
2377
|
if ignore.nil? or ignore.empty?
|
|
2378
2378
|
ignore = ignore_list
|
|
2379
2379
|
end
|
|
2380
|
-
|
|
2380
|
+
|
|
2381
|
+
if job_type != "Experiment"
|
|
2382
|
+
data_ignore = data_dir_include()
|
|
2383
|
+
end
|
|
2384
|
+
|
|
2381
2385
|
if !data_ignore.nil?
|
|
2382
2386
|
if ignore.nil? or ignore.empty?
|
|
2383
2387
|
ignore = data_ignore
|
data/lib/cnvrg/files.rb
CHANGED
|
@@ -106,7 +106,7 @@ module Cnvrg
|
|
|
106
106
|
commit: commit_sha1
|
|
107
107
|
})
|
|
108
108
|
unless Cnvrg::CLI.is_response_success(resp, false)
|
|
109
|
-
raise StandardError.new("
|
|
109
|
+
raise StandardError.new("Cant upload files to the server")
|
|
110
110
|
end
|
|
111
111
|
# resolve bucket
|
|
112
112
|
res = resp['result']
|
data/lib/cnvrg/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cnvrg
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.0.
|
|
4
|
+
version: 2.0.20
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Yochay Ettun
|
|
@@ -10,7 +10,7 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date: 2022-
|
|
13
|
+
date: 2022-03-02 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: bundler
|