All Versions
107
Latest Version
Avg Release Cycle
28 days
Latest Release
-
Changelog History
Page 8
Changelog History
Page 8
-
v3.5.8 Changes
- ๐ Fixed issue where
props
where not passed properly to components in very rare cases. Also fixed #115
- ๐ Fixed issue where
-
v3.5.7 Changes
- ๐ Bundles are no longer minified, fixes #127
-
v3.5.6 Changes
- Export
propTypes
asPropTypes
, like React (@andykog, ##117)
- Export
-
v3.5.5 Changes
- ๐ Removed
experimental
status ofinject
/Provider
. Official feature now. - ๐ Fixed hot-reloading issue, #101
- ๐ Removed
-
v3.5.4 Changes
- ๐ Introduced
wrappedInstance
by @rossipedia oninject
decorated HOC's, see https://github.com/mobxjs/mobx-react/pull/90/ - ๐ print warnings when assign values to
propTypes
,defaultProps
, orcontextTypes
of a HOC. (by @jtraub, see https://github.com/mobxjs/mobx-react/pull/88/) - Static properties are now hoisted to HoC components when, #92
- ๐ If
inject
is used incombination with a function, the object return from the function will now be merged into thenextProps
instead of replacing them, #80 - ๐ Always do propType checking untracked, partially fixes #56, #305
- ๐ Introduced
-
v3.5.3 Changes
- ๐ Fixed error
Cannot read property 'renderReporter' of undefined
(#96)
- ๐ Fixed error
-
v3.5.2 Changes
- Added propTypes.observableArrayOf and propTypes.arrayOrObservableArrayOf (#91)
-
v3.5.1 Changes
- ๐ Fixed regression #85, changes caused by the constructor results in inconsistent rendering (N.B.: that is un-idiomatic React usage and React will warn about this!)
-
v3.5.0 Changes
- Introduced
inject("store1", "store2")(component)
as alternative syntax to inject stores. Should address #77, #70 - Introduced the
wrappedComponent
property on injected higher order components, addresses #70, #72 - ๐ Fixed #76: error when no stores are provided through context
- Added typings for devTools related features (@benjamingr).
- ๐ Added MobX specific propTypes (@mattruby)
- ๐ Merged #44, fixes #73: don't re-render if component was somehow unmounted
- Introduced
-
v3.4.0 Changes
- ๐ Introduced
Provider
/ context support (#53 / MobX #300) - ๐ Fixed issues when using devtools with IE. #66 (By @pvasek)
- ๐ Introduced