Skip to content

Commit

Permalink
v3.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
e-oz committed Aug 6, 2023
1 parent 63dfa3f commit 1237afb
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 10 deletions.
9 changes: 3 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,9 @@
### 4.0.1
Performance improvements.

### 4.0.0
* `effect()` helper was renamed to `createEffect()` to don't interfere with Angular's `effect()` function.
It is quite a small, but still a breaking change for the apps that use this helper, so the version is changed to 4.0.0;
### 3.2.0
* New state field: `$isBeforeFirstRead: Signal<boolean>`.
Initialized with 'true', will be set to `false` after the first execution of `read()`, `readOne()`, or `readMany()`.
It is designed to be used with 'No entries found' placeholders.
* `effect()` helper was renamed to `createEffect()` to don't conflict with Angular's `effect()` function.
`createEffect()` is still exported as `effect()` for backwards compatibility, and as `sideEffect()` to don't conflict with NgRx.Store's `createEffect()`.

### 3.1.7
`effect()` helper will now resubscribe on errors, so if you forgot to catch an error - it's not an issue anymore.
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ngx-collection",
"version": "4.0.1",
"version": "3.2.0",
"license": "MIT",
"author": {
"name": "Evgeniy OZ",
Expand Down
2 changes: 1 addition & 1 deletion projects/ngx-collection/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ngx-collection",
"version": "4.0.1",
"version": "3.2.0",
"license": "MIT",
"author": {
"name": "Evgeniy OZ",
Expand Down

0 comments on commit 1237afb

Please sign in to comment.