Skip to content

Commit

Permalink
chore: release 14.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonroberts committed Jan 16, 2023
1 parent 3d31996 commit 1141d0a
Show file tree
Hide file tree
Showing 22 changed files with 39 additions and 30 deletions.
13 changes: 11 additions & 2 deletions CHANGELOG.md
@@ -1,3 +1,12 @@
<a name="14.3.3"></a>

## [14.3.3](https://github.com/ngrx/platform/compare/14.3.2...14.3.3) (2023-01-16)

### Bug Fixes

- **component-store:** revert throwError usages with factory for RxJs 6 compatibility ([3d31996](https://github.com/ngrx/platform/commit/3d31996))
- **data:** revert throwError usages with factory for RxJs 6 compatibility ([a987c61](https://github.com/ngrx/platform/commit/a987c61))

<a name="14.3.2"></a>

## [14.3.2](https://github.com/ngrx/platform/compare/14.3.1...14.3.2) (2022-10-04)
Expand Down Expand Up @@ -281,14 +290,14 @@ AFTER:
BEFORE:

```ts
createSelector<Story[], Story[], Story[][]>
createSelector<Story[], Story[], Story[][]>;
```

AFTER:

```ts
// needs to be a tuple 👇
createSelector<Story[], [ Story[] ] , Story[][]>
createSelector<Story[], [Story[]], Story[][]>;
```

- **data:** Now both the `getWithQuery` and `getAll` methods are consistent and do set `loaded` property to true on dispatching their success actions respectively.
Expand Down
2 changes: 1 addition & 1 deletion modules/component-store/package.json
@@ -1,6 +1,6 @@
{
"name": "@ngrx/component-store",
"version": "14.3.2",
"version": "14.3.3",
"description": "Reactive store for component state",
"repository": {
"type": "git",
Expand Down
@@ -1 +1 @@
export const platformVersion = '^14.3.2';
export const platformVersion = '^14.3.3';
2 changes: 1 addition & 1 deletion modules/component/package.json
@@ -1,6 +1,6 @@
{
"name": "@ngrx/component",
"version": "14.3.2",
"version": "14.3.3",
"description": "Reactive Extensions for Angular Components",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion modules/component/schematics-core/utility/libs-version.ts
@@ -1 +1 @@
export const platformVersion = '^14.3.2';
export const platformVersion = '^14.3.3';
8 changes: 4 additions & 4 deletions modules/data/package.json
@@ -1,6 +1,6 @@
{
"name": "@ngrx/data",
"version": "14.3.2",
"version": "14.3.3",
"description": "API management for NgRx",
"repository": {
"type": "git",
Expand All @@ -22,9 +22,9 @@
"peerDependencies": {
"@angular/common": "^14.0.0",
"@angular/core": "^14.0.0",
"@ngrx/store": "14.3.2",
"@ngrx/effects": "14.3.2",
"@ngrx/entity": "14.3.2",
"@ngrx/store": "14.3.3",
"@ngrx/effects": "14.3.3",
"@ngrx/entity": "14.3.3",
"rxjs": "^6.5.3 || ^7.5.0"
},
"schematics": "./schematics/collection.json",
Expand Down
2 changes: 1 addition & 1 deletion modules/data/schematics-core/utility/libs-version.ts
@@ -1 +1 @@
export const platformVersion = '^14.3.2';
export const platformVersion = '^14.3.3';
4 changes: 2 additions & 2 deletions modules/effects/package.json
@@ -1,6 +1,6 @@
{
"name": "@ngrx/effects",
"version": "14.3.2",
"version": "14.3.3",
"description": "Side effect model for @ngrx/store",
"repository": {
"type": "git",
Expand All @@ -22,7 +22,7 @@
"homepage": "https://github.com/ngrx/platform#readme",
"peerDependencies": {
"@angular/core": "^14.0.0",
"@ngrx/store": "14.3.2",
"@ngrx/store": "14.3.3",
"rxjs": "^6.5.3 || ^7.5.0"
},
"schematics": "./schematics/collection.json",
Expand Down
2 changes: 1 addition & 1 deletion modules/effects/schematics-core/utility/libs-version.ts
@@ -1 +1 @@
export const platformVersion = '^14.3.2';
export const platformVersion = '^14.3.3';
4 changes: 2 additions & 2 deletions modules/entity/package.json
@@ -1,6 +1,6 @@
{
"name": "@ngrx/entity",
"version": "14.3.2",
"version": "14.3.3",
"description": "Common utilities for entity reducers",
"repository": {
"type": "git",
Expand All @@ -21,7 +21,7 @@
"homepage": "https://github.com/ngrx/platform#readme",
"peerDependencies": {
"@angular/core": "^14.0.0",
"@ngrx/store": "14.3.2",
"@ngrx/store": "14.3.3",
"rxjs": "^6.5.3 || ^7.5.0"
},
"schematics": "./schematics/collection.json",
Expand Down
2 changes: 1 addition & 1 deletion modules/entity/schematics-core/utility/libs-version.ts
@@ -1 +1 @@
export const platformVersion = '^14.3.2';
export const platformVersion = '^14.3.3';
2 changes: 1 addition & 1 deletion modules/eslint-plugin/package.json
@@ -1,6 +1,6 @@
{
"name": "@ngrx/eslint-plugin",
"version": "14.3.2",
"version": "14.3.3",
"description": "NgRx ESLint Plugin",
"repository": {
"type": "git",
Expand Down
4 changes: 2 additions & 2 deletions modules/router-store/package.json
@@ -1,6 +1,6 @@
{
"name": "@ngrx/router-store",
"version": "14.3.2",
"version": "14.3.3",
"description": "Bindings to connect @angular/router to @ngrx/store",
"repository": {
"type": "git",
Expand All @@ -23,7 +23,7 @@
"@angular/common": "^14.0.0",
"@angular/core": "^14.0.0",
"@angular/router": "^14.0.0",
"@ngrx/store": "14.3.2",
"@ngrx/store": "14.3.3",
"rxjs": "^6.5.3 || ^7.5.0"
},
"schematics": "./schematics/collection.json",
Expand Down
@@ -1 +1 @@
export const platformVersion = '^14.3.2';
export const platformVersion = '^14.3.3';
2 changes: 1 addition & 1 deletion modules/schematics-core/utility/libs-version.ts
@@ -1 +1 @@
export const platformVersion = '^14.3.2';
export const platformVersion = '^14.3.3';
2 changes: 1 addition & 1 deletion modules/schematics/package.json
@@ -1,6 +1,6 @@
{
"name": "@ngrx/schematics",
"version": "14.3.2",
"version": "14.3.3",
"description": "NgRx Schematics for Angular",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion modules/schematics/schematics-core/utility/libs-version.ts
@@ -1 +1 @@
export const platformVersion = '^14.3.2';
export const platformVersion = '^14.3.3';
4 changes: 2 additions & 2 deletions modules/store-devtools/package.json
@@ -1,6 +1,6 @@
{
"name": "@ngrx/store-devtools",
"version": "14.3.2",
"version": "14.3.3",
"description": "Developer tools for @ngrx/store",
"repository": {
"type": "git",
Expand All @@ -20,7 +20,7 @@
},
"homepage": "https://github.com/ngrx/platform#readme",
"peerDependencies": {
"@ngrx/store": "14.3.2",
"@ngrx/store": "14.3.3",
"rxjs": "^6.5.3 || ^7.5.0"
},
"schematics": "./schematics/collection.json",
Expand Down
@@ -1 +1 @@
export const platformVersion = '^14.3.2';
export const platformVersion = '^14.3.3';
2 changes: 1 addition & 1 deletion modules/store/package.json
@@ -1,6 +1,6 @@
{
"name": "@ngrx/store",
"version": "14.3.2",
"version": "14.3.3",
"description": "RxJS powered Redux for Angular apps",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion modules/store/schematics-core/utility/libs-version.ts
@@ -1 +1 @@
export const platformVersion = '^14.3.2';
export const platformVersion = '^14.3.3';
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "@ngrx/platform",
"version": "14.3.2",
"version": "14.3.3",
"description": "monorepo for ngrx development",
"scripts": {
"ng": "ng",
Expand Down

0 comments on commit 1141d0a

Please sign in to comment.