diff --git a/RELEASE.md b/RELEASE.md index acc4b293a..a2dc04d24 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -1,5 +1,9 @@ # Release Notes +## 1.50.1 (July 14, 2021) +- Bug fix - When using the --detailed-summary option, the returned upload path is incorrect for the "jfrog rt gp" and "jfrog rt mvn" commands +- Bug fix - When using the --detailed-summary option, there are additional log messages added to stdout, making it impossible to parse the summary + ## 1.50.0 (June 24, 2021) - New --retries option for the search, set-props, delete-props, delete, copy and move commands diff --git a/build/npm/package-lock.json b/build/npm/package-lock.json index 473fbfec5..a5134bc69 100644 --- a/build/npm/package-lock.json +++ b/build/npm/package-lock.json @@ -1,6 +1,6 @@ { "name": "jfrog-cli-go", - "version": "1.50.0", + "version": "1.50.1", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/build/npm/package.json b/build/npm/package.json index 8d28b1d1a..17db7da8f 100644 --- a/build/npm/package.json +++ b/build/npm/package.json @@ -1,6 +1,6 @@ { "name": "jfrog-cli-go", - "version": "1.50.0", + "version": "1.50.1", "description": "🐸 Command-line interface for JFrog Artifactory, Bintray, Mission Control and Xray 🐸", "homepage": "https://github.com/jfrog/jfrog-cli-go", "preferGlobal": true, diff --git a/go.mod b/go.mod index 0c2c6972d..78d292dd8 100644 --- a/go.mod +++ b/go.mod @@ -10,8 +10,8 @@ require ( github.com/gookit/color v1.4.2 github.com/jfrog/gocmd v0.3.1 github.com/jfrog/gofrog v1.0.6 - github.com/jfrog/jfrog-cli-core v1.8.0 - github.com/jfrog/jfrog-client-go v0.25.0 + github.com/jfrog/jfrog-cli-core v1.8.1 + github.com/jfrog/jfrog-client-go v0.25.1 github.com/jszwec/csvutil v1.4.0 github.com/mholt/archiver v2.1.0+incompatible github.com/pierrec/lz4 v2.6.0+incompatible // indirect @@ -23,9 +23,9 @@ require ( gopkg.in/yaml.v2 v2.4.0 ) -// replace github.com/jfrog/jfrog-client-go => github.com/jfrog/jfrog-client-go v0.24.1-0.20210623152109-410745e2ff11 +// replace github.com/jfrog/jfrog-client-go => github.com/jfrog/jfrog-client-go v1.0.1-0.20210713095602-e86100490f5d -// replace github.com/jfrog/jfrog-cli-core => github.com/jfrog/jfrog-cli-core v1.7.3-0.20210623154415-079076943909 +// replace github.com/jfrog/jfrog-cli-core => github.com/jfrog/jfrog-cli-core v1.8.1-0.20210713102714-f5eb4315aa8c // replace github.com/jfrog/gocmd => github.com/jfrog/gocmd v0.3.1-0.20210623152326-422f211f4e7f diff --git a/go.sum b/go.sum index 30b7c16ed..670b3026f 100644 --- a/go.sum +++ b/go.sum @@ -157,10 +157,12 @@ github.com/jfrog/gocmd v0.3.1 h1:EyOot6llZaHlV9S6We6P0OrYA2pKO8Xifm3yXuUxriM= github.com/jfrog/gocmd v0.3.1/go.mod h1:spTHT8F2u0DtGdVq3v6frnSiqaKwPdNuMQd856MCHhw= github.com/jfrog/gofrog v1.0.6 h1:yUDxSCw8gTK6vC4PvtG0HTnEOQJSZ+O4lWGCgkev1nU= github.com/jfrog/gofrog v1.0.6/go.mod h1:HkDzg+tMNw23UryoOv0+LB94BzYcl6MCIoz8Tmlb+s8= -github.com/jfrog/jfrog-cli-core v1.8.0 h1:Nequl4UQ7w84+DOFW7M++VGkLsZt2lzHuImtyKrqEPE= -github.com/jfrog/jfrog-cli-core v1.8.0/go.mod h1:saWhL5LDNpUH8CIC/C+jnBm/60AS6N0uBK4o/iZRBZU= +github.com/jfrog/jfrog-cli-core v1.8.1 h1:cKucXVvZgSPpccp4PcNCxTl4cHbr7roNV8XeVLZosmI= +github.com/jfrog/jfrog-cli-core v1.8.1/go.mod h1:5AOY/1dGtWvRTLrbSBxDXV39kTZNNxcfIWAuuoe6a4M= github.com/jfrog/jfrog-client-go v0.25.0 h1:O4s0wTPFoXwl9IDTpuTv9NN+FI3V3etlapo/g7Qb4+Y= github.com/jfrog/jfrog-client-go v0.25.0/go.mod h1:bjBL6Svr951HZH7JvMtzPJ9Xy5cO0OweNjkhUzxKmtw= +github.com/jfrog/jfrog-client-go v0.25.1 h1:V8FqGPvGCEAsIXq9rr1ImJWgDtX+GVkB/dcr+PLHvGw= +github.com/jfrog/jfrog-client-go v0.25.1/go.mod h1:bjBL6Svr951HZH7JvMtzPJ9Xy5cO0OweNjkhUzxKmtw= github.com/jonboulle/clockwork v0.1.0/go.mod h1:Ii8DK3G1RaLaWxj9trq07+26W01tbo22gdxWY5EU2bo= github.com/json-iterator/go v1.1.6/go.mod h1:+SdeFBvtyEkXs7REEP0seUULqWtbJapLOCVDaaPEHmU= github.com/jstemmer/go-junit-report v0.0.0-20190106144839-af01ea7f8024/go.mod h1:6v2b51hI/fHJwM22ozAgKL4VKDeJcHhJFhtBdhmNjmU= diff --git a/utils/cliutils/cli_consts.go b/utils/cliutils/cli_consts.go index d63640d30..59a72ef6e 100644 --- a/utils/cliutils/cli_consts.go +++ b/utils/cliutils/cli_consts.go @@ -2,7 +2,7 @@ package cliutils const ( // General CLI constants - CliVersion = "1.50.0" + CliVersion = "1.50.1" ClientAgent = "jfrog-cli-go" // CLI base commands constants: