Skip to content

Releases: reduxjs/angular-redux

v2.0.1

20 Dec 10:32
Compare
Choose a tag to compare

What's Changed

Full Changelog: v2.0.0...v2.0.1

v2.0.0

25 Nov 12:42
d7d19a7
Compare
Choose a tag to compare

What's Changed

This version of Angular Redux fixes a bug where using input.required inputs in a selector throws an error:

@Component({
    selector: 'app-count-and-add',
    standalone: true,
    template: `
      <button aria-label="Increment value" (click)="dispatch(increment())">
        Increment
      </button>
      <p>Count: {{ count() }}</p>
    `,
  })
  class CountAndAdd {
    dispatch = injectDispatch();
    increment = counterSlice.actions.increment;
    addBy = input.required<number>();
    count = injectSelector((state: any) => state.counter.value + this.addBy());
  }

While this would usually be a patch release, the solution required us to use the new linkedSignal API, so we had to bump the major version to only support Angular 19+.

Breaking Changes

  • Change supported Angular versions to Angular 19+
  • No API changes

Full Changelog: v1.0.1...v2.0.0

v1.0.1

09 Oct 22:59
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v1.0.0...v1.0.1

v1.0.0

15 Sep 10:18
Compare
Choose a tag to compare

First initial stable release!

Only docs and testing changes have been made since 0.1, but we feel that this release is ready for prime-time and can be safely relied upon for production codebases.

Full Changelog: v0.1.0...v1.0.0

v0.1.0

13 Sep 13:39
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.0.4...v0.1.0

v0.0.4

11 Sep 05:46
Compare
Choose a tag to compare
v0.0.4 Pre-release
Pre-release

What's Changed

  • fix: files should now generate properly on ng add by @crutchcorn in #9

Full Changelog: v0.0.3...v0.0.4

v0.0.3

11 Sep 05:37
Compare
Choose a tag to compare
v0.0.3 Pre-release
Pre-release

What's Changed

New Contributors

  • @ptu14 made their first contribution in #3

Full Changelog: v0.0.2...v0.0.3

v0.0.2

05 Sep 14:37
Compare
Choose a tag to compare
v0.0.2 Pre-release
Pre-release

This is the initial release of the official Angular adapter for Redux!

This should have feature parity with the React adapter with the following exceptions:

  • Context cannot be overwritten
  • No connect HOC APIs
  • No developer mode warnings

v0.0.1 is the same as v0.0.2 but with a different package.json repo listed