Releases: adriancarriger/angular-provide-once
Releases · adriancarriger/angular-provide-once
v3.1.0
14 Feb 07:30
Compare
Sorry, something went wrong.
No results found
<a name"3.1.0">
3.1.0 (2017-02-14)
Features
v3.0.0
14 Feb 06:12
Compare
Sorry, something went wrong.
No results found
<a name"3.0.0">
3.0.0 (2017-02-14)
Features
Breaking Changes
must specify provider dependencies
To migrate your code follow the example below:
Before:
providers: [
...ProvideOnce(MyService)
],
After:
providers: [
...ProvideOnce(MyService, [DependantService])
],
See the README for more details.
(2bb3c78b )
v2.0.1
13 Feb 17:05
Compare
Sorry, something went wrong.
No results found
<a name"2.0.1">
2.0.1 (2017-02-13)
Bug Fixes
core: create class dependencies correctly (c0c6c6c3 )
v2.0.0
13 Feb 02:58
Compare
Sorry, something went wrong.
No results found
<a name"2.0.0">
2.0.0 (2017-02-13)
Features
Breaking Changes
ProvideOnce returns an array of Providers
To migrate your code follow the example below:
Before:
providers: [
ProvideOnce(MyService)
],
After:
providers: [
...ProvideOnce(MyService)
],
(be54fb6d )
v1.0.1
11 Feb 04:16
Compare
Sorry, something went wrong.
No results found
<a name"1.0.1">
1.0.1 (2017-02-11)
Bug Fixes
deps: include dependencies in bundle (a6fcf2a2 )
v1.0.0
09 Feb 23:57
Compare
Sorry, something went wrong.
No results found
<a name"1.0.0">
1.0.0 (2017-02-09)
Bug Fixes
Features