Skip to content

Releases: mrpmorris/Fluxor

6.0-Beta2

22 Mar 17:16
Compare
Choose a tag to compare
  • Breaking change: Remove support for obsolete versions of .NET framework (#384)
  • Breaking change: Replace IDisposable with IAsyncDisposable in Blazor components (#324)
  • Breaking change: UseReduxDevTools no longer ensures UseRouting is called (#360)
  • Breaking change: UseReduxDevTools no longer requires Newtonsoft.Json (#386)
  • Support Action Filtering in Redux Dev Tools (#383)
  • Do not consider anchor (Uri.Fragment) when checking Uri for changes in routing middleware (#455)

6.0-Beta1

15 Mar 20:53
5ef2f11
Compare
Choose a tag to compare
  • Breaking change: Remove support for obsolete versions of .NET framework (#384)
  • Breaking change: Replace IDisposable with IAsyncDisposable in Blazor components (#324)
  • Breaking change: UseReduxDevTools no longer ensures UseRouting is called (#360)
  • Breaking change: UseReduxDevTools no longer requires Newtonsoft.Json (#386)
  • Support Action Filtering in Redux Dev Tools (#383)

5.9

04 Jun 15:33
Compare
Choose a tag to compare
5.9
  • Adds additional useful information to exception thrown by DisposableAction (#425)
  • Fix deadlock scenario when dispatching actions from an effect triggered by store activation (#426)

5.8

20 May 09:40
Compare
Choose a tag to compare
5.8
  • Fixes potential for deadlock (#407)

5.7

09 Dec 13:03
Compare
Choose a tag to compare
5.7
  • Fixes memory leak when using ActionSubscriber or SubscribeToAction (#378)

5.6

17 Nov 17:24
Compare
Choose a tag to compare
5.6

New in 5.6

  • Support .NET 7
  • Ensure StateSelection unsubscribes properly (#353)

5.5

26 Sep 17:33
Compare
Choose a tag to compare
5.5
  • DisposableCallback includes Caller info when throwing an exception (#320)
  • Ensured initialising the store does not overwrite manually set state (#347)

5.4

17 May 20:08
14a8a42
Compare
Choose a tag to compare
5.4
  • ActionSubscribers are now notified after state has been reduced (#299)
  • Routing middleware will no longer dispatch a GoAction when URl is the same value but formatted differently (#297)
  • IDispatcher now queues actions whenever there are no subscribers to the ActionDispatched event and then dequeues them when a subscriber is added (#301)

5.3

03 May 20:11
97997c7
Compare
Choose a tag to compare
5.3
  • New method EnableStackTrace on ReduxDevToolsMiddlewareOptions to enable passing stack trace to the browser plugin #262
  • ActionSubscriber demo
  • Add LifeCycle to FluxorOptions and use in registration #287

5.1

14 Mar 21:29
Compare
Choose a tag to compare
5.1
  • Fixed IStateSelection<TState, TValue> bug that threw exception stating the selector has
    already been set. (#252)
  • Added an optional Action<TValue> selectedValueChanged to IStateSelection<TState, TValue>.Select
    that is executed whenever the selected value changes. This is a convenient alternative to hooking up event handlers.
  • Added event EventHandler<TValue> SelectedValueChanged to IStateSelection<TState, TValue> for strongly
    typed event args when the selected value changes.
  • Changed to avoid .net memory leak in dependency injection (#271)