Skip to content

Releases: jonbnewman/mobx-store-provider

Maintenance release

05 Jan 16:23
Compare
Choose a tag to compare

This release is a minor maintenance update, it includes:

  • Dependency updates
  • Updated links to documentation (new TLD)

Minor bug fix

23 Mar 09:30
Compare
Choose a tag to compare

This release includes a minor identifier bug fix for useStore

Added minor feature

22 Mar 21:06
797745f
Compare
Choose a tag to compare

This release includes a minor feature enhancement:

Maintenance release

20 Mar 16:39
Compare
Choose a tag to compare

This release is a minor maintenance update, it includes:

  • Dependency updates
  • Further simplified internal structure

Maintenance release

21 Dec 18:09
Compare
Choose a tag to compare

This release is a minor maintenance update, it includes:

  • Dependency updates
  • Simplified internal structure
  • Minor internal type definition simplification for main Map.

NOTE: If you are upgrading from v1.x please make sure you read the v2.0.0 release notes

Missing env proxy for useCreateStore

29 Nov 22:00
Compare
Choose a tag to compare

This is a hot-fix release.

  • The useCreateStore hook is (among other things) proxying a model.create() call from mobx-state-tree. In mobx-state-tree, 2 parameters are accepted in the create() call, one of them being the environment parameter.

    This was mistakenly not being proxied in v2.0.0 or v2.0.1...it has now been fixed, see the useCreateStore API documentation.

NOTE: If you are upgrading from v1.x please make sure you read the v2.0.0 release notes

Added missing peer dependency

29 Nov 13:56
Compare
Choose a tag to compare

This is a hot-fix release.

  • mobx-state-tree was mistakenly left off of the peerDependencies in the 2.0.0 release.

    This release resolves that.

NOTE: If you are upgrading from v1.x please make sure you read the v2.0.0 release notes

Typescript improvements and package size reduction

29 Nov 12:57
Compare
Choose a tag to compare

The primary purpose of this release is two fold:

  1. Automatic model type inference (and overall better/more strict typescript definitions).
  2. Simplified API (removed mapState callback support).

Note that this release introduces significant breaking API changes (hence the 2.0 release).

A more in depth explanation of the typescript changes (the primary driver of these API changes) can be found on the mobx-store-provider typescript documentation.

Maintenance release

28 Nov 15:23
Compare
Choose a tag to compare

Updated dependencies

Maintenance release

02 Sep 12:34
Compare
Choose a tag to compare

This is a maintenance release.

  • Breaking: Removed renamed/deprecated createStore hook
  • Updated internal dependencies

If you are still using createStore, you now need to switch those calls to useCreateStore.