Skip to content
This repository has been archived by the owner on Dec 7, 2019. It is now read-only.

Commit

Permalink
Merging develop to master in preparation for 1.4.0 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
weierophinney committed Mar 13, 2019
2 parents 5e671eb + 36966cf commit 7a009fb
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,16 @@

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

- Nothing.

### 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

Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
}
}
4 changes: 2 additions & 2 deletions src/Apns/Client/Message.php
Original file line number Diff line number Diff line change
Expand Up @@ -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',
];

/**
Expand Down

0 comments on commit 7a009fb

Please sign in to comment.