diff --git a/CHANGELOG.md b/CHANGELOG.md index da6dd44c123..6acde9ddf9c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +### 0.8.0 + +* [117](https://github.com/nginxinc/kubernetes-ingress/pull/117): Add a customization option: location-snippets, server-snippets and http-snippets. Thanks to [rchicoli +](https://github.com/rchicoli). +* [116](https://github.com/nginxinc/kubernetes-ingress/pull/116): Add support for the 301 redirect to https based on the `http_x_forwarded_proto` header. Thanks to [Chris](https://github.com/cwhenderson20). +* Update NGINX version to 1.11.13. +* Makefile updates: gcloud docker push command; golang container was updated to 1.8. +* Documentation fixes: [113](https://github.com/nginxinc/kubernetes-ingress/pull/113). Thanks to [Linus Lewandowski](https://github.com/LEW21). + ### 0.7.0 * [108](https://github.com/nginxinc/kubernetes-ingress/pull/108): Support for the `server_tokens` directive via the annotation and in the configmap. Thanks to [David Radcliffe](https://github.com/dwradcliffe). diff --git a/examples/complete-example/nginx-ingress-rc.yaml b/examples/complete-example/nginx-ingress-rc.yaml index 1b7a131ce29..81b8133c435 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.7.0 + - image: nginxdemos/nginx-ingress:0.8.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 4b1f571ce27..93ffd836f69 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.7.0 + - image: nginx-plus-ingress:0.8.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 9d0124ee39e..4c37b6e3fc2 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.7.0 + - image: nginxdemos/nginx-ingress:0.8.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 e1d50ba5c5f..01af2e3a4ad 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.7.0 + - image: nginx-plus-ingress:0.8.0 imagePullPolicy: Always name: nginx-plus-ingress ports: diff --git a/nginx-controller/Makefile b/nginx-controller/Makefile index c5a82744a38..d69a12283e4 100644 --- a/nginx-controller/Makefile +++ b/nginx-controller/Makefile @@ -1,6 +1,6 @@ all: push -VERSION = 0.7.0 +VERSION = 0.8.0 TAG = $(VERSION) PREFIX = nginxdemos/nginx-ingress diff --git a/nginx-plus-controller/Makefile b/nginx-plus-controller/Makefile index 2587f116157..388c38dd2f2 100644 --- a/nginx-plus-controller/Makefile +++ b/nginx-plus-controller/Makefile @@ -1,6 +1,6 @@ all: push -VERSION = 0.7.0 +VERSION = 0.8.0 TAG = $(VERSION) PREFIX =