Skip to content

Releases: microsoft/satcheljs

Strictly speaking release

27 Feb 18:55
Compare
Choose a tag to compare

Just like mobx has a useStrict mode, SatchelJS now has a way to turn off strict mode with... useStrict(false)

Time Lord Release

18 Jan 19:07
Compare
Choose a tag to compare

In this release, we added "createUndo" so that certain actions that has side effect (like API calls) can roll back changes to the store if the side effect fails.

fix observer

20 Dec 18:45
Compare
Choose a tag to compare
Merge pull request #24 from Microsoft/kchau/fix-observer

Fixes the reactive in both layers of the HOC AND the target

Get with it, decorator!

16 Dec 22:40
Compare
Choose a tag to compare

Fixed a bug from newly released v2.8.0 code where the reactive decorator didn't actually allow the observer decorator to do its job.

Beast... errr test mode

15 Dec 21:29
Compare
Choose a tag to compare

Added a test mode to allow select and reactive decorators to work in tests by NOT executing the selector functions

Upgrade to TS2.1 and Mobx 2.6.x

08 Dec 21:12
Compare
Choose a tag to compare
  • SelectorFunction now is generic and can allow developers using it to have the mapped types from TS2.1 assist in intellisense while creating those functions
  • Updated mobx

Correcting repo URLs

05 Dec 18:52
Compare
Choose a tag to compare

Corrects the repo URLs

select() now can support tests...

22 Nov 06:32
Compare
Choose a tag to compare
  • select() now allow for tests to override the params

Bug fix for the optional args

22 Nov 05:42
Compare
Choose a tag to compare
  • select(...) decorator for functions now supports optional args
  • select-react exports the ReactiveTarget, so test code can use this interface to access unwrapped controls

Decorated for the Holidays!

21 Nov 20:14
Compare
Choose a tag to compare

More decorator work. This release fixes the reactive decorator for the React component classes. Previously, it had a bug trying to modify the props itself. This release makes the decorator create a higher-order component injector.

The React dependency has been upgraded to match latest stable - 15.4.0