Skip to content

Commit 3f6efdc

Browse files
authored
Merge pull request #52 from yteraoka/tagpr-from-v0.5.0
Release for v0.5.1
2 parents 78ee502 + 912d9fe commit 3f6efdc

File tree

2 files changed

+160
-0
lines changed

2 files changed

+160
-0
lines changed

.tagpr

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
# config file for the tagpr in git config format
2+
# The tagpr generates the initial configuration, which you can rewrite to suit your environment.
3+
# CONFIGURATIONS:
4+
# tagpr.releaseBranch
5+
# Generally, it is "main." It is the branch for releases. The tagpr tracks this branch,
6+
# creates or updates a pull request as a release candidate, or tags when they are merged.
7+
#
8+
# tagpr.versionFile
9+
# Versioning file containing the semantic version needed to be updated at release.
10+
# It will be synchronized with the "git tag".
11+
# Often this is a meta-information file such as gemspec, setup.cfg, package.json, etc.
12+
# Sometimes the source code file, such as version.go or Bar.pm, is used.
13+
# If you do not want to use versioning files but only git tags, specify the "-" string here.
14+
# You can specify multiple version files by comma separated strings.
15+
#
16+
# tagpr.vPrefix
17+
# Flag whether or not v-prefix is added to semver when git tagging. (e.g. v1.2.3 if true)
18+
# This is only a tagging convention, not how it is described in the version file.
19+
#
20+
# tagpr.changelog (Optional)
21+
# Flag whether or not changelog is added or changed during the release.
22+
#
23+
# tagpr.command (Optional)
24+
# Command to change files just before release and versioning.
25+
#
26+
# tagpr.postVersionCommand (Optional)
27+
# Command to change files just after versioning.
28+
#
29+
# tagpr.template (Optional)
30+
# Pull request template file in go template format
31+
#
32+
# tagpr.templateText (Optional)
33+
# Pull request template text in go template format
34+
#
35+
# tagpr.release (Optional)
36+
# GitHub Release creation behavior after tagging [true, draft, false]
37+
# If this value is not set, the release is to be created.
38+
#
39+
# tagpr.majorLabels (Optional)
40+
# Label of major update targets. Default is [major]
41+
#
42+
# tagpr.minorLabels (Optional)
43+
# Label of minor update targets. Default is [minor]
44+
#
45+
# tagpr.commitPrefix (Optional)
46+
# Prefix of commit message. Default is "[tagpr]"
47+
#
48+
[tagpr]
49+
vPrefix = true
50+
releaseBranch = master
51+
versionFile = -

CHANGELOG.md

Lines changed: 109 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,109 @@
1+
# Changelog
2+
3+
## [v0.5.1](https://github.com/yteraoka/http-client-keepalive/compare/v0.5.0...v0.5.1) - 2025-11-08
4+
- tagpr の導入 by @yteraoka in https://github.com/yteraoka/http-client-keepalive/pull/49
5+
- fix log.Printf() args by @yteraoka in https://github.com/yteraoka/http-client-keepalive/pull/50
6+
- tagpr の対象 branch を修正 by @yteraoka in https://github.com/yteraoka/http-client-keepalive/pull/51
7+
- use `time.Since` instead of `time.Now().Sub` (gosimple) by @yteraoka in https://github.com/yteraoka/http-client-keepalive/pull/53
8+
- Update dependency golang to v1.23.1 by @renovate[bot] in https://github.com/yteraoka/http-client-keepalive/pull/47
9+
- Update dependency golang to v1.23.2 by @renovate[bot] in https://github.com/yteraoka/http-client-keepalive/pull/54
10+
- Update dependency golang to v1.24.6 by @renovate[bot] in https://github.com/yteraoka/http-client-keepalive/pull/55
11+
- Update actions/create-github-app-token action to v2 by @renovate[bot] in https://github.com/yteraoka/http-client-keepalive/pull/57
12+
- pinact by @yteraoka in https://github.com/yteraoka/http-client-keepalive/pull/58
13+
- Update dependency go to v1.24.6 - autoclosed by @renovate[bot] in https://github.com/yteraoka/http-client-keepalive/pull/56
14+
- Update actions/checkout action to v4.3.0 by @renovate[bot] in https://github.com/yteraoka/http-client-keepalive/pull/59
15+
- Update actions/create-github-app-token action to v2.1.4 by @renovate[bot] in https://github.com/yteraoka/http-client-keepalive/pull/60
16+
- Update actions/checkout action to v5 by @renovate[bot] in https://github.com/yteraoka/http-client-keepalive/pull/61
17+
- Update goreleaser/goreleaser-action action to v6.4.0 by @renovate[bot] in https://github.com/yteraoka/http-client-keepalive/pull/64
18+
- Update Songmu/tagpr action to v1.9.0 by @renovate[bot] in https://github.com/yteraoka/http-client-keepalive/pull/65
19+
- Update actions/setup-go action to v6 by @renovate[bot] in https://github.com/yteraoka/http-client-keepalive/pull/66
20+
- Update dependency golang to v1.25.4 by @renovate[bot] in https://github.com/yteraoka/http-client-keepalive/pull/62
21+
- Update dependency go to v1.25.4 by @renovate[bot] in https://github.com/yteraoka/http-client-keepalive/pull/63
22+
23+
## [v0.5.0](https://github.com/yteraoka/http-client-keepalive/compare/v0.4.0...v0.5.0) - 2024-09-06
24+
- support HTTP_PROXY by @yteraoka in https://github.com/yteraoka/http-client-keepalive/pull/48
25+
26+
## [v0.4.0](https://github.com/yteraoka/http-client-keepalive/compare/v0.3.9...v0.4.0) - 2024-07-12
27+
- goreleaser v2 に合わせて --rm-dist を --clean に変更 by @yteraoka in https://github.com/yteraoka/http-client-keepalive/pull/46
28+
29+
## [v0.3.9](https://github.com/yteraoka/http-client-keepalive/compare/v0.3.8...v0.3.9) - 2024-07-12
30+
- .goreleaser.yaml の更新 by @yteraoka in https://github.com/yteraoka/http-client-keepalive/pull/45
31+
32+
## [v0.3.8](https://github.com/yteraoka/http-client-keepalive/compare/v0.3.7...v0.3.8) - 2024-07-12
33+
- Update actions/setup-go action to v5 by @renovate[bot] in https://github.com/yteraoka/http-client-keepalive/pull/40
34+
- Update goreleaser/goreleaser-action action to v6 by @renovate[bot] in https://github.com/yteraoka/http-client-keepalive/pull/43
35+
- Update dependency golang to v1.22.5 by @renovate[bot] in https://github.com/yteraoka/http-client-keepalive/pull/42
36+
- Update module github.com/google/uuid to v1.6.0 by @renovate[bot] in https://github.com/yteraoka/http-client-keepalive/pull/41
37+
- Update module github.com/jessevdk/go-flags to v1.6.1 by @renovate[bot] in https://github.com/yteraoka/http-client-keepalive/pull/44
38+
39+
## [v0.3.7](https://github.com/yteraoka/http-client-keepalive/compare/v0.3.6...v0.3.7) - 2023-12-06
40+
- Update dependency golang to v1.21.5 by @renovate[bot] in https://github.com/yteraoka/http-client-keepalive/pull/39
41+
42+
## [v0.3.6](https://github.com/yteraoka/http-client-keepalive/compare/v0.3.5...v0.3.6) - 2023-11-08
43+
- Update goreleaser/goreleaser-action action to v4 by @renovate[bot] in https://github.com/yteraoka/http-client-keepalive/pull/27
44+
- Update actions/setup-go action to v4 by @renovate[bot] in https://github.com/yteraoka/http-client-keepalive/pull/31
45+
- Update module github.com/google/uuid to v1.3.1 by @renovate[bot] in https://github.com/yteraoka/http-client-keepalive/pull/33
46+
- Update dependency golang to v1.21.0 by @renovate[bot] in https://github.com/yteraoka/http-client-keepalive/pull/32
47+
- Update dependency golang to v1.21.2 by @renovate[bot] in https://github.com/yteraoka/http-client-keepalive/pull/35
48+
- Update actions/checkout action to v4 by @renovate[bot] in https://github.com/yteraoka/http-client-keepalive/pull/34
49+
- Update goreleaser/goreleaser-action action to v5 by @renovate[bot] in https://github.com/yteraoka/http-client-keepalive/pull/36
50+
- Update dependency golang to v1.21.4 by @renovate[bot] in https://github.com/yteraoka/http-client-keepalive/pull/37
51+
- Update module github.com/google/uuid to v1.4.0 by @renovate[bot] in https://github.com/yteraoka/http-client-keepalive/pull/38
52+
53+
## [v0.3.5](https://github.com/yteraoka/http-client-keepalive/compare/v0.3.4...v0.3.5) - 2023-02-16
54+
- trace が 3 以上の場合に response header を出力する by @yteraoka in https://github.com/yteraoka/http-client-keepalive/pull/30
55+
56+
## [v0.3.4](https://github.com/yteraoka/http-client-keepalive/compare/v0.3.3...v0.3.4) - 2023-02-06
57+
- goreleaser で arm64 binary も build する by @yteraoka in https://github.com/yteraoka/http-client-keepalive/pull/29
58+
59+
## [v0.3.3](https://github.com/yteraoka/http-client-keepalive/compare/v0.3.2...v0.3.3) - 2023-02-06
60+
- body の byte 数を出力 by @yteraoka in https://github.com/yteraoka/http-client-keepalive/pull/28
61+
62+
## [v0.3.2](https://github.com/yteraoka/http-client-keepalive/compare/v0.3.1...v0.3.2) - 2023-02-06
63+
- `--uuid` オプションで uuid parameter を追加する by @yteraoka in https://github.com/yteraoka/http-client-keepalive/pull/26
64+
65+
## [v0.3.1](https://github.com/yteraoka/http-client-keepalive/compare/v0.3.0...v0.3.1) - 2023-01-31
66+
- Configure Renovate by @renovate[bot] in https://github.com/yteraoka/http-client-keepalive/pull/17
67+
- Update module github.com/jessevdk/go-flags to v1.5.0 by @renovate[bot] in https://github.com/yteraoka/http-client-keepalive/pull/18
68+
- Update goreleaser/goreleaser-action action to v3 by @renovate[bot] in https://github.com/yteraoka/http-client-keepalive/pull/23
69+
- Update actions/checkout action to v3 by @renovate[bot] in https://github.com/yteraoka/http-client-keepalive/pull/21
70+
- Update actions/setup-go action to v3 by @renovate[bot] in https://github.com/yteraoka/http-client-keepalive/pull/22
71+
- Update module go to 1.19 by @renovate[bot] in https://github.com/yteraoka/http-client-keepalive/pull/19
72+
- actions/setup-go で install する version も 1.19 に更新 by @yteraoka in https://github.com/yteraoka/http-client-keepalive/pull/24
73+
- io.Copy のエラーをチェック by @yteraoka in https://github.com/yteraoka/http-client-keepalive/pull/25
74+
75+
## [v0.3.0](https://github.com/yteraoka/http-client-keepalive/compare/v0.2.5...v0.3.0) - 2022-05-26
76+
- sleep-at-end オプションを追加 by @yteraoka in https://github.com/yteraoka/http-client-keepalive/pull/15
77+
- go 1.18 by @yteraoka in https://github.com/yteraoka/http-client-keepalive/pull/16
78+
79+
## [v0.2.5](https://github.com/yteraoka/http-client-keepalive/compare/v0.2.4...v0.2.5) - 2021-01-25
80+
- Call client.CloseIdleConnections before exit by @yteraoka in https://github.com/yteraoka/http-client-keepalive/pull/14
81+
82+
## [v0.2.4](https://github.com/yteraoka/http-client-keepalive/compare/v0.2.3...v0.2.4) - 2021-01-23
83+
- Replace `--random-sleep-max-ms` with `--sleep-range-ms` by @yteraoka in https://github.com/yteraoka/http-client-keepalive/pull/13
84+
85+
## [v0.2.3](https://github.com/yteraoka/http-client-keepalive/compare/v0.2.2...v0.2.3) - 2020-05-18
86+
- Delete unnecessary call RoundTrip() by @yteraoka in https://github.com/yteraoka/http-client-keepalive/pull/10
87+
- Add httptrace.DNSStart, DNSDone by @yteraoka in https://github.com/yteraoka/http-client-keepalive/pull/11
88+
- Split the httptrace functions into a separate file by @yteraoka in https://github.com/yteraoka/http-client-keepalive/pull/12
89+
90+
## [v0.2.2](https://github.com/yteraoka/http-client-keepalive/compare/v0.2.1...v0.2.2) - 2020-05-15
91+
- fix typo by @yteraoka in https://github.com/yteraoka/http-client-keepalive/pull/7
92+
- Add .gitignore by @yteraoka in https://github.com/yteraoka/http-client-keepalive/pull/8
93+
- Update go version in workflow by @yteraoka in https://github.com/yteraoka/http-client-keepalive/pull/9
94+
95+
## [v0.2.1](https://github.com/yteraoka/http-client-keepalive/compare/v0.2.0...v0.2.1) - 2020-05-15
96+
- set some message to lower priority by @yteraoka in https://github.com/yteraoka/http-client-keepalive/pull/6
97+
98+
## [v0.2.0](https://github.com/yteraoka/http-client-keepalive/compare/v0.1.8...v0.2.0) - 2020-05-15
99+
- Update README by @yteraoka in https://github.com/yteraoka/http-client-keepalive/pull/4
100+
- Add httptrace by @yteraoka in https://github.com/yteraoka/http-client-keepalive/pull/5
101+
102+
## [v0.1.8](https://github.com/yteraoka/http-client-keepalive/compare/v0.1.7...v0.1.8) - 2020-05-14
103+
- Override MaxIdleConns with MaxIdleConnsPerHost if MaxIdleConnsPerHost… by @yteraoka in https://github.com/yteraoka/http-client-keepalive/pull/3
104+
105+
## [v0.1.7](https://github.com/yteraoka/http-client-keepalive/compare/v0.1.6...v0.1.7) - 2020-04-28
106+
- disable interval sleep by default by @yteraoka in https://github.com/yteraoka/http-client-keepalive/pull/2
107+
108+
## [v0.1.6](https://github.com/yteraoka/http-client-keepalive/compare/v0.1.5...v0.1.6) - 2020-04-28
109+
- Add disable-http-keepalive flag by @yteraoka in https://github.com/yteraoka/http-client-keepalive/pull/1

0 commit comments

Comments
 (0)