updated-packages
This commit is contained in:
@@ -1,5 +1,3 @@
|
||||
sudo: false
|
||||
|
||||
language: php
|
||||
|
||||
matrix:
|
||||
@@ -10,6 +8,7 @@ matrix:
|
||||
env:
|
||||
- CS_CHECK=true
|
||||
- php: 7.2
|
||||
- php: 7.3
|
||||
|
||||
before_install:
|
||||
- composer install --no-interaction
|
||||
|
||||
@@ -2,6 +2,74 @@
|
||||
|
||||
All notable changes to this project will be documented in this file, in reverse chronological order by release.
|
||||
|
||||
## 1.4.1 - 2019-03-14
|
||||
|
||||
### Added
|
||||
|
||||
- Nothing.
|
||||
|
||||
### Changed
|
||||
|
||||
- Nothing.
|
||||
|
||||
### Deprecated
|
||||
|
||||
- Nothing.
|
||||
|
||||
### Removed
|
||||
|
||||
- Nothing.
|
||||
|
||||
### Fixed
|
||||
|
||||
- [#66](https://github.com/zendframework/ZendService_Apple_Apns/pull/66) fixes the schemes used for feedback notification URLs, to ensure they
|
||||
reference `tlsv1.2` specifically.
|
||||
|
||||
## 1.4.0 - 2019-03-13
|
||||
|
||||
### Added
|
||||
|
||||
- Nothing.
|
||||
|
||||
### Changed
|
||||
|
||||
- [#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
|
||||
|
||||
- Nothing.
|
||||
|
||||
### Removed
|
||||
|
||||
- Nothing.
|
||||
|
||||
### Fixed
|
||||
|
||||
- Nothing.
|
||||
|
||||
## 1.3.1 - 2019-02-07
|
||||
|
||||
### Added
|
||||
|
||||
- [#64](https://github.com/zendframework/ZendService_Apple_Apns/pull/64) adds support for PHP 7.3.
|
||||
|
||||
### Changed
|
||||
|
||||
- Nothing.
|
||||
|
||||
### Deprecated
|
||||
|
||||
- Nothing.
|
||||
|
||||
### Removed
|
||||
|
||||
- Nothing.
|
||||
|
||||
### Fixed
|
||||
|
||||
- Nothing.
|
||||
|
||||
## 1.3.0 - 2018-05-08
|
||||
|
||||
### Added
|
||||
|
||||
0
vendor/zendframework/zendservice-apple-apns/LICENSE.md
vendored
Normal file → Executable file
0
vendor/zendframework/zendservice-apple-apns/LICENSE.md
vendored
Normal file → Executable file
0
vendor/zendframework/zendservice-apple-apns/README.md
vendored
Normal file → Executable file
0
vendor/zendframework/zendservice-apple-apns/README.md
vendored
Normal file → Executable file
4
vendor/zendframework/zendservice-apple-apns/composer.json
vendored
Normal file → Executable file
4
vendor/zendframework/zendservice-apple-apns/composer.json
vendored
Normal file → Executable file
@@ -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"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
0
vendor/zendframework/zendservice-apple-apns/phpunit.xml.dist
vendored
Normal file → Executable file
0
vendor/zendframework/zendservice-apple-apns/phpunit.xml.dist
vendored
Normal file → Executable file
@@ -23,8 +23,8 @@ class Feedback extends AbstractClient
|
||||
* @var array
|
||||
*/
|
||||
protected $uris = [
|
||||
'tls://feedback.sandbox.push.apple.com:2196',
|
||||
'tls://feedback.push.apple.com:2196'
|
||||
'tlsv1.2://feedback.sandbox.push.apple.com:2196',
|
||||
'tlsv1.2://feedback.push.apple.com:2196'
|
||||
];
|
||||
|
||||
/**
|
||||
|
||||
@@ -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',
|
||||
];
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user