All Versions
30
Latest Version
Avg Release Cycle
15 days
Latest Release
1467 days ago
Changelog History
Page 3
Changelog History
Page 3
-
v4.1.0 Changes
January 20, 2020๐ v4.1.0 Feature release
Highlights
- ๐ Better memory use and massively improved performance for the real-world applications - big object graphs and the unit-of-work scenarios. See the updated benchmark results in [readme.md].(https://github.com/dadhi/DryIoc/blob/master/README.md#creating-the-container-registering-the-services-then-opening-a-scope-and-resolving-the-scoped-service-eg-controller-for-the-first-time))
- ๐ Improve parallelism / reduce thread blocking #137
- ๐ Full and fast DryIoc own Interpretation support via
Rules.WithUseInterpretation()
- useful for iOS and other platforms without compilation support #90 - โ Add DryIocZero capabilities to the DryIoc source package #101
- Copied DryIoc sample project from the MediatR but with DryIoc.Messages #117
๐ Features
- Interpretation only option #90
- โ Add RegisterDelegate with the list of dependencies to Inject and not to Resolve #147
- Lift restrictions for Scope disposal when using ambient ScopeContext #168
- ๐ FactoryDelegate wrapper support #191
- โ Add Rules.UseDecorateeReuseForDecorators #201
๐ Fixes
- Resolving a component for the second time throws #130
- ๐ป Stackoverflow exception #139
- ๐ Xamarin Forms iOS: Operation is not supported on this platform. #156
- DryIoc 4.0.5 withoutFastExpressionCompiler deadlock issue #157
- Rules.WithDependencyDepthToSplitObjectGraph is not propagated through most of
Rules.With
methods #163 - Rules.WithDependencyDepthToSplitObjectGraph was not applied in some cases with Decorators in graph #164
- Made.Of() Parameters don't follow Reuse setting #179
- ThreadScopeContext not working in DryIoc.dll 4.1.0-preview-02? #183
- ReflectionTools methods unexpectedly return static constructors #184
- Container creates multiple instances if TryInterpret fails #188
- Open-generic implementation may be wrongly considered for service with many type args #190
- DryIOC new Transient Disposable #192
- Private and public Constructors in generic classes #196
- ๐ Fix documentation regarding implicitly injected scope as IDisposable #197
- Open generics resolve fails if there is a static constructor #198
- ๐ป 4.1.0 Unhandled Exception: System.NullReferenceException: Object reference not set to an instance of an object. #205
- Avoid wasteful compilation of the same cached expression by multiple threads #208
-
v4.1.0-preview
August 21, 2019 -
v4.0.7 Changes
September 04, 2019๐ v4.0.6 Bug-fix release
- ๐ fixed: #173 Validate-Method throws System.TypeInitializationException : The type initializer for 'DryIoc.OpenGenericTypeKey' threw an exception.
-
v4.0.6 Changes
August 29, 2019๐ v4.0.6 Bug-fix release
- ๐ fixed: #171
-
v4.0.5 Changes
June 08, 2019 -
v4.0.4 Changes
May 01, 2019DryIoc v4.0.4 Bug-fix version
- ๐ fixed: #116: DryIoc Resolve with decorators goes wrong for parallel execution
- ๐ fixed: #119: v4.0.3 packages were targeting only .NET 4.5 and .NET Standard 2.0
- ๐ fixed: #120: V4.0.3 double dryioc break the build
- ๐ fixed: #121: FastExpressionCompiler.cs and Expression.cs code comment out in .NetFramework 4.7
- ๐ fixed: #124: Stackoverflow exception 4.0.3
-
v4.0.3 Changes
April 10, 2019DryIoc v4.0.3 Bug-fix version
DryIoc.Microsoft.DepenencyInjection v3.0.3
- โ removed: conflicting support for ASP .Net Core 2.1 and moving it into the separate package DryIoc.Microsoft.DependencyInjection.AspNetCore2_1
DryIoc.Microsoft.DependencyInjection.AspNetCore2_1 v3.0.3
- ๐ฆ removing conflicting support for ASP .Net Core 2.1 and moving it into the separate package DryIoc.Microsoft.DependencyInjection.AspNetCore2_1
-
v4.0.2 Changes
March 30, 2019DryIoc v4.0.2 Bug-fix version
- ๐ fixed: #100: ResolveMany with Meta does NOT work but collection with Meta does work
DryIoc.Microsoft.DepenencyInjection.src v3.0.1
A source package with .NET Standard 2.0 only support
-
v4.0.1 Changes
March 28, 2019DryIoc v4.0.1 Bug-fix version
- โ added: #95: Serializable ContainerException for supported targets
- ๐ fixed: #85 To avoid issues with code analyzers when this file is used in NuGet
- ๐ fixed: #97: Resolving last registration from multiple default services bug
- ๐ fixed: #89: DryIoC.CommonServiceLocator.dll package out-of-date link
DryIoc.Microsoft.DependencyInjection v3.0.1 Bug-fix version
- ๐ fixed: #97: Resolving last registration from multiple default services bug
-
v4.0.0 Changes
March 04, 2019๐ v4.0.0 Release notes
Highlights
- DryIoc.dll and all extensions are strongly-signed.
- ๐ Greatly improved performance and decreased memory allocations for bootstrapping and first-time resolution, as well as for the rest of operations. The results were measured on realistic mid-sized object graph with ~40 dependencies and mixed registration types.
- ๐
IResolver
is directly implementingIServiceProvider
for supported platforms UseInstance
is split intoRegisterInstance
andUse
methods #78- ๐ The docs now are generated from
.cs
files in DryIoc.Docs project with up-to-date runnable examples using CsToMd project.
๐ Features
- โ added: #4 Rule for Func and Lazy to be resolved even without requested service registered
- โ added: #8 Parity of registration methods between IContainer and IRegistrator (RegisterMapping and RegisterPlaceholder are available in IRegistrator)
- โ added: #9 RegisterMany should indicate if no registration was made
- โ added: #11 Resolution root bound dependency expression de-duplication
- โ added: #17 Rules.DefaultRegistrationServiceKey enhancement
- โ added: #20 Enhance error message with current container Rules info
- โ added: #32 Integrate MediatR like middleware directly to DryIoc #32
- โ added: #39 For troubleshooting purposes add ability to opt-out FastExpressionCompiler
- โ Added: #45 Consider expression interpretation to speed-up first time resolution
- โ added: #78 Split UseInstance two roles into separate RegisterInstance and Use
- โ added: DryIoc IResolver now directly implements IServiceProvider - no need for BuildServiceProvider anymore
- โ added: DryIoc.Rules.Rules.MicrosoftDependencyInjectionRules - the set of rules for MS.DI available directly in DryIoc
- โ added: FactoryInfo.Of(MemberInfo factoryMember, object factoryInstance)
- โ added: Explicit Factory.RegistrationOrder and adapted its usage for open-generics
- โ added: IRegistrator.GetRegisteredFactories
- โ added: FactoryType to Registrator.RegisterMapping
- โ added: AsyncExecutionFlowScopeContext.Default member
- โ added: Support for FEC v2.0
๐ Fixes
- ๐ fixed: #6 Open generic singleton service registration that satisfies multiple interfaces
- ๐ fixed: #7 Context-based injection
- ๐ fixed: #16 AutoConcreteTypeResolution should not consider a primitive type
- ๐ fixed: #25 Decorator with serviceKey throws exception which gives invalid advice on how to fix the issue for the most common reason to use the servicekey
- ๐ fixed: #26 Speed Optimization for short living applications
- ๐ fixed: #27 DryIoc cold start performance
- ๐ fixed: #28 FastExpressionCompiler is not used in Net Standard 1.3, 2.0 packages and not used in .Net Core
- ๐ fixed: #29 Resolve caches object[] args values
- ๐ fixed: #33 Memory leak with ResolveManyBehavior.AzLazyEnumerable?
- ๐ fixed: #41 ErrorCode: RegisteredFactoryMethodResultTypesIsNotAssignableToImplementationType
- ๐ fixed: #46 Operation is not supported on this platform exception on Xamarin iOS
- ๐ fixed: #61 Rules.SelectLastRegisteredFactory() does not account for OpenGenerics
- ๐ fixed: #63 Func wrapper resolving #63
- ๐ fixed: #75 Scoped call to Resolve() with args seems to leak memory
- ๐ fixed: BB-593 Add auto-generated tag to PCL FEC
- ๐ fixed: BB-594 Conflicting type is not working in .NET Core 2.1
- ๐ fixed: BB-596 The problem was in non-public service type- fixed: RegisterMapping for open-generic service type
- ๐ fixed: Using facadeKey in CreateFacade