This repository has been archived by the owner on Jan 30, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
3 changed files
with
74 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file, in reverse chronological order by release. | ||
|
||
## 2.5.2 - TBD | ||
|
||
### Added | ||
|
||
- [#2](https://github.com/zendframework/zend-log/pull/2) adds | ||
the ability to specify the mail transport via the configuration options for a | ||
mail log writer, using the same format supported by | ||
`Zend\Mail\Transport\Factory::create()`; as an example: | ||
|
||
```php | ||
$writer = new MailWriter([ | ||
'mail' => [ | ||
// message options | ||
], | ||
'transport' => [ | ||
'type' => 'smtp', | ||
'options' => [ | ||
'host' => 'localhost', | ||
], | ||
], | ||
]); | ||
``` | ||
|
||
### Deprecated | ||
|
||
- Nothing. | ||
|
||
### Removed | ||
|
||
- [#43](https://github.com/zendframework/zend-diactoros/pull/43) removed both | ||
`ServerRequestFactory::marshalUri()` and `ServerRequestFactory::marshalHostAndPort()`, | ||
which were deprecated prior to the 1.0 release. | ||
|
||
### Fixed | ||
|
||
- Nothing. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters