Skip to content

Commit 52d9cd5

Browse files
committed
ci: release v1.9.1
1 parent 2f7744c commit 52d9cd5

File tree

4 files changed

+205
-41
lines changed

4 files changed

+205
-41
lines changed

.travis.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,26 @@ go:
66
- 1.11.x
77
- 1.12.x
88

9+
env:
10+
- GO111MODULE=on
11+
12+
install: true
13+
914
git:
1015
depth: 1
1116

1217
cache:
1318
directories:
1419
- vendor
15-
- $GOPATH/src
20+
- $HOME/.cache/go-build
21+
- $GOPATH/pkg/mod
22+
# - $GOPATH/src
1623

1724

1825
script:
1926
- git checkout $TRAVIS_COMMIT . # travis.ci will overwrite to master branch
20-
- go test -race -coverprofile=coverage.txt -covermode=atomic ./...
27+
- go mod vendor
28+
- go test -race -mod=vendor -coverprofile=coverage.txt -covermode=atomic ./...
2129
# - go test -bench ./...
2230

2331
after_script:

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22
*CURRENT*
33
---
44

5+
- 2019-06-12 (Laisky) build: fix package conflict
6+
- 2019-06-12 (Laisky) ci: update travis
7+
- 2019-06-12 (Laisky) ci: update cache
8+
- 2019-06-10 (Laisky) ci: fix dependencies error
9+
- 2019-06-10 (Laisky) fix: add uint32set & improve rotate
10+
- 2019-06-04 (Laisky) docs: update readme
11+
12+
*v1.9.0*
13+
---
14+
515
- 2019-06-04 (Laisky) style: add some comment
616
- 2019-06-04 (Laisky) ci: add prometheus
717
- 2019-06-04 (Laisky) ci: upgrade go-utils v1.4.0

go.mod

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,33 @@ module github.com/Laisky/go-fluentd
33
go 1.12
44

55
require (
6+
github.com/DataDog/zstd v1.3.8 // indirect
67
github.com/Depado/ginprom v1.1.1
78
github.com/Laisky/go-syslog v2.3.3+incompatible
8-
github.com/Laisky/go-utils v1.4.0
9+
github.com/Laisky/go-utils v1.4.3
910
github.com/Laisky/zap v1.9.2
10-
github.com/Shopify/sarama v1.22.0
11+
github.com/OneOfOne/xxhash v1.2.5 // indirect
12+
github.com/Shopify/sarama v1.22.1
1113
github.com/cespare/xxhash v1.1.0
1214
github.com/gin-contrib/pprof v1.2.0
1315
github.com/gin-gonic/gin v1.4.0
16+
github.com/glycerine/goconvey v0.0.0-20190410193231-58a59202ab31 // indirect
1417
github.com/json-iterator/go v1.1.6
18+
github.com/labstack/gommon v0.2.9 // indirect
19+
github.com/magiconair/properties v1.8.1 // indirect
20+
github.com/pelletier/go-toml v1.4.0 // indirect
21+
github.com/pierrec/lz4 v2.0.5+incompatible // indirect
1522
github.com/pkg/errors v0.8.1
23+
github.com/prometheus/client_golang v0.9.4 // indirect
24+
github.com/smartystreets/goconvey v0.0.0-20190330032615-68dc04aab96a // indirect
25+
github.com/spf13/afero v1.2.2 // indirect
26+
github.com/spf13/jwalterweatherman v1.1.0 // indirect
1627
github.com/spf13/pflag v1.0.3
17-
github.com/spf13/viper v1.3.2
28+
github.com/spf13/viper v1.4.0
1829
github.com/tinylib/msgp v1.1.0
30+
golang.org/x/text v0.3.2 // indirect
1931
)
2032

2133
replace github.com/ugorji/go v1.1.4 => github.com/ugorji/go/codec v0.0.0-20190204201341-e444a5086c43
34+
35+
replace github.com/appleboy/gofight v2.0.0+incompatible => github.com/appleboy/gofight/v2 v2.1.1

0 commit comments

Comments
 (0)