Skip to content

Commit 5512c43

Browse files
committed
Update changelog for 1.2.0
1 parent 1524db0 commit 5512c43

File tree

2 files changed

+71
-39
lines changed

2 files changed

+71
-39
lines changed

AUTHORS

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
Abdelouahed Haitoute
22
Adam Lavin
3+
Alexandre Garcia
34
Anthony ARNAUD
45
Ben Kaehne
56
Ben Webber
@@ -10,14 +11,22 @@ Florian Wolpert
1011
Hany Fahim
1112
Jon Hatalla
1213
Lucas CHERIFI
14+
Mathieu MD
15+
Maxime Brunet
16+
Nathaniel
1317
Nathaniel Schweinberg
1418
Nicolas Noirbent
19+
Olivier Locard
1520
Pierre Buyle
1621
Pierre Paul Lefebvre
1722
Pieter Lexis
1823
R. Daneel Olivaw
1924
Rafe Colton
25+
Rémi Nectoux
26+
Sander Klein
2027
Scott Robertson
28+
Sebastian Schmidt
2129
Sergei Antipov
30+
Stuart Williams
2231
Travis Truman
2332
Tuyen Dinh

CHANGELOG.md

Lines changed: 62 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -1,58 +1,75 @@
11
# ansible-haproxy change log
22

3-
## 2.x (unreleased)
3+
## [Unreleased]
4+
5+
## [1.2.0] (2017-11-28)
46

57
### Added
68

7-
* [#78] Added support for Alpine Linux. Thanks, **[\@roedie]**!
8-
* [#89] Added ACLs to backend. Thanks, **[\@aarnaud]**!
9+
* [#59] Added `tune` parameters to `global` section.
10+
* [#69] Enabled `backports` repository for Debian Squeeze and Jessie.
11+
* [#78] Added support for Alpine Linux.
12+
* [#89] Added ACLs to backend.
13+
* [#83] Added global SSL options.
14+
* [#95] Added `reqrep` to `backend` section.
15+
* [#98] Added `cookie` to all proxy sections.
16+
* [#99] Added `reqadd`, `rspadd`, `reqrep`, `reqirep`, `rsprep`, `rspirep` to all proxy sections.
17+
* [#100] Added support for `resolvers`.
18+
* [#101] Added `maxconn` support in `listen` section.
19+
* [#102] Added support for `force-persist`.
920

1021
### Changed
1122

23+
* [#51] Made `haproxy.defaults.log.facility` optional.
1224
* [#71] This role no longer elevates permissions itself. Set `become` at the playbook level.
13-
* [#85] The default TLS configuration earns an A from SSL Labs. Thanks, **[\@reminec]**!
25+
* [#80] Use `package` module to install HAProxy.
26+
* [#85] The default TLS configuration earns an A from SSL Labs.
27+
* [#93] Support check mode for all install tasks.
28+
* [#94] Validate configuration file syntax.
1429

1530
### Fixed
1631

17-
* [#68] Configuration file changes are now idempotent. This role will not restart HAProxy if no configuration files change. Thanks, **[\@aarnaud]**!
32+
* [#68] Configuration file changes are now idempotent. This role will not restart HAProxy if no configuration files change.
33+
* [#84] Fixed indentation for some options.
34+
* [#94] Install HAProxy from backports repositories.
35+
* [#96] Ignore Python bytecode.
36+
* [#97] Fix Ubuntu detection.
1837

1938
### Removed
2039

2140
* [#54] Removed support for SmartOS.
2241

23-
## 1.1.0 (2017-04-11)
42+
## [1.1.0] (2017-04-11)
2443

2544
### Added
2645

2746
* [#29] Added timeout settings for `backend`, `frontend`, and `listen` sections.
28-
* [#32] Added 503 to default list of `errorfile`s. Thanks, **[\@nathanielks]**!
29-
* [#52] Added `mode` to `listen` section. Thanks, **[\@dekhtyarev]**!
30-
* [#59] Added `tune` parameters to `global` section.
31-
* [#61] Enabled configuring the stats interface to listen on a dedicated address. Thanks, **[\@fw8]**!
32-
* [#62] Added `ssl-default-bind-ciphers` and `ssl-default-bind-options` to `global` section Thanks, **[\@fw8]**!
33-
* [#63] Added `reqadd` and `rspadd` to `frontend` section Thanks, **[\@fw8]**!
34-
* [#64] Added `errorfile` to `backend` section. Thanks, **[\@fw8]**!
35-
* [#69] Added `reqrep`, `reqirep`, `rsprep`, and `rspirep` to `frontend` section. Thanks, **[\@hany]**!
36-
* [#69] Enabled `backports` repository for Debian Squeeze and Jessie.
37-
* [#70] Added `capture` to `frontend` and `http-response` to `backend` and `frontend` sections. Thanks, **[\@hany]**!
38-
* [#72] Added `appsession` to `backend` and `listen`. Thanks, **[\@fw8]**!
39-
40-
### Changed
41-
42-
* [#51] Made `haproxy.defaults.log.facility` optional.
47+
* [#32] Added 503 to default list of `errorfile`s.
48+
* [#52] Added `mode` to `listen` section.
49+
* [#61] Enabled configuring the stats interface to listen on a dedicated address.
50+
* [#62] Added `ssl-default-bind-ciphers` and `ssl-default-bind-options` to `global` section
51+
* [#63] Added `reqadd` and `rspadd` to `frontend` section
52+
* [#64] Added `errorfile` to `backend` section.
53+
* [#69] Added `reqrep`, `reqirep`, `rsprep`, and `rspirep` to `frontend` section.
54+
* [#70] Added `capture` to `frontend` and `http-response` to `backend` and `frontend` sections.
55+
* [#72] Added `appsession` to `backend` and `listen`.
4356

4457
### Fixed
4558

46-
* [#34] Fixed whitespace in `frontend` template. Thanks, **[\@noirbee]**!
59+
* [#34] Fixed whitespace in `frontend` template.
4760
* [#47] Fixed bug evaluating EPEL check in check mode.
48-
* [#48] Fixed deprecation warnings for Ansible 2.x. Thanks, **[\@UnderGreen]**!
61+
* [#48] Fixed deprecation warnings for Ansible 2.x.
4962
* [#65] Set default values for configuration lists to avoid `with_items`/`when` conflict.
50-
* [#66] Fixed typos in variable examples. Thanks, **[\@clwells]**!
51-
* [#67] Removed duplicate `http-request` in `frontend` section. Thanks, **[\@clwells]**!
63+
* [#66] Fixed typos in variable examples.
64+
* [#67] Removed duplicate `http-request` in `frontend` section.
5265
* [#73] Fixed `http-check` typos in `listen` template.
5366

5467
---
5568

69+
[1.1.0]: https://github.com/devops-coop/ansible-haproxy/compare/1.0...v1.1.0
70+
[1.2.0]: https://github.com/devops-coop/ansible-haproxy/compare/v1.1.0...v1.2.0
71+
[Unreleased]: https://github.com/devops-coop/ansible-haproxy/compare/v.1.20...
72+
5673
[#29]: https://github.com/devops-coop/ansible-haproxy/issues/29
5774
[#32]: https://github.com/devops-coop/ansible-haproxy/issues/32
5875
[#34]: https://github.com/devops-coop/ansible-haproxy/issues/34
@@ -73,19 +90,25 @@
7390
[#69]: https://github.com/devops-coop/ansible-haproxy/issues/69
7491
[#70]: https://github.com/devops-coop/ansible-haproxy/issues/70
7592
[#71]: https://github.com/devops-coop/ansible-haproxy/issues/71
76-
[#72]: https://github.com/devops-coop/ansible-haproxy/issues/72
7793
[#73]: https://github.com/devops-coop/ansible-haproxy/issues/73
7894
[#78]: https://github.com/devops-coop/ansible-haproxy/issues/78
79-
[#85]: https://github.com/devops-coop/ansible-haproxy/issues/85
80-
[#89]: https://github.com/devops-coop/ansible-haproxy/issues/89
81-
[\@UnderGreen]: https://github.com/UnderGreen
82-
[\@aarnaud]: https://github.com/aarnaud
83-
[\@clwells]: https://github.com/clwells
84-
[\@dekhtyarev]: https://github.com/dekhtyarev
85-
[\@fw8]: https://github.com/fw8
86-
[\@hany]: https://github.com/hany
87-
[\@nathanielks]: https://github.com/nathanielks
88-
[\@noirbee]: https://github.com/noirbee
89-
[\@onitake]: https://github.com/onitake
90-
[\@reminec]: https://github.com/reminec
91-
[\@roedie]: https://github.com/roedie
95+
[#79]: https://github.com/devops-coop/ansible-haproxy/issues/79
96+
[#80]: https://github.com/devops-coop/ansible-haproxy/issues/80
97+
[#83]: https://github.com/devops-coop/ansible-haproxy/issues/83
98+
[#84]: https://github.com/devops-coop/ansible-haproxy/issues/84
99+
[#90]: https://github.com/devops-coop/ansible-haproxy/issues/90
100+
[#96]: https://github.com/devops-coop/ansible-haproxy/issues/96
101+
102+
[#72]: https://github.com/devops-coop/ansible-haproxy/pulls/72
103+
[#85]: https://github.com/devops-coop/ansible-haproxy/pulls/85
104+
[#89]: https://github.com/devops-coop/ansible-haproxy/pulls/89
105+
[#91]: https://github.com/devops-coop/ansible-haproxy/pulls/91
106+
[#93]: https://github.com/devops-coop/ansible-haproxy/pulls/93
107+
[#94]: https://github.com/devops-coop/ansible-haproxy/pulls/94
108+
[#95]: https://github.com/devops-coop/ansible-haproxy/pulls/95
109+
[#97]: https://github.com/devops-coop/ansible-haproxy/pulls/97
110+
[#98]: https://github.com/devops-coop/ansible-haproxy/pulls/98
111+
[#99]: https://github.com/devops-coop/ansible-haproxy/pulls/99
112+
[#100]: https://github.com/devops-coop/ansible-haproxy/pulls/100
113+
[#101]: https://github.com/devops-coop/ansible-haproxy/pulls/101
114+
[#102]: https://github.com/devops-coop/ansible-haproxy/pulls/102

0 commit comments

Comments
 (0)