-
-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(Platform): Updated release packages to 4.0.0 (#88)
- Loading branch information
1 parent
d2295c7
commit e3143c2
Showing
10 changed files
with
189 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
{ | ||
"lerna": "2.0.0-beta.38", | ||
"lerna": "2.0.0", | ||
"packages": [ | ||
"modules/*" | ||
], | ||
"version": "4.0.0-alpha.0", | ||
"version": "4.0.0", | ||
"npmClient": "yarn" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
# Change Log | ||
|
||
All notable changes to this project will be documented in this file. | ||
See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. | ||
|
||
<a name="4.0.0"></a> | ||
# 4.0.0 (2017-07-18) | ||
|
||
|
||
### Bug Fixes | ||
|
||
* **build:** Get tests running for each project ([c4a1054](https://github.com/ngrx/platform/commit/c4a1054)) | ||
* **Effects:** Start child effects after running root effects (#43) ([931adb1](https://github.com/ngrx/platform/commit/931adb1)) | ||
* **Effects:** Use Actions generic type for the return of the ofType operator ([d176a11](https://github.com/ngrx/platform/commit/d176a11)) | ||
|
||
|
||
### Code Refactoring | ||
|
||
* **Effects:** Simplified AP, added better error reporting and effects stream control ([015107f](https://github.com/ngrx/platform/commit/015107f)) | ||
|
||
|
||
### Features | ||
|
||
* **build:** Updated build pipeline for modules ([68bd9df](https://github.com/ngrx/platform/commit/68bd9df)) | ||
* **Effects:** Ensure effects are only subscribed to once ([089abdc](https://github.com/ngrx/platform/commit/089abdc)) | ||
* **Effects:** Introduce new Effects testing module (#70) ([7dbb571](https://github.com/ngrx/platform/commit/7dbb571)) | ||
|
||
|
||
### BREAKING CHANGES | ||
|
||
* **Effects:** Effects API for registering effects has been updated to allow for multiple classes to be provided. | ||
|
||
BEFORE: | ||
```ts | ||
@NgModule({ | ||
imports: [ | ||
EffectsModule.run(SourceA), | ||
EffectsModule.run(SourceB) | ||
] | ||
}) | ||
export class AppModule { } | ||
``` | ||
|
||
AFTER: | ||
```ts | ||
@NgModule({ | ||
imports: [ | ||
EffectsModule.forRoot([ | ||
SourceA, | ||
SourceB, | ||
SourceC, | ||
]) | ||
] | ||
}) | ||
export class AppModule { } | ||
|
||
@NgModule({ | ||
imports: [ | ||
EffectsModule.forFeature([ | ||
FeatureSourceA, | ||
FeatureSourceB, | ||
FeatureSourceC, | ||
]) | ||
] | ||
}) | ||
export class SomeFeatureModule { } | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Change Log | ||
|
||
All notable changes to this project will be documented in this file. | ||
See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. | ||
|
||
<a name="4.0.0"></a> | ||
# 4.0.0 (2017-07-18) | ||
|
||
|
||
### Bug Fixes | ||
|
||
* **router-store:** NavigationCancel and NavigationError creates a cycle when used with routerReducer ([a085730](https://github.com/ngrx/platform/commit/a085730)), closes [#68](https://github.com/ngrx/platform/issues/68) | ||
|
||
|
||
### Features | ||
|
||
* **router-store:** Added action types (#47) ([1f67cb3](https://github.com/ngrx/platform/commit/1f67cb3)), closes [#44](https://github.com/ngrx/platform/issues/44) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# Change Log | ||
|
||
All notable changes to this project will be documented in this file. | ||
See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. | ||
|
||
<a name="4.0.0"></a> | ||
# 4.0.0 (2017-07-18) | ||
|
||
|
||
### Bug Fixes | ||
|
||
* **Devtools:** Removed SHOULD_INSTRUMENT token used to eagerly inject providers (#57) ([b90df34](https://github.com/ngrx/platform/commit/b90df34)) | ||
* **example-app:** Suppress StoreDevtoolsConfig compiler warning ([8804156](https://github.com/ngrx/platform/commit/8804156)) | ||
* **StoreDevtools:** Type InjectionToken for AOT compilation ([e21d688](https://github.com/ngrx/platform/commit/e21d688)) | ||
|
||
|
||
### Features | ||
|
||
* **Effects:** Introduce new Effects testing module (#70) ([7dbb571](https://github.com/ngrx/platform/commit/7dbb571)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
# Change Log | ||
|
||
All notable changes to this project will be documented in this file. | ||
See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. | ||
|
||
<a name="4.0.0"></a> | ||
# 4.0.0 (2017-07-18) | ||
|
||
|
||
### Bug Fixes | ||
|
||
* **Devtools:** Removed SHOULD_INSTRUMENT token used to eagerly inject providers (#57) ([b90df34](https://github.com/ngrx/platform/commit/b90df34)) | ||
* **omit:** Strengthen the type checking of the omit utility function ([3982038](https://github.com/ngrx/platform/commit/3982038)) | ||
* **Store:** Exported initial state tokens (#65) ([4b27b6d](https://github.com/ngrx/platform/commit/4b27b6d)) | ||
* **Store:** pass all required arguments to projector (#74) ([9b82b3a](https://github.com/ngrx/platform/commit/9b82b3a)) | ||
* **Store:** Remove parameter destructuring for strict mode (#33) (#77) ([c9d6a45](https://github.com/ngrx/platform/commit/c9d6a45)) | ||
* **Store:** Removed readonly from type (#72) ([68274c9](https://github.com/ngrx/platform/commit/68274c9)) | ||
|
||
|
||
### Code Refactoring | ||
|
||
* **Effects:** Simplified AP, added better error reporting and effects stream control ([015107f](https://github.com/ngrx/platform/commit/015107f)) | ||
|
||
|
||
### Features | ||
|
||
* **build:** Updated build pipeline for modules ([68bd9df](https://github.com/ngrx/platform/commit/68bd9df)) | ||
* **Effects:** Introduce new Effects testing module (#70) ([7dbb571](https://github.com/ngrx/platform/commit/7dbb571)) | ||
* **store:** Add 'createSelector' and 'createFeatureSelector' utils (#10) ([41758b1](https://github.com/ngrx/platform/commit/41758b1)) | ||
* **Store:** Allow initial state function for AoT compatibility (#59) ([1a166ec](https://github.com/ngrx/platform/commit/1a166ec)), closes [#51](https://github.com/ngrx/platform/issues/51) | ||
* **Store:** Allow parent modules to provide reducers with tokens (#36) ([069b12f](https://github.com/ngrx/platform/commit/069b12f)), closes [#34](https://github.com/ngrx/platform/issues/34) | ||
* **Store:** Simplify API for adding meta-reducers (#87) ([d2295c7](https://github.com/ngrx/platform/commit/d2295c7)) | ||
|
||
|
||
### BREAKING CHANGES | ||
|
||
* **Effects:** Effects API for registering effects has been updated to allow for multiple classes to be provided. | ||
|
||
BEFORE: | ||
```ts | ||
@NgModule({ | ||
imports: [ | ||
EffectsModule.run(SourceA), | ||
EffectsModule.run(SourceB) | ||
] | ||
}) | ||
export class AppModule { } | ||
``` | ||
|
||
AFTER: | ||
```ts | ||
@NgModule({ | ||
imports: [ | ||
EffectsModule.forRoot([ | ||
SourceA, | ||
SourceB, | ||
SourceC, | ||
]) | ||
] | ||
}) | ||
export class AppModule { } | ||
|
||
@NgModule({ | ||
imports: [ | ||
EffectsModule.forFeature([ | ||
FeatureSourceA, | ||
FeatureSourceB, | ||
FeatureSourceC, | ||
]) | ||
] | ||
}) | ||
export class SomeFeatureModule { } | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters