From 14b87a21f69b02e0ce4b628ea8b8be590c5fa4d6 Mon Sep 17 00:00:00 2001 From: Matthew Weier O'Phinney Date: Fri, 2 Oct 2015 11:11:51 -0500 Subject: [PATCH] Added CHANGELOG for #8 --- CHANGELOG.md | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..c5b368d --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,31 @@ +# Changelog + +All notable changes to this project will be documented in this file, in reverse chronological order by release. + +## 3.0.0 - TBD + +### Added + +- Nothing. + +### Deprecated + +- Nothing. + +### Removed + +- Nothing. + +### Fixed + +- [#8](https://github.com/zendframework/zend-config/pull/8) updates the + code base to work with the v3.0 version of zend-servicemanager. Primarily, this + involved: + - Updating the `AbstractConfigFactory` follow the new + `AbstractFactoryInterface` definition. + - Updating `ReaderPluginManager` and `WriterPluginManager` to follow the + changes to `AbstractPluginManager`. In particular, they now take their + `$invokableClasses` configuration and merge it with the incoming + configuration before delegating to the parent constructor. + - Updating `Factory` to pass an empty `ServiceManager` to the plugin managers + when lazy-loading them.