diff --git a/CHANGELOG.md b/CHANGELOG.md index f3b997f682..87b563dab4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +### 0.5.0 + +* Update NGINX version to 1.11.5. +* [64](https://github.com/nginxinc/kubernetes-ingress/pull/64): Add the `nginx.org/rewrites` annotation, which allows to rewrite the URI of a request before sending it to the application. Thanks to [Julian](https://github.com/jmastr). +* [62](https://github.com/nginxinc/kubernetes-ingress/pull/62): Add the `nginx.org/ssl-services` annotation, which allows load balancing of HTTPS applications. Thanks to [Julian](https://github.com/jmastr). + ### 0.4.0 * [54](https://github.com/nginxinc/kubernetes-ingress/pull/54): Previously, when specifying the port of a service in an Ingress rule, you had to use the value of the target port of that port of the service, which was incorrect. Now you must use the port value or the name of the port of the service instead of the target port value. **Note**: Please make necessary changes to your Ingress resources, if ports of your services have different values of the port and the target port fields. diff --git a/examples/complete-example/nginx-ingress-rc.yaml b/examples/complete-example/nginx-ingress-rc.yaml index e466a920ae..e1e213065f 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.4.0 + - image: nginxdemos/nginx-ingress:0.5.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 6ba46b15d0..768de74b9e 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.4.0 + - image: nginx-plus-ingress:0.5.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 82f4aa8252..1304b5967d 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.4.0 + - image: nginxdemos/nginx-ingress:0.5.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 4c3144fe7c..0ab0b632a1 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.4.0 + - image: nginx-plus-ingress:0.5.0 imagePullPolicy: Always name: nginx-plus-ingress ports: diff --git a/nginx-controller/Makefile b/nginx-controller/Makefile index 429710117e..b50ca76993 100644 --- a/nginx-controller/Makefile +++ b/nginx-controller/Makefile @@ -1,6 +1,6 @@ all: push -VERSION = 0.4.0 +VERSION = 0.5.0 TAG = $(VERSION) PREFIX = nginxdemos/nginx-ingress diff --git a/nginx-plus-controller/Makefile b/nginx-plus-controller/Makefile index 67e047f93d..6b96fb1f89 100644 --- a/nginx-plus-controller/Makefile +++ b/nginx-plus-controller/Makefile @@ -1,6 +1,6 @@ all: push -VERSION = 0.4.0 +VERSION = 0.5.0 TAG = $(VERSION) PREFIX =