diff --git a/CHANGELOG.md b/CHANGELOG.md index 9b15a7e..24e286d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ All notable changes to this project will be documented in this file, in reverse chronological order by release. -## 1.3.2 - TBD +## 1.4.0 - 2019-03-13 ### Added @@ -10,7 +10,8 @@ All notable changes to this project will be documented in this file, in reverse ### Changed -- Nothing. +- [#65](https://github.com/zendframework/ZendService_Apple_Apns/pull/65) changes the URI schemes used to push messages from `tls` to `tlsv1.2` due + to a change in TLS versions supported by the endpoints. ### Deprecated diff --git a/composer.json b/composer.json index cd3240d..0ea8311 100755 --- a/composer.json +++ b/composer.json @@ -40,8 +40,8 @@ }, "extra": { "branch-alias": { - "dev-master": "1.3.x-dev", - "dev-develop": "1.4.x-dev" + "dev-master": "1.4.x-dev", + "dev-develop": "1.5.x-dev" } } } diff --git a/src/Apns/Client/Message.php b/src/Apns/Client/Message.php index 3fdd59c..6671f58 100644 --- a/src/Apns/Client/Message.php +++ b/src/Apns/Client/Message.php @@ -30,8 +30,8 @@ class Message extends AbstractClient * @var array */ protected $uris = [ - 'tls://gateway.sandbox.push.apple.com:2195', - 'tls://gateway.push.apple.com:2195', + 'tlsv1.2://gateway.sandbox.push.apple.com:2195', + 'tlsv1.2://gateway.push.apple.com:2195', ]; /**