Based on https://github.com/zendframework/zend-form/releases/tag/release-2.10.1 (commit f127ec04c4f27150454f0fbf12757e8dbaa9fa07 in this repo)
Added
-----
- Nothing.
Deprecated
----------
- Nothing.
Removed
-------
- Nothing.
Fixed
-----
- [zendframework/zend-form#134](https://github.com/zendframework/zend-form/pull/134) fixes how the
`FormElementManager` handles invokable classes when the `autoAddInvokableClass`
flag is enabled. Previously, it used the built-in utilities from
laminas-servicemanager, but now correctly uses its own `setInvokableClass()`
method, which forces usage of the `ElementFactory` for such classes, and thus
ensures the name and options are passed to the element constructor.
- [zendframework/zend-form#136](https://github.com/zendframework/zend-form/pull/136) fixes how error
messages are provided when an element uses a required `ArrayInput`, but no
values are submitted. Previously, no messages were returned; now they are.
- [zendframework/zend-form#156](https://github.com/zendframework/zend-form/pull/156) fixes how elements
that act as `InputProvider`s are merged into parent `CollectionInputFilter`s;
previously, forms did not check if the element was in the target input filter
composed in a `CollectionInputFilter`, leading to duplicate elements with
varying behavior; now the inputs are correctly merged.