v1.19.0
BeforeCallback
s can be registered usingWithProviderBeforeCallback
andWithDecoratorBeforeCallback
to hook custom callbacks into Dig to be run before constructors or decorators are run.
- Dot graph generation now results in much more clean and organized dot files.
Thanks to @Groxx, @architagr, and @pgimalac for their contributions to this release.
v1.17.1
Added
- Suggestions for value vs. pointer elements for slice and array types.
Fixed
- An issue where value group values were not getting decorated by decorators within the same module when using dig.Export(true).
- A typo in docs.
- An issue where false positives in cycle detection were occurring when providing to a child scope.
Thanks to @paullen and @lcarilla for their contributions to this release.
v1.17.0
Added
- Allow using
dig.As
withdig.Group
. - Add
FillInvokeInfo
Option andInvokeInfo
struct to help extract the types requested by anInvoke
statement. - To get visibility into constructor and decorator calls, introduce
WithProviderCallback
andWithDecoratorCallback
Options to provide callback functions.
v1.16.0
Added
- Add
RecoverFromPanics
option, which provides panic-recovery mechanism for Container. - Add
Error
interface which enables distinguishing errors from Dig using standarderrors
package.
Thanks to @mie998 for their contribution(s) to this release.
v1.15.0
Added
- Support for
soft
value groups, which specify a value group that only gets populated with values from already-executed constructors.
Fixed
- Fix an issue with invoke order affecting results provided by private provides.
Thanks to @hbdf for their contributions to this release.
v1.14.1
Fixed
- Fix an issue where a dependency for a decoration supplied by another decorator in the same scope is ignored.
- Fix a panic when submitting a single value as a value group in
Scope.Decorate
. - Upon a provide error, make the error message contain the function named specified by LocationForPC Option.