Skip to content

Commit

Permalink
Release 0.4-1
Browse files Browse the repository at this point in the history
  • Loading branch information
Raul Marrero authored and Rulox committed Nov 25, 2019
1 parent 380e268 commit 1935ead
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 2 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## 0.4-1 (November 22, 2019)

IMPROVEMENTS:

* 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
* Add support to use wildcards in the names of AWS Auto Scaling groups. https://github.com/nginxinc/nginx-asg-sync/pull/29/
* 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

## 0.3-1 (September 4, 2019)

IMPROVEMENTS:
Expand Down
7 changes: 7 additions & 0 deletions build/package/debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
nginx-asg-sync (0.4-1-%%CODENAME%%) unstable; urgency=low

* 0.4-1
* Add support to set upstream server parameters (max_conns, max_fails, fail_timeout and slow_start)
* Add support to use wildcards in AWS autoscaling groups
* Allow to use the same AWS region as the instance where the nginx-asg-sync is running

nginx-asg-sync (0.3-1-%%CODENAME%%) unstable; urgency=low

* 0.3-1
Expand Down
8 changes: 7 additions & 1 deletion build/package/rpm/SPECS/nginx-asg-sync.spec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

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

%changelog
* Fri Nov 22 2019 Raul Marrero <raul.marrero@nginx.com>
- 0.4-1
- Add support to set upstream server parameters (max_conns, max_fails, fail_timeout and slow_start)
- Add support to use wildcards in AWS autoscaling groups
- Allow to use the same AWS region as the instance where the nginx-asg-sync is running

* Wed Sep 4 2019 Raul Marrero <raul.marrero@nginx.com>
- 0.3-1
- Add support for Azure Virtual Machine Scale Sets
Expand Down
2 changes: 1 addition & 1 deletion cmd/sync/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import (

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

const connTimeoutInSecs = 10

Expand Down

0 comments on commit 1935ead

Please sign in to comment.