Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 0.5.0 #74

Merged
merged 3 commits into from
Feb 24, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## 0.5.0 (February 24, 2021)

IMPROVEMENTS:

* Add InService option for AWS [#39](https://github.com/nginxinc/nginx-asg-sync/pull/39)
* Update log format [#42](https://github.com/nginxinc/nginx-asg-sync/pull/42)

## 0.4-1 (November 22, 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.5.0) unstable; urgency=low
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

what would be the version reported by dpkg -I <name>.deb command?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Version: 0.5.0


* Add InService option for AWS
* Update log format

-- Luca Comellini <luca@nginx.com> Wed, 24 Feb 2021 07:55:53 -0800

nginx-asg-sync (0.4-1) unstable; urgency=low

* 0.4-1
Expand Down
19 changes: 9 additions & 10 deletions build/package/rpm/SPECS/nginx-asg-sync.spec
Original file line number Diff line number Diff line change
Expand Up @@ -110,26 +110,25 @@ if [ $1 -ge 1 ]; then
fi

%changelog
* Fri Nov 22 2019 Raul Marrero <raul.marrero@nginx.com>
- 0.4-1
* Wed Feb 24 2021 Luca Comellini <luca@nginx.com> - 0.5.0
- Add InService option for AWS
lucacome marked this conversation as resolved.
Show resolved Hide resolved
- Update log format

* 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
* Wed Sep 4 2019 Raul Marrero <raul.marrero@nginx.com> - 0.3-1
- Add support for Azure Virtual Machine Scale Sets

* Fri Jul 27 2018 Peter Kelly <peter.kelly@nginx.com>
- 0.2-1
* Fri Jul 27 2018 Peter Kelly <peter.kelly@nginx.com> - 0.2-1
- Add supporting guides for contributing and changelog
- Update package layout
- Use new NGINX Plus API

* Wed Aug 30 2017 Michael Pleshakov <michael@nginx.com>
- 0.1-2
* Wed Aug 30 2017 Michael Pleshakov <michael@nginx.com> - 0.1-2
- Make sure nginx-asg-sync works with NGINX Plus R13

* Fri Mar 03 2017 Michael Pleshakov <michael@nginx.com>
- 0.1-1
* Fri Mar 03 2017 Michael Pleshakov <michael@nginx.com> - 0.1-1
- First release
2 changes: 1 addition & 1 deletion cmd/sync/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import (
var (
configFile = flag.String("config_path", "/etc/nginx/config.yaml", "Path to the config file")
logFile = flag.String("log_path", "", "Path to the log file. If the file doesn't exist, it will be created")
version = "0.4-1"
version = "0.5.0"
)

const connTimeoutInSecs = 10
Expand Down