Skip to content

Commit 5aa1541

Browse files
committed
Release 2.1.5 (#305)
1 parent 653f495 commit 5aa1541

File tree

4 files changed

+49
-17
lines changed

4 files changed

+49
-17
lines changed

.goreleaser.yml

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
project_name: toxiproxy
2-
31
# This is an example .goreleaser.yml file with some sane defaults.
42
# Make sure to check the documentation at http://goreleaser.com
53
env:

CHANGELOG.md

+49-13
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,46 @@
1-
# 2.1.4
1+
# [Unreleased]
2+
3+
4+
# [2.1.5]
5+
6+
* Move to Go Modules from godeps (#253, @epk)
7+
* Update the example in `client/README.md` (#251, @nothinux)
8+
* Update TOC in `README.md` (4ca1eddddfcd0c50c8f6dfb97089bb68e6310fd9, @dwradcliffe)
9+
* Add an example of `config.json` file to `README.md` (#260, @JesseEstum)
10+
* Add Link to Elixir Client (#287, @Jcambass)
11+
* Add Rust client link (#293, @itarato)
12+
* Renovations: formatting code, update dependicies, make govet/staticcheck pass (#294, @dnwe)
13+
* Remove `openssl` from `dev.yml` to use `dev` tool (#298, @pedro-stanaka)
14+
* Update `go` versions in development (#299, @miry)
15+
* Mention `MacPorts` in `README.md` (#290, @amake)
16+
* Fix some typos in `README.md` and `CHANGELOG.md` (#222, @jwilk)
17+
* Replace TravisCI with Github Actions to run tests (#303, @miry)
18+
* Build and release binaries with `goreleaser`. Support `arm64` and BSD oses. (#301, @miry)
19+
* Automate release with Github actions (#304, @miry)
20+
21+
# [2.1.4]
222

323
* Bug fix: Fix OOM in toxic. #232
424
* Documentation updates.
525
* CI and test updates.
626

7-
# 2.1.3
27+
# [2.1.3]
828

929
* Update `/version` endpoint to also return a charset of utf-8. #204
1030
* Bug fix: Double http concatenation. #191
1131
* Update cli examples to be more accurate. #187
1232

13-
# 2.1.2
33+
# [2.1.2]
1434

1535
* go 1.8, make Sirupsen lower case, update godeps (issue #179)
1636
* Handle SIGTERM to exit cleanly (issue #180)
1737
* Address security issue by disallowing browsers from accessing API
1838

19-
# 2.1.1
39+
# [2.1.1]
2040

2141
* Fix timeout toxic causing hang (issue #159)
2242

23-
# 2.1.0
43+
# [2.1.0]
2444

2545
* Add -config server option to populate on startup #154
2646
* Updated CLI for scriptability #133
@@ -30,7 +50,7 @@
3050
* Add support for stateful toxics #127
3151
* Add limit_data toxic
3252

33-
# 2.0.0
53+
# [2.0.0]
3454

3555
* Add CLI (`toxiproxy-cli`) and rename server binary to `toxiproxy-server` #93
3656
* Fix removing a timeout toxic causing API to hang #89
@@ -53,38 +73,54 @@
5373
* Define proxy buffer sizes per-toxic (Fixes #72)
5474
* Fix slicer toxic testing race condition #71
5575

56-
# 1.2.1
76+
# [1.2.1]
5777

5878
* Fix proxy name conflicts leaking an open port #69
5979

60-
# 1.2.0
80+
# [1.2.0]
6181

6282
* Add a Toxic and Toxics type for the Go client
6383
* Add `Dockerfile`
6484
* Fix latency toxic limiting bandwidth #67
6585
* Add Slicer toxic
6686

67-
# 1.1.0
87+
# [1.1.0]
6888

6989
* Remove /toxics endpoint in favour of /proxies
7090
* Add bandwidth toxic
7191

72-
# 1.0.3
92+
# [1.0.3]
7393

7494
* Rename Go library package to Toxiproxy from Client
7595
* Fix latency toxic send to closed channel panic #46
7696
* Fix latency toxic accumulating delay #47
7797

78-
# 1.0.2
98+
# [1.0.2]
7999

80100
* Added Toxic support to Go client
81101

82-
# 1.0.1
102+
# [1.0.1]
83103

84104
* Various improvements to the documentation
85105
* Initial version of Go client
86106
* Fix toxic disabling bug #42
87107

88-
# 1.0.0
108+
# [1.0.0]
89109

90110
Initial public release.
111+
112+
[Unreleased]: https://github.com/Shopify/toxiproxy/compare/v2.1.5...HEAD
113+
[2.1.5]: https://github.com/Shopify/toxiproxy/compare/v2.1.4...v2.1.5
114+
[2.1.4]: https://github.com/Shopify/toxiproxy/compare/v2.1.3...v2.1.4
115+
[2.1.3]: https://github.com/Shopify/toxiproxy/compare/v2.1.2...v2.1.3
116+
[2.1.2]: https://github.com/Shopify/toxiproxy/compare/v2.1.1...v2.1.2
117+
[2.1.1]: https://github.com/Shopify/toxiproxy/compare/v2.1.0...v2.1.1
118+
[2.1.0]: https://github.com/Shopify/toxiproxy/compare/v2.0.0...v2.1.0
119+
[2.0.0]: https://github.com/Shopify/toxiproxy/compare/v1.2.1...v2.0.0
120+
[1.2.1]: https://github.com/Shopify/toxiproxy/compare/v1.2.0...v1.2.1
121+
[1.2.0]: https://github.com/Shopify/toxiproxy/compare/v1.1.0...v1.2.0
122+
[1.1.0]: https://github.com/Shopify/toxiproxy/compare/v1.0.3...v1.1.0
123+
[1.0.3]: https://github.com/Shopify/toxiproxy/compare/v1.0.2...v1.0.3
124+
[1.0.2]: https://github.com/Shopify/toxiproxy/compare/v1.0.1...v1.0.2
125+
[1.0.1]: https://github.com/Shopify/toxiproxy/compare/v1.0.0...v1.0.1
126+
[1.0.0]: https://github.com/Shopify/toxiproxy/releases/tag/v1.0.0

README.md

-1
Original file line numberDiff line numberDiff line change
@@ -589,7 +589,6 @@ For example, `shopify_test_redis_master` or `shopify_development_mysql_1`.
589589
1. Ensure this release has run internally for `Shopify/shopify` for at least a
590590
day which is the best fuzzy test for robustness we have.
591591
1. Update `CHANGELOG.md`
592-
1. Bump `VERSION`
593592
1. Change versions in `README.md`
594593
1. Commit, Tag, and Push
595594
1. [Bump version for Homebrew](https://github.com/Shopify/homebrew-shopify/blob/master/toxiproxy.rb#L9)

VERSION

-1
This file was deleted.

0 commit comments

Comments
 (0)