unitycontainer/unity
This repository contains all relevant information about Unity Container suit
30 Releases
Latest: 6y ago
5.11.6.966Latest
5.11.5.959
5.11.1.847
5.10.3.775
5.10.2.767
5.10.1.762
5.10.0.755
5.9.8.752
5.9.7.742
5.9.6.734
5.9.5.726
5.9.4.724
5.9.2.703
5.9.1.695
5.9.0.689
5.8.13.576
5.8.12.569
5.8.11.537
5.8.9.524
5.8.8.522
5.8.7.517
🐛 Fixed Issues
- [#55](https://github.com/unitycontainer/abstractions/issues/55) - Added support for Net Core 2.0
- [#57](https://github.com/unitycontainer/container/issues/57) - Override loading optimization during resolve
- [#87](https://github.com/unitycontainer/container/issues/87) - Fixed enumerable resolution with regard to generic constraints
- [#88](https://github.com/unitycontainer/container/issues/88) - Fixed edge case where hierarchical containers resolve with overrides
- [#92](https://github.com/unitycontainer/container/issues/92) - Fixed array resolution with regard to generic constraints
- [#94](https://github.com/unitycontainer/container/issues/94) - Minor optimization during resolution
- [#95](https://github.com/unitycontainer/container/issues/95) - Fixed bug related to resolving registered array
- [#96](https://github.com/unitycontainer/container/issues/96) - Fixed bug related to resolving registered enumerable
- + 1 more
5.8.6.508
5.8.5.506
5.8.4.502
5.8.3.499
5.8.2.496
📦 Minor optimizations
- Fixed #211
5.8.1.490
5.8.0.488
📦 This release
- This release fixes [#72](https://github.com/unitycontainer/container/issues/72) issue.
📦 Problem
- ```C#
- container.Resolve<Lazy<IEnumenrable<type>>> - will resolve correctly
- container.Resolve<IEnumenrable<Lazy<type>>> - will resolve empty
- ```
🐛 Fix
- This release fixes resolution of collections of generic and array types and Lazy collections of items. This will now work fine:
- ```C#
- Resolve<Lazy<IEnumenrable<type>>>
- Resolve<IEnumenrable<Lazy<type>>>
- Resolve<Lazy<type[]>>
- Resolve<Lazy<type>[]>
- Resolve<IEnumerable<Lazy<Func<IService>>>>()
- Resolve<IEnumerable<Func<Lazy<IService>>>>()
- + 24 more
5.7.4.485
💥 This release was rolled back because of breaking changes
- See v5.8.0 for the new release
5.7.3.481
