From 38405974e029430f88e544a2fd24f4d969fbf824 Mon Sep 17 00:00:00 2001 From: Michael Pleshakov Date: Fri, 25 Nov 2016 01:02:06 +0300 Subject: [PATCH] Release 0.6.0 --- CHANGELOG.md | 10 ++++++++++ examples/complete-example/nginx-ingress-rc.yaml | 2 +- examples/complete-example/nginx-plus-ingress-rc.yaml | 2 +- examples/daemon-set/nginx-ingress.yaml | 2 +- examples/daemon-set/nginx-plus-ingress.yaml | 2 +- nginx-controller/Makefile | 2 +- nginx-plus-controller/Makefile | 2 +- 7 files changed, 16 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 87b563dab4..3ea2c16ab3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +### 0.6.0 + +* [75](https://github.com/nginxinc/kubernetes-ingress/pull/75): Add the HSTS settings in the configmap and annotations. Thanks to [Nico Schieder](https://github.com/thetechnick). +* [74](https://github.com/nginxinc/kubernetes-ingress/pull/74): Fix the issue of the `kubernetes.io/ingress.class` annotation handling. Thanks to [Tang Le](https://github.com/tangle329). +* [70](https://github.com/nginxinc/kubernetes-ingress/pull/70): Add support for the alpine-based image for the NGINX controller. +* [68](https://github.com/nginxinc/kubernetes-ingress/pull/68): Support for proxy-buffering settings in the configmap and annotations. Thanks to [Mark Daniel Reidel](https://github.com/df-mreidel). +* [66](https://github.com/nginxinc/kubernetes-ingress/pull/66): Support for custom log-format in the configmap. Thanks to [Mark Daniel Reidel](https://github.com/df-mreidel). +* [65](https://github.com/nginxinc/kubernetes-ingress/pull/65): Add HTTP/2 as an option in the configmap and annotations. Thanks to [Nico Schieder](https://github.com/thetechnick). +* The NGINX Plus controller image is now based on Ubuntu Xenial. + ### 0.5.0 * Update NGINX version to 1.11.5. diff --git a/examples/complete-example/nginx-ingress-rc.yaml b/examples/complete-example/nginx-ingress-rc.yaml index e1e213065f..3fa8855b94 100644 --- a/examples/complete-example/nginx-ingress-rc.yaml +++ b/examples/complete-example/nginx-ingress-rc.yaml @@ -14,7 +14,7 @@ spec: app: nginx-ingress spec: containers: - - image: nginxdemos/nginx-ingress:0.5.0 + - image: nginxdemos/nginx-ingress:0.6.0 imagePullPolicy: Always name: nginx-ingress ports: diff --git a/examples/complete-example/nginx-plus-ingress-rc.yaml b/examples/complete-example/nginx-plus-ingress-rc.yaml index 768de74b9e..0ea05f0264 100644 --- a/examples/complete-example/nginx-plus-ingress-rc.yaml +++ b/examples/complete-example/nginx-plus-ingress-rc.yaml @@ -14,7 +14,7 @@ spec: app: nginx-plus-ingress spec: containers: - - image: nginx-plus-ingress:0.5.0 + - image: nginx-plus-ingress:0.6.0 imagePullPolicy: Always name: nginx-plus-ingress ports: diff --git a/examples/daemon-set/nginx-ingress.yaml b/examples/daemon-set/nginx-ingress.yaml index 1304b5967d..71685684b0 100644 --- a/examples/daemon-set/nginx-ingress.yaml +++ b/examples/daemon-set/nginx-ingress.yaml @@ -11,7 +11,7 @@ spec: # nodeSelector: # role: nginx-ingress containers: - - image: nginxdemos/nginx-ingress:0.5.0 + - image: nginxdemos/nginx-ingress:0.6.0 imagePullPolicy: Always name: nginx-ingress ports: diff --git a/examples/daemon-set/nginx-plus-ingress.yaml b/examples/daemon-set/nginx-plus-ingress.yaml index 0ab0b632a1..9293e3d8d3 100644 --- a/examples/daemon-set/nginx-plus-ingress.yaml +++ b/examples/daemon-set/nginx-plus-ingress.yaml @@ -11,7 +11,7 @@ spec: # nodeSelector: # role: nginx-ingress containers: - - image: nginx-plus-ingress:0.5.0 + - image: nginx-plus-ingress:0.6.0 imagePullPolicy: Always name: nginx-plus-ingress ports: diff --git a/nginx-controller/Makefile b/nginx-controller/Makefile index cb6f4d3706..f2b128518a 100644 --- a/nginx-controller/Makefile +++ b/nginx-controller/Makefile @@ -1,6 +1,6 @@ all: push -VERSION = 0.5.0 +VERSION = 0.6.0 TAG = $(VERSION) PREFIX = nginxdemos/nginx-ingress diff --git a/nginx-plus-controller/Makefile b/nginx-plus-controller/Makefile index 6b96fb1f89..884d7b7d57 100644 --- a/nginx-plus-controller/Makefile +++ b/nginx-plus-controller/Makefile @@ -1,6 +1,6 @@ all: push -VERSION = 0.5.0 +VERSION = 0.6.0 TAG = $(VERSION) PREFIX =