Skip to content

Commit 0519f6b

Browse files
chore: release 11.1.0
1 parent 987cfee commit 0519f6b

File tree

22 files changed

+47
-39
lines changed

22 files changed

+47
-39
lines changed

CHANGELOG.md

Lines changed: 18 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
<a name="11.1.0"></a>
2+
3+
# [11.1.0](https://github.com/ngrx/platform/compare/11.0.1...11.1.0) (2021-03-31)
4+
5+
### Bug Fixes
6+
7+
- **effects:** add support for Proxy objects in Effects ([#2976](https://github.com/ngrx/platform/issues/2976)) ([5f5b679](https://github.com/ngrx/platform/commit/5f5b679)), closes [#2975](https://github.com/ngrx/platform/issues/2975)
8+
- **store:** allow default parameters in function action ([#2954](https://github.com/ngrx/platform/issues/2954)) ([9b23403](https://github.com/ngrx/platform/commit/9b23403)), closes [#2948](https://github.com/ngrx/platform/issues/2948)
9+
- **store:** allow primitive types ([#2967](https://github.com/ngrx/platform/issues/2967)) ([eecc8ce](https://github.com/ngrx/platform/commit/eecc8ce)), closes [#2966](https://github.com/ngrx/platform/issues/2966)
10+
11+
### Features
12+
13+
- **component-store:** add ability for patchState to accept Observable ([#2937](https://github.com/ngrx/platform/issues/2937)) ([8930e22](https://github.com/ngrx/platform/commit/8930e22)), closes [#2852](https://github.com/ngrx/platform/issues/2852)
14+
- **schematics:** add component store schematics ([#2886](https://github.com/ngrx/platform/issues/2886)) ([f086f80](https://github.com/ngrx/platform/commit/f086f80)), closes [#2570](https://github.com/ngrx/platform/issues/2570)
15+
116
<a name="11.0.1"></a>
217

318
## [11.0.1](https://github.com/ngrx/platform/compare/11.0.0...11.0.1) (2021-02-15)
@@ -17,7 +32,7 @@
1732

1833
<a name="11.0.0-beta.2"></a>
1934

20-
# [11.0.0-beta.2](https://github.com/ngrx/platform/compare/11.0.0-beta.1...11.0.0-beta.2) (2021-02-02)
35+
# [11.0.0-beta.2](https://github.com/ngrx/platform/compare/11.0.0-beta.0...11.0.0-beta.2) (2021-02-02)
2136

2237
### Bug Fixes
2338

@@ -31,7 +46,9 @@
3146
### Features
3247

3348
- **effects:** concatLatestFrom operator ([#2760](https://github.com/ngrx/platform/issues/2760)) ([55f0f7a](https://github.com/ngrx/platform/commit/55f0f7a))
49+
- **effects:** deprecate @Effect decorator ([#2855](https://github.com/ngrx/platform/issues/2855)) ([dbd1ecf](https://github.com/ngrx/platform/commit/dbd1ecf))
3450
- **store:** add object-style StoreModule.forFeature overload w/fixes ([#2885](https://github.com/ngrx/platform/issues/2885)) ([a9468e1](https://github.com/ngrx/platform/commit/a9468e1)), closes [#2821](https://github.com/ngrx/platform/issues/2821) [#2809](https://github.com/ngrx/platform/issues/2809)
51+
- **store-devtools:** pass entire error object to the error handler ([#2853](https://github.com/ngrx/platform/issues/2853)) ([ce28b44](https://github.com/ngrx/platform/commit/ce28b44)), closes [#2824](https://github.com/ngrx/platform/issues/2824)
3552

3653
### Performance Improvements
3754

@@ -47,15 +64,6 @@ AFTER:
4764

4865
ngrxPush typing considers `undefined` when the input type is an observable
4966

50-
<a name="11.0.0-beta.1"></a>
51-
52-
# [11.0.0-beta.1](https://github.com/ngrx/platform/compare/11.0.0-beta.0...11.0.0-beta.1) (2021-01-12)
53-
54-
### Features
55-
56-
- **effects:** deprecate @Effect decorator ([#2855](https://github.com/ngrx/platform/issues/2855)) ([dbd1ecf](https://github.com/ngrx/platform/commit/dbd1ecf))
57-
- **store-devtools:** pass entire error object to the error handler ([#2853](https://github.com/ngrx/platform/issues/2853)) ([ce28b44](https://github.com/ngrx/platform/commit/ce28b44)), closes [#2824](https://github.com/ngrx/platform/issues/2824)
58-
5967
<a name="11.0.0-beta.0"></a>
6068

6169
# [11.0.0-beta.0](https://github.com/ngrx/platform/compare/10.0.1...11.0.0-beta.0) (2021-01-05)

build/update-version-numbers.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ function createMigrationDocs(version: string) {
148148
const navigationContent = readFileSync(CONFIG.navigationFile, 'utf-8');
149149
const navigation = JSON.parse(navigationContent);
150150
const migrationsNav = navigation['SideNav'].find(
151-
(nav) => nav.title === 'Migrations'
151+
(nav: any) => nav.title === 'Migrations'
152152
);
153153
if (migrationsNav) {
154154
migrationsNav.children = [

modules/component-store/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ngrx/component-store",
3-
"version": "11.0.1",
3+
"version": "11.1.0",
44
"description": "Reactive store for component state",
55
"repository": {
66
"type": "git",
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const platformVersion = '^11.0.1';
1+
export const platformVersion = '^11.1.0';

modules/component/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ngrx/component",
3-
"version": "11.0.1",
3+
"version": "11.1.0",
44
"description": "Reactive Extensions for Angular Components",
55
"repository": {
66
"type": "git",
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const platformVersion = '^11.0.1';
1+
export const platformVersion = '^11.1.0';

modules/data/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ngrx/data",
3-
"version": "11.0.1",
3+
"version": "11.1.0",
44
"description": "API management for NgRx",
55
"repository": {
66
"type": "git",
@@ -22,9 +22,9 @@
2222
"peerDependencies": {
2323
"@angular/common": "^11.0.0",
2424
"@angular/core": "^11.0.0",
25-
"@ngrx/store": "11.0.1",
26-
"@ngrx/effects": "11.0.1",
27-
"@ngrx/entity": "11.0.1",
25+
"@ngrx/store": "11.1.0",
26+
"@ngrx/effects": "11.1.0",
27+
"@ngrx/entity": "11.1.0",
2828
"rxjs": "^6.5.3"
2929
},
3030
"schematics": "./schematics/collection.json",
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const platformVersion = '^11.0.1';
1+
export const platformVersion = '^11.1.0';

modules/effects/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ngrx/effects",
3-
"version": "11.0.1",
3+
"version": "11.1.0",
44
"description": "Side effect model for @ngrx/store",
55
"repository": {
66
"type": "git",
@@ -22,7 +22,7 @@
2222
"homepage": "https://github.com/ngrx/platform#readme",
2323
"peerDependencies": {
2424
"@angular/core": "^11.0.0",
25-
"@ngrx/store": "11.0.1",
25+
"@ngrx/store": "11.1.0",
2626
"rxjs": "^6.5.3"
2727
},
2828
"schematics": "./schematics/collection.json",
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const platformVersion = '^11.0.1';
1+
export const platformVersion = '^11.1.0';

0 commit comments

Comments
 (0)