Skip to content

Commit 74fd7c7

Browse files
authored
Merge pull request #1108 from ripienaar/prep_0_1_5
Prepare release v0.1.5
2 parents ee4d074 + f82202b commit 74fd7c7

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ require (
1919
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51
2020
github.com/klauspost/compress v1.17.9
2121
github.com/mattn/go-isatty v0.0.20
22-
github.com/nats-io/jsm.go v0.1.1
22+
github.com/nats-io/jsm.go v0.1.2
2323
github.com/nats-io/jwt/v2 v2.5.8
2424
github.com/nats-io/nats-server/v2 v2.10.18
2525
github.com/nats-io/nats.go v1.36.0

go.sum

+2
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,8 @@ github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 h1:C3w9PqII01/Oq
7777
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822/go.mod h1:+n7T8mK8HuQTcFwEeznm/DIxMOiR9yIdICNftLE1DvQ=
7878
github.com/nats-io/jsm.go v0.1.1 h1:6vjllz276SdC+3Fb3XI71p9B6toxkCruuB1K6unQEr0=
7979
github.com/nats-io/jsm.go v0.1.1/go.mod h1:cFz5wR1pW0zLFotntS4HA7V8Wm+sf8zpF+iQJHbsS6M=
80+
github.com/nats-io/jsm.go v0.1.2 h1:T4Fq88a03sPAPWYwrOLQ85oanYsC2Bs6517rUiWBMpQ=
81+
github.com/nats-io/jsm.go v0.1.2/go.mod h1:tnubE70CAKi5TNfQiq6XHFqWTuSIe1H7X4sDwfq6ZK8=
8082
github.com/nats-io/jwt/v2 v2.5.8 h1:uvdSzwWiEGWGXf+0Q+70qv6AQdvcvxrv9hPM0RiPamE=
8183
github.com/nats-io/jwt/v2 v2.5.8/go.mod h1:ZdWS1nZa6WMZfFwwgpEaqBV8EPGVgOTDHN/wTbz0Y5A=
8284
github.com/nats-io/nats-server/v2 v2.10.18 h1:tRdZmBuWKVAFYtayqlBB2BuCHNGAQPvoQIXOKwU3WSM=

internal/audit/cluster_checks.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ func makeCheckClusterHighHAAssets(haAssetsThreshold int) checkFunc {
221221
func checkClusterNamesForWhitespace(reader *archive.Reader, examples *ExamplesCollection) (Outcome, error) {
222222

223223
for _, clusterName := range reader.GetClusterNames() {
224-
if strings.Contains(clusterName, " ") {
224+
if strings.ContainsAny(clusterName, " \n") {
225225
examples.add("Cluster: %s", clusterName)
226226
}
227227
}
@@ -253,7 +253,7 @@ func checkLeafnodeServerNamesForWhitespace(r *archive.Reader, examples *Examples
253253

254254
for _, leaf := range serverLeafz.Leafs {
255255
// check if leafnode name contains whitespace
256-
if strings.Contains(leaf.Name, " ") {
256+
if strings.ContainsAny(leaf.Name, " \n") {
257257
leafnodesWithWhitespace[leaf.Name] = struct{}{}
258258
}
259259
}

internal/audit/server_checks.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ func checkJetStreamDomainsForWhitespace(r *archive.Reader, examples *ExamplesCol
249249
}
250250

251251
// check if jetstream domain contains whitespace
252-
if strings.Contains(serverJsz.Config.Domain, " ") {
252+
if strings.ContainsAny(serverJsz.Config.Domain, " \n") {
253253
examples.add("Cluster %s Server %s Domain %s", clusterName, serverName, serverJsz.Config.Domain)
254254
}
255255
}

0 commit comments

Comments
 (0)