Skip to content

Commit f580340

Browse files
committed
bump v1.3.0 stable
1 parent c3941e1 commit f580340

File tree

2 files changed

+34
-1
lines changed

2 files changed

+34
-1
lines changed

ChangeLog.md

+33
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,39 @@
22

33
## Releases
44

5+
### 1.3.0 - 2023-12-26
6+
7+
**Upgrading**
8+
9+
* #1427 / #1373 / #1371 - fix staticcheck warnings, remove support for gobindata / go 1.16
10+
11+
Features:
12+
13+
* #1473 - `nsqd`: use --tls-root-ca-file in nsqauth request (thanks @intellitrend-team)
14+
* #1470 / #1469 - `nsqadmin`: upgrade supported ECMA from ES5 to ES2020 (thanks @dudleycarr)
15+
* #1468 - `nsqadmin`: add paused label to topic within the node view (thanks @dudleycarr)
16+
* #1462 - `nsqadmin`: add admin check for topic/node thombstone endpoint (thanks @dudleycarr)
17+
* #1434 - `nsqd`: add support of unix sockets for tcp, http, https listeners (thanks @telepenin)
18+
* #1424 - `nsqd`: add /debug/freememory API (thanks @guozhao-coder)
19+
* #1421 - `nsqd`: nicer tls-min-version help text default
20+
* #1376 - `nsqd`: allow unbuffered memory chan if ephemeral or deferred
21+
* #1380 - `nsqd`: use metadata struct for both marshal and unmarshal (thanks @karalabe)
22+
* #1403 - `nsqd`: /info api returns more info (thanks @arshabbir)
23+
* #1384 - `nsqd`: allow disabling both HTTP and HTTPS interfaces (thanks @karalabe)
24+
* #1385 - `nsqd`: enable support for TLS1.3 (thanks @karalabe)
25+
* #1372 - `nsqadmin`: new flag --dev-static-dir instead of debug build tag
26+
27+
Bugs:
28+
29+
* #1478 - `Dockerfile`: remove nsswitch.conf check (thanks @dudleycarr)
30+
* #1467 - `nsqadmin`: fix counter by bounding animation steps (thanks @dudleycarr)
31+
* #1466 - `nsqadmin`: fix broken graph template in nsqadmin node view (thanks @dudleycarr)
32+
* #1455 / #1387 - update dependencies
33+
* #1445 - `nsqd`: fix unsafe concurrency read in RemoveClient (thanks @gueFDF)
34+
* #1441 - `nsqd`: fix panic when statsd enabled and memstats disabled with no topics (thanks @carl-reverb)
35+
* #1428 - delete `validTopicChannelNameRegex` useless escape characters (thanks @sjatsh)
36+
* #1419 - contrib: update nsqadmin.cfg.example (thanks @StellarisW)
37+
538
### 1.2.1 - 2021-08-15
639

740
**Upgrading**

internal/version/binary.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"runtime"
66
)
77

8-
const Binary = "1.2.1"
8+
const Binary = "1.3.0"
99

1010
func String(app string) string {
1111
return fmt.Sprintf("%s v%s (built w/%s)", app, Binary, runtime.Version())

0 commit comments

Comments
 (0)