Skip to content

Commit d171625

Browse files
authored
Merge pull request #1212 from ripienaar/0_1_6
Prepare release 0.1.6
2 parents 74fd7c7 + 32f978a commit d171625

File tree

7 files changed

+83
-84
lines changed

7 files changed

+83
-84
lines changed

.github/workflows/release.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -56,10 +56,10 @@ jobs:
5656
repositories: "homebrew-nats-tools"
5757

5858
- name: Run GoReleaser
59-
uses: goreleaser/goreleaser-action@v5
59+
uses: goreleaser/goreleaser-action@v6
6060
with:
61-
version: latest
61+
version: "~> v2"
6262
args: release --clean
6363
env:
6464
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
65-
GITHUB_APP_TOKEN: ${{ steps.token.outputs.token }}
65+
GITHUB_APP_TOKEN: ${{ steps.token.outputs.token }}

.github/workflows/test.yaml

+4-7
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
test:
66
strategy:
77
matrix:
8-
go: [ "1.21", "1.22" ]
8+
go: [ "1.22", "1.23" ]
99

1010
env:
1111
GOPATH: /home/runner/work/natscli
@@ -36,18 +36,15 @@ jobs:
3636
shell: bash --noprofile --norc -x -eo pipefail {0}
3737
run: |
3838
PATH=$PATH:$GOPATH/bin
39-
GO_LIST=$(go list ./...)
39+
GO_LIST=$(go list ./... | grep -F -e asciigraph -v)
4040
$(exit $(go fmt $GO_LIST | wc -l))
4141
go vet -composites=false $GO_LIST
42-
find . -type f -name "*.go" | xargs misspell -error -locale US
42+
find . -type f -name "*.go" | grep -F -e asciigraph -v | xargs misspell -error -locale US
4343
staticcheck -f stylish $GO_LIST
4444
4545
- name: Run tests
4646
shell: bash --noprofile --norc -x -eo pipefail {0}
4747
run: |
4848
set -e
49-
cd nats
50-
go test -v --failfast -p=1 ./...
51-
cd ../cli
52-
go test -v --failfast -p=1 ./...
49+
go list ./... | grep -F -e asciigraph -v | xargs go test -v --failfast -p=1
5350
set +e

.goreleaser.yml

+7-4
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
11
project_name: natscli
2+
version: 2
23

34
release:
45
github:
56
owner: nats-io
67
name: natscli
78
name_template: "Release {{.Version}}"
89
draft: true
10+
prerelease: auto
911

1012
changelog:
11-
skip: true
13+
disable: true
1214

1315
builds:
1416
- main: ./nats
@@ -53,14 +55,15 @@ checksum:
5355

5456
brews:
5557
- name: nats
56-
folder: Formula
58+
directory: Formula
5759
repository:
5860
owner: nats-io
5961
name: homebrew-nats-tools
62+
token: "{{ .Env.GITHUB_APP_TOKEN }}"
6063
url_template: "https://github.com/nats-io/natscli/releases/download/{{ .Tag }}/nats-{{.Version}}-{{ .Os }}-{{ .Arch }}{{if .Arm}}{{.Arm}}{{end}}.zip"
61-
homepage: "https://github.com/nats-io/nats"
64+
homepage: "https://github.com/nats-io/natscli"
6265
description: "NATS utility"
63-
skip_upload: false
66+
skip_upload: auto
6467
test: |
6568
system "#{bin}/nats --version"
6669
install: |

cli/account_tls_command.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ func (c *ActTLSCmd) showTLS(_ *fisk.ParseContext) error {
6565

6666
var showingOCSP bool
6767
if c.wantOCSP {
68-
if t.OCSPResponse != nil && len(t.OCSPResponse) > 0 {
68+
if len(t.OCSPResponse) > 0 {
6969
showingOCSP = true
7070
} else {
7171
fmt.Printf("# No OCSP Response found in TLS connection\n\n")

cli/errors_command.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ package cli
22

33
import (
44
"encoding/json"
5+
"errors"
56
"fmt"
67
"os"
78
"os/exec"
@@ -299,7 +300,7 @@ func (c *errCmd) validateErr(err *server.ErrorsData) error {
299300
}
300301

301302
if len(errs) > 0 {
302-
return fmt.Errorf(f(errs))
303+
return errors.New(f(errs))
303304
}
304305

305306
return nil

go.mod

+22-22
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,37 @@
11
module github.com/nats-io/natscli
22

3-
go 1.21
3+
go 1.22.0
44

55
require (
66
github.com/AlecAivazis/survey/v2 v2.3.7
77
github.com/HdrHistogram/hdrhistogram-go v1.1.2
8-
github.com/choria-io/fisk v0.6.2
8+
github.com/choria-io/fisk v0.6.4
99
github.com/dustin/go-humanize v1.0.1
10-
github.com/emicklei/dot v1.6.2
10+
github.com/emicklei/dot v1.6.4
1111
github.com/expr-lang/expr v1.16.9
12-
github.com/fatih/color v1.17.0
12+
github.com/fatih/color v1.18.0
1313
github.com/ghodss/yaml v1.0.0
1414
github.com/google/go-cmp v0.6.0
1515
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510
1616
github.com/gosuri/uiprogress v0.0.1
17-
github.com/guptarohit/asciigraph v0.7.1
18-
github.com/jedib0t/go-pretty/v6 v6.5.9
17+
github.com/guptarohit/asciigraph v0.7.3
18+
github.com/jedib0t/go-pretty/v6 v6.6.5
1919
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51
20-
github.com/klauspost/compress v1.17.9
20+
github.com/klauspost/compress v1.17.11
2121
github.com/mattn/go-isatty v0.0.20
2222
github.com/nats-io/jsm.go v0.1.2
23-
github.com/nats-io/jwt/v2 v2.5.8
24-
github.com/nats-io/nats-server/v2 v2.10.18
25-
github.com/nats-io/nats.go v1.36.0
26-
github.com/nats-io/nkeys v0.4.7
23+
github.com/nats-io/jwt/v2 v2.7.3
24+
github.com/nats-io/nats-server/v2 v2.10.24
25+
github.com/nats-io/nats.go v1.38.0
26+
github.com/nats-io/nkeys v0.4.9
2727
github.com/nats-io/nuid v1.0.1
28-
github.com/prometheus/client_golang v1.19.1
29-
github.com/prometheus/common v0.55.0
28+
github.com/prometheus/client_golang v1.20.5
29+
github.com/prometheus/common v0.61.0
3030
github.com/santhosh-tekuri/jsonschema/v5 v5.3.1
3131
github.com/tylertreat/hdrhistogram-writer v0.0.0-20210816161836-2e440612a39f
32-
golang.org/x/crypto v0.25.0
33-
golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56
34-
golang.org/x/term v0.22.0
32+
golang.org/x/crypto v0.31.0
33+
golang.org/x/exp v0.0.0-20241217172543-b2144cdd0a67
34+
golang.org/x/term v0.27.0
3535
gopkg.in/yaml.v3 v3.0.1
3636
)
3737

@@ -40,17 +40,17 @@ require (
4040
github.com/cespare/xxhash/v2 v2.3.0 // indirect
4141
github.com/gosuri/uilive v0.0.4 // indirect
4242
github.com/mattn/go-colorable v0.1.13 // indirect
43-
github.com/mattn/go-runewidth v0.0.15 // indirect
43+
github.com/mattn/go-runewidth v0.0.16 // indirect
4444
github.com/mgutz/ansi v0.0.0-20200706080929-d51e80ef957d // indirect
4545
github.com/minio/highwayhash v1.0.3 // indirect
4646
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
4747
github.com/prometheus/client_model v0.6.1 // indirect
4848
github.com/prometheus/procfs v0.15.1 // indirect
4949
github.com/rivo/uniseg v0.4.7 // indirect
50-
golang.org/x/net v0.27.0 // indirect
51-
golang.org/x/sys v0.22.0 // indirect
52-
golang.org/x/text v0.16.0 // indirect
53-
golang.org/x/time v0.5.0 // indirect
54-
google.golang.org/protobuf v1.34.2 // indirect
50+
golang.org/x/net v0.33.0 // indirect
51+
golang.org/x/sys v0.28.0 // indirect
52+
golang.org/x/text v0.21.0 // indirect
53+
golang.org/x/time v0.8.0 // indirect
54+
google.golang.org/protobuf v1.36.0 // indirect
5555
gopkg.in/yaml.v2 v2.4.0 // indirect
5656
)

0 commit comments

Comments
 (0)