Skip to content

Commit 1935ead

Browse files
Raul MarreroRulox
Raul Marrero
authored andcommitted
Release 0.4-1
1 parent 380e268 commit 1935ead

File tree

4 files changed

+23
-2
lines changed

4 files changed

+23
-2
lines changed

Diff for: CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## 0.4-1 (November 22, 2019)
2+
3+
IMPROVEMENTS:
4+
5+
* Add support to set upstream server parameters: `max_conns`, `max_fails`, `fail_timeout` and `slow_start` in the configuration file. https://github.com/nginxinc/nginx-asg-sync/pull/33
6+
* Add support to use wildcards in the names of AWS Auto Scaling groups. https://github.com/nginxinc/nginx-asg-sync/pull/29/
7+
* Allow nginx-asg-sync to detect the region where it is running (use `region: self` in the configuration file). https://github.com/nginxinc/nginx-asg-sync/pull/27
8+
19
## 0.3-1 (September 4, 2019)
210

311
IMPROVEMENTS:

Diff for: build/package/debian/changelog

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
nginx-asg-sync (0.4-1-%%CODENAME%%) unstable; urgency=low
2+
3+
* 0.4-1
4+
* Add support to set upstream server parameters (max_conns, max_fails, fail_timeout and slow_start)
5+
* Add support to use wildcards in AWS autoscaling groups
6+
* Allow to use the same AWS region as the instance where the nginx-asg-sync is running
7+
18
nginx-asg-sync (0.3-1-%%CODENAME%%) unstable; urgency=low
29

310
* 0.3-1

Diff for: build/package/rpm/SPECS/nginx-asg-sync.spec

+7-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
Summary: NGINX Plus Integration with Cloud Autoscaling
55
Name: nginx-asg-sync
6-
Version: 0.3
6+
Version: 0.4
77
Release: 1%{?dist}
88
Vendor: Nginx Software, Inc.
99
URL: https://github.com/nginxinc/nginx-asg-sync
@@ -110,6 +110,12 @@ if [ $1 -ge 1 ]; then
110110
fi
111111

112112
%changelog
113+
* Fri Nov 22 2019 Raul Marrero <[email protected]>
114+
- 0.4-1
115+
- Add support to set upstream server parameters (max_conns, max_fails, fail_timeout and slow_start)
116+
- Add support to use wildcards in AWS autoscaling groups
117+
- Allow to use the same AWS region as the instance where the nginx-asg-sync is running
118+
113119
* Wed Sep 4 2019 Raul Marrero <[email protected]>
114120
- 0.3-1
115121
- Add support for Azure Virtual Machine Scale Sets

Diff for: cmd/sync/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import (
1717

1818
var configFile = flag.String("config_path", "/etc/nginx/config.yaml", "Path to the config file")
1919
var logFile = flag.String("log_path", "", "Path to the log file. If the file doesn't exist, it will be created")
20-
var version = "0.3-1"
20+
var version = "0.4-1"
2121

2222
const connTimeoutInSecs = 10
2323

0 commit comments

Comments
 (0)