Skip to content

Commit 2abcc2f

Browse files
authored
Merge pull request #74 from essentialkaos/develop
Version 6.0.3
2 parents 89d05a7 + eb6ff9b commit 2abcc2f

File tree

8 files changed

+26
-13
lines changed

8 files changed

+26
-13
lines changed

.github/dependabot.yml

+6
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,12 @@ updates:
1414
- "andyone"
1515
reviewers:
1616
- "andyone"
17+
groups:
18+
all:
19+
applies-to: version-updates
20+
update-types:
21+
- "minor"
22+
- "patch"
1723

1824
- package-ecosystem: "github-actions"
1925
directory: "/"

.github/images/card.svg

+5
Loading

.github/images/godoc.svg

+1
Loading

.github/images/license.svg

+1
Loading

Makefile

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
################################################################################
22

3-
# This Makefile generated by GoMakeGen 3.0.1 using next command:
3+
# This Makefile generated by GoMakeGen 3.0.2 using next command:
44
# gomakegen --mod .
55
#
66
# More info: https://kaos.sh/gomakegen
@@ -33,9 +33,9 @@ vendor: mod-vendor ## Make vendored copy of dependencies
3333
test: ## Run tests
3434
@echo "Starting tests…"
3535
ifdef COVERAGE_FILE ## Save coverage data into file (String)
36-
@go test $(VERBOSE_FLAG) -covermode=count -coverprofile=$(COVERAGE_FILE) .
36+
@go test $(VERBOSE_FLAG) -covermode=count -coverprofile=$(COVERAGE_FILE) .
3737
else
38-
@go test $(VERBOSE_FLAG) -covermode=count .
38+
@go test $(VERBOSE_FLAG) -covermode=count .
3939
endif
4040

4141
mod-init:
@@ -99,6 +99,6 @@ help: ## Show this info
9999
| sed 's/ifdef //' \
100100
| awk 'BEGIN {FS = " .*?## "}; {printf " \033[32m%-13s\033[0m %s\n", $$1, $$2}'
101101
@echo -e ''
102-
@echo -e '\033[90mGenerated by GoMakeGen 3.0.1\033[0m\n'
102+
@echo -e '\033[90mGenerated by GoMakeGen 3.0.2\033[0m\n'
103103

104104
################################################################################

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
<p align="center"><a href="#readme"><img src="https://gh.kaos.st/go-confluence.svg"/></a></p>
1+
<p align="center"><a href="#readme"><img src=".github/images/card.svg"/></a></p>
22

33
<p align="center">
4-
<a href="https://kaos.sh/g/go-confluence.v6"><img src="https://gh.kaos.st/godoc.svg" alt="PkgGoDev" /></a>
4+
<a href="https://kaos.sh/g/go-confluence.v6"><img src=".github/images/godoc.svg"/></a>
55
<a href="https://kaos.sh/r/go-confluence"><img src="https://kaos.sh/r/go-confluence.svg" alt="GoReportCard" /></a>
66
<a href="https://kaos.sh/w/go-confluence/ci"><img src="https://kaos.sh/w/go-confluence/ci.svg" alt="GitHub Actions CI Status" /></a>
77
<a href="https://kaos.sh/w/go-confluence/codeql"><img src="https://kaos.sh/w/go-confluence/codeql.svg" alt="GitHub Actions CodeQL Status" /></a>
88
<a href="https://kaos.sh/b/go-confluence"><img src="https://kaos.sh/b/c367cff1-4b71-43de-9a47-9fb34e8c34df.svg" alt="Codebeat badge" /></a>
9-
<a href="#license"><img src="https://gh.kaos.st/apache2.svg"></a>
9+
<a href="#license"><img src=".github/images/license.svg"/></a>
1010
</p>
1111

1212
<p align="center"><a href="#usage-example">Usage example</a> • <a href="#ci-status">CI Status</a> • <a href="#license">License</a></p>

go.mod

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ go 1.18
44

55
require (
66
github.com/essentialkaos/check v1.4.0
7-
github.com/valyala/fasthttp v1.53.0
7+
github.com/valyala/fasthttp v1.55.0
88
)
99

1010
require (
1111
github.com/andybalholm/brotli v1.1.0 // indirect
12-
github.com/klauspost/compress v1.17.8 // indirect
12+
github.com/klauspost/compress v1.17.9 // indirect
1313
github.com/kr/pretty v0.3.1 // indirect
1414
github.com/kr/text v0.2.0 // indirect
1515
github.com/rogpeppe/go-internal v1.9.0 // indirect

go.sum

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ github.com/andybalholm/brotli v1.1.0/go.mod h1:sms7XGricyQI9K10gOSf56VKKWS4oLer5
33
github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E=
44
github.com/essentialkaos/check v1.4.0 h1:kWdFxu9odCxUqo1NNFNJmguGrDHgwi3A8daXX1nkuKk=
55
github.com/essentialkaos/check v1.4.0/go.mod h1:LMKPZ2H+9PXe7Y2gEoKyVAwUqXVgx7KtgibfsHJPus0=
6-
github.com/klauspost/compress v1.17.8 h1:YcnTYrq7MikUT7k0Yb5eceMmALQPYBW/Xltxn0NAMnU=
7-
github.com/klauspost/compress v1.17.8/go.mod h1:Di0epgTjJY877eYKx5yC51cX2A2Vl2ibi7bDH9ttBbw=
6+
github.com/klauspost/compress v1.17.9 h1:6KIumPrER1LHsvBVuDa0r5xaG0Es51mhhB9BQB2qeMA=
7+
github.com/klauspost/compress v1.17.9/go.mod h1:Di0epgTjJY877eYKx5yC51cX2A2Vl2ibi7bDH9ttBbw=
88
github.com/kr/pretty v0.3.1 h1:flRD4NNwYAUpkphVc1HcthR4KEIFJ65n8Mw5qdRn3LE=
99
github.com/kr/pretty v0.3.1/go.mod h1:hoEshYVHaxMs3cyo3Yncou5ZscifuDolrwPKZanG3xk=
1010
github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY=
@@ -14,5 +14,5 @@ github.com/rogpeppe/go-internal v1.9.0 h1:73kH8U+JUqXU8lRuOHeVHaa/SZPifC7BkcraZV
1414
github.com/rogpeppe/go-internal v1.9.0/go.mod h1:WtVeX8xhTBvf0smdhujwtBcq4Qrzq/fJaraNFVN+nFs=
1515
github.com/valyala/bytebufferpool v1.0.0 h1:GqA5TC/0021Y/b9FG4Oi9Mr3q7XYx6KllzawFIhcdPw=
1616
github.com/valyala/bytebufferpool v1.0.0/go.mod h1:6bBcMArwyJ5K/AmCkWv1jt77kVWyCJ6HpOuEn7z0Csc=
17-
github.com/valyala/fasthttp v1.53.0 h1:lW/+SUkOxCx2vlIu0iaImv4JLrVRnbbkpCoaawvA4zc=
18-
github.com/valyala/fasthttp v1.53.0/go.mod h1:6dt4/8olwq9QARP/TDuPmWyWcl4byhpvTJ4AAtcz+QM=
17+
github.com/valyala/fasthttp v1.55.0 h1:Zkefzgt6a7+bVKHnu/YaYSOPfNYNisSVBo/unVCf8k8=
18+
github.com/valyala/fasthttp v1.55.0/go.mod h1:NkY9JtkrpPKmgwV3HTaS2HWaJss9RSIsRVfcxxoHiOM=

0 commit comments

Comments
 (0)