Skip to content

Commit e9f82fe

Browse files
committed
use sfgrp/lognsq for NSQ logger
1 parent 40d0ff3 commit e9f82fe

6 files changed

Lines changed: 253 additions & 88 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## Unreleased
44

5+
## [v1.6.1]
6+
7+
- Add: use NSQ logger from sfgrp/lognsq
8+
59
## [v1.6.0]
610

711
- Add [#218]: enable/disable logs for web-services, allow logs aggregation
@@ -364,6 +368,7 @@ array of names instead of a stream.
364368

365369
This document follows [changelog guidelines]
366370

371+
[v1.6.1]: https://github.com/gnames/gnparser/compare/v1.6.0...v1.6.1
367372
[v1.6.0]: https://github.com/gnames/gnparser/compare/v1.5.7...v1.6.0
368373
[v1.5.7]: https://github.com/gnames/gnparser/compare/v1.5.6...v1.5.7
369374
[v1.5.6]: https://github.com/gnames/gnparser/compare/v1.5.5...v1.5.6

go.mod

Lines changed: 16 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -5,57 +5,58 @@ go 1.17
55
require (
66
github.com/dustin/go-humanize v1.0.0
77
github.com/gnames/gnfmt v0.2.0
8-
github.com/gnames/gnlib v0.7.0
8+
github.com/gnames/gnlib v0.8.0
99
github.com/gnames/gnsys v0.2.2
1010
github.com/gnames/gnuuid v0.1.1
1111
github.com/gnames/organizer v0.1.1
1212
github.com/gnames/tribool v0.1.1
13-
github.com/labstack/echo/v4 v4.6.1
14-
github.com/labstack/gommon v0.3.0
13+
github.com/labstack/echo/v4 v4.6.3
14+
github.com/labstack/gommon v0.3.1
1515
github.com/pointlander/peg v1.0.1
1616
github.com/rendon/testcli v1.0.0
17-
github.com/spf13/cobra v1.2.1
17+
github.com/sfgrp/lognsq v0.1.1
18+
github.com/spf13/cobra v1.3.0
1819
github.com/stretchr/testify v1.7.0
19-
golang.org/x/net v0.0.0-20211020060615-d418f374d309
20+
golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd
2021
golang.org/x/perf v0.0.0-20211012211434-03971e389cd3
21-
golang.org/x/tools v0.1.7
22+
golang.org/x/tools v0.1.9
2223
)
2324

2425
require (
2526
github.com/davecgh/go-spew v1.1.1 // indirect
2627
github.com/fsnotify/fsnotify v1.5.1 // indirect
2728
github.com/golang-jwt/jwt v3.2.2+incompatible // indirect
28-
github.com/golang/snappy v0.0.3 // indirect
29+
github.com/golang/snappy v0.0.4 // indirect
2930
github.com/google/uuid v1.3.0 // indirect
3031
github.com/hashicorp/hcl v1.0.0 // indirect
3132
github.com/inconshreveable/mousetrap v1.0.0 // indirect
3233
github.com/json-iterator/go v1.1.12 // indirect
3334
github.com/magiconair/properties v1.8.5 // indirect
34-
github.com/mattn/go-colorable v0.1.11 // indirect
35+
github.com/mattn/go-colorable v0.1.12 // indirect
3536
github.com/mattn/go-isatty v0.0.14 // indirect
36-
github.com/mitchellh/mapstructure v1.4.2 // indirect
37+
github.com/mitchellh/mapstructure v1.4.3 // indirect
3738
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
3839
github.com/modern-go/reflect2 v1.0.2 // indirect
3940
github.com/nsqio/go-nsq v1.1.0 // indirect
4041
github.com/pelletier/go-toml v1.9.4 // indirect
4142
github.com/pmezard/go-difflib v1.0.0 // indirect
4243
github.com/pointlander/compress v1.1.1-0.20190518213731-ff44bd196cc3 // indirect
4344
github.com/pointlander/jetset v1.0.1-0.20190518214125-eee7eff80bd4 // indirect
44-
github.com/spf13/afero v1.6.0 // indirect
45+
github.com/spf13/afero v1.8.0 // indirect
4546
github.com/spf13/cast v1.4.1 // indirect
4647
github.com/spf13/jwalterweatherman v1.1.0 // indirect
4748
github.com/spf13/pflag v1.0.5 // indirect
48-
github.com/spf13/viper v1.9.0 // indirect
49+
github.com/spf13/viper v1.10.1 // indirect
4950
github.com/subosito/gotenv v1.2.0 // indirect
5051
github.com/valyala/bytebufferpool v1.0.0 // indirect
5152
github.com/valyala/fasttemplate v1.2.1 // indirect
52-
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519 // indirect
53+
golang.org/x/crypto v0.0.0-20220131195533-30dcbda58838 // indirect
5354
golang.org/x/mod v0.5.1 // indirect
54-
golang.org/x/sys v0.0.0-20211025201205-69cdffdb9359 // indirect
55+
golang.org/x/sys v0.0.0-20220128215802-99c3d69c2c27 // indirect
5556
golang.org/x/text v0.3.7 // indirect
56-
golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac // indirect
57+
golang.org/x/time v0.0.0-20211116232009-f0f3c7e86c11 // indirect
5758
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
58-
gopkg.in/ini.v1 v1.63.2 // indirect
59+
gopkg.in/ini.v1 v1.66.3 // indirect
5960
gopkg.in/yaml.v2 v2.4.0 // indirect
6061
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
6162
)

0 commit comments

Comments
 (0)