Ngrx Slice Versions Save

Moved to https://github.com/nartc/nartc-workspace

6.0.0

2 years ago

6.0.0 (2021-12-19)

⚠ BREAKING CHANGES

  • Angular 13

Features

Bug Fixes

  • adjust slice and entity to ngrx13 (4295601)

Documentations

  • update peer dependencies (9c46e4b)

5.0.0

2 years ago

5.0.0 (2021-10-22)

⚠ BREAKING CHANGES

  • generated actions for AsyncCaseReducer are now correctly generated with the type of cases provided, not all 5

Features

  • only generate correct amount of async case actions (c250f2a)

Documentations

  • remove scully plugins folder (de0a678)

4.0.0

2 years ago

4.0.0 (2021-09-27)

Features

  • add noop() to actions for triggering effects (55a1df7)
  • entity: simplify updateOne usage (62e0619)

Bug Fixes

  • entity: check if arg is object for payloadAction (eb8bfbb)

3.1.1

2 years ago

3.1.1 (2021-09-10)

Bug Fixes

3.1.0

2 years ago

3.1.0 (2021-09-02)

Features

  • port strings utils from angular to support classify instead of capitalize (4e1e4cb)

3.0.0

2 years ago

3.0.0 (2021-08-27)

⚠ BREAKING CHANGES

  • entity: Dictionary no longer has undefined defined
// before
state.entities[id]; // returns entity or undefined

// after
state.entities[id]; // returns entity 

You should make sure that it is IMPOSSIBLE to access the entity at some given id if the entity is undefined. Eg: via UI, undefined entity shouldn't be rendered.

  • noopReducer usage has been simplified. The type parameters (ActionProps and SliceState) have been switched
// before
noopReducer<TodoState, { filter: Filter }>();
noopReducer<TodoState>();

// after
noopReducer<{filter: Filter}>();
noopReducer();

Bug Fixes

  • adjust noopReducer implementation (34d65c3)
  • entity: remove undefined from Dictionary type (fa538eb)

2.2.0

2 years ago

2.2.0 (2021-08-26)

Features

  • entity: add createSliceEntityAdapter (4d68582)

2.1.1

2 years ago

2.1.1 (2021-07-19)

Bug Fixes

  • use proper type fo createSliceAction (d8334fd)

Documentations

2.1.0

2 years ago

2.1.0 (2021-06-28)

Features

  • add createNamespacedSlice in addition to createSlice (71ef0f1)

Documentations

2.0.0

2 years ago

2.0.0 (2021-06-28)

⚠ BREAKING CHANGES

  • API return type change. More info in CHANGELOG

Features

Documentations

  • add netlify status badge (6749bca)
  • update docs to reflect updated API (9311408)