Skip to content

Commit e3ea473

Browse files
Jon Ristajrista
authored andcommitted
fix(actions): add input validation checks on selection related actions
fix(reducer): resolves potential for undefined in selection related reductions #62 fix(reducer): correct calls to Array.prototype.some that were passing data rather than callback #60 This resolves #60 This resolves #62
1 parent 6b11bde commit e3ea473

File tree

8 files changed

+736
-191
lines changed

8 files changed

+736
-191
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
<a name="0.2.6"></a>
2+
3+
# [0.2.6](https://github.com/briebug/ngrx-auto-entity/compare/0.2.5...0.2.6) Beta (2019-09-05)
4+
5+
This release resolves two issues with multiple-entity deselections due to bugs in the
6+
reduction of deselectMany and deselectAll.
7+
8+
### Features
9+
10+
- **actions:** Add input validation checks and exception throwing to selection related actions
11+
- **reducer:** Fix issue with potential undefined in selection related reductions #62
12+
- **reducer:** Fix issue with calls to Array.prototype.some on certain arrays being implemented incorrectly #60
13+
14+
15+
116
<a name="0.2.5"></a>
217

318
# [0.2.5](https://github.com/briebug/ngrx-auto-entity/compare/0.2.2...0.2.5) Beta (2019-08-12)

jest.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ module.exports = {
1414
testMatch: ['**/+(*.)+(spec|test).+(ts)?(x)'],
1515
testPathIgnorePatterns: [
1616
'/node_modules/',
17-
'<rootDir>/dist',
18-
'<rootDir>/src'
17+
'<rootDir>/dist/',
18+
'<rootDir>/src/'
1919
],
2020
coverageReporters: ['html', 'text'],
2121
collectCoverageFrom: [

package-lock.json

Lines changed: 1 addition & 174 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

projects/ngrx-auto-entity/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "0.2.5",
2+
"version": "0.2.6",
33
"name": "@briebug/ngrx-auto-entity",
44
"description": "Automatic Entity State and Facades for NgRx. Simplifying reactive state!",
55
"keywords": [

0 commit comments

Comments
 (0)