diff --git a/CHANGELOG.md b/CHANGELOG.md index 7dae1f8455e..9e7b44ee1e0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,21 @@ # Changelog +### 1.1.0 + +* [221](https://github.com/nginxinc/kubernetes-ingress/pull/221): Add git commit info to the IC log. +* [220](https://github.com/nginxinc/kubernetes-ingress/pull/220): Update dependencies. +* [213](https://github.com/nginxinc/kubernetes-ingress/pull/213): Add main snippets to allow Main context customization. Thanks to [Dewen Kong](https://github.com/kongdewen). +* [211](https://github.com/nginxinc/kubernetes-ingress/pull/211): Minimize the number of configuration reloads when the Ingress controller starts; fix a problem with endpoints updates for Plus. +* [208](https://github.com/nginxinc/kubernetes-ingress/pull/208): Add worker-shutdown-timeout configmap key. Thanks to [Aleksandr Lysenko](https://github.com/Sarga). +* [199](https://github.com/nginxinc/kubernetes-ingress/pull/199): Add support for Kubernetes ssl-redirect annotation. Thanks to [Luke Seelenbinder](https://github.com/lseelenbinder). +* [194](https://github.com/nginxinc/kubernetes-ingress/pull/194) Add keepalive configmap key and annotation. +* [193](https://github.com/nginxinc/kubernetes-ingress/pull/193): Add worker-cpu-affinity configmap key. +* [192](https://github.com/nginxinc/kubernetes-ingress/pull/192): Add worker-processes configmap key. +* [186](https://github.com/nginxinc/kubernetes-ingress/pull/186): Fix hardcoded controller class. Thanks to [Serhii M](https://github.com/SiriusRed). +* [184](https://github.com/nginxinc/kubernetes-ingress/pull/184): Return a meaningful error when there is no cert and key for the default server. +* Update NGINX version to 1.13.7. +* Makefile updates: golang container was updated to 1.9. + ### 1.0.0 * [175](https://github.com/nginxinc/kubernetes-ingress/pull/175): Add support for JWT for NGINX Plus. diff --git a/examples/complete-example/nginx-ingress-rc.yaml b/examples/complete-example/nginx-ingress-rc.yaml index 7355f035336..979c28195c9 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:1.0.0 + - image: nginxdemos/nginx-ingress:1.1.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 fed10c17fec..4e7142d34cf 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:1.0.0 + - image: nginx-plus-ingress:1.1.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 351425d6565..8504cfe0e3d 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:1.0.0 + - image: nginxdemos/nginx-ingress:1.1.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 4a3c1b04ffe..b7d372ca615 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:1.0.0 + - image: nginx-plus-ingress:1.1.0 imagePullPolicy: Always name: nginx-plus-ingress ports: diff --git a/examples/rbac/nginx-ingress-rc.yaml b/examples/rbac/nginx-ingress-rc.yaml index 2d3eca13f0f..7b982e17a68 100644 --- a/examples/rbac/nginx-ingress-rc.yaml +++ b/examples/rbac/nginx-ingress-rc.yaml @@ -15,7 +15,7 @@ spec: spec: serviceAccountName: nginx-ingress containers: - - image: nginxdemos/nginx-ingress:1.0.0 + - image: nginxdemos/nginx-ingress:1.1.0 imagePullPolicy: Always name: nginx-ingress ports: diff --git a/examples/rbac/nginx-plus-ingress-rc.yaml b/examples/rbac/nginx-plus-ingress-rc.yaml index 7bc4a5a23d0..2f2bc1424ea 100644 --- a/examples/rbac/nginx-plus-ingress-rc.yaml +++ b/examples/rbac/nginx-plus-ingress-rc.yaml @@ -15,7 +15,7 @@ spec: spec: serviceAccountName: nginx-ingress containers: - - image: nginx-plus-ingress:1.0.0 + - image: nginx-plus-ingress:1.1.0 imagePullPolicy: Always name: nginx-plus-ingress ports: diff --git a/nginx-controller/Makefile b/nginx-controller/Makefile index ed86970119f..4dcbe948367 100644 --- a/nginx-controller/Makefile +++ b/nginx-controller/Makefile @@ -1,6 +1,6 @@ all: push -VERSION = 1.0.0 +VERSION = 1.1.0 TAG = $(VERSION) PREFIX = nginxdemos/nginx-ingress