UNPKG

30.6 kBMarkdownView Raw
1# mobx-react
2
3## 7.0.2
4
5### Patch Changes
6
7- [`5239db80`](https://github.com/mobxjs/mobx/commit/5239db80cf000026906c28a035725933d4dd6823) Thanks [@FredyC](https://github.com/FredyC)! - Fixed release with missing dist files
8
9- Updated dependencies [[`5239db80`](https://github.com/mobxjs/mobx/commit/5239db80cf000026906c28a035725933d4dd6823)]:
10 - mobx-react-lite@3.1.2
11
12## 7.0.1
13
14### Patch Changes
15
16- [`81a2f865`](https://github.com/mobxjs/mobx/commit/81a2f8654d9656e2e831176e45cbf926fbc364e0) Thanks [@FredyC](https://github.com/FredyC)! - ESM bundles without NODE_ENV present are available in dist folder. This useful for consumption in browser environment that supports ESM Choose either `esm.production.min.js` or `esm.development.js` from `dist` folder.
17
18- Updated dependencies [[`81a2f865`](https://github.com/mobxjs/mobx/commit/81a2f8654d9656e2e831176e45cbf926fbc364e0)]:
19 - mobx-react-lite@3.1.1
20
21## 7.0.0
22
23Release for compatibility with MobX v6
24
25## 6.3.1
26
27### Patch Changes
28
29- [`aa780c0`](https://github.com/mobxjs/mobx-react/commit/aa780c07162be99e198e7bbdbd6465c1f451f1d6) [#908](https://github.com/mobxjs/mobx-react/pull/908) Thanks [@FredyC](https://github.com/FredyC)! - Initial setup of [changesets](https://github.com/atlassian/changesets). No code changes present.
30
31## 6.3.0
32
33- Updated mobx-react-lite to 2.2.0 which removes the need to manually configure batching. Fixes [#859](https://github.com/mobxjs/mobx-react/issues/859)
34
35## 6.2.4
36
37- Fix error thrown in the already defined observer class component warning message when attempting to get the components display name. [#887](https://github.com/mobxjs/mobx-react/issues/887)
38
39## 6.2.3
40
41- Log warning if class component is already an observer to prevent memory leaks. [#839](https://github.com/mobxjs/mobx-react/issues/839)
42- Fix disposeOnUnmount when using react-hot-loader. [#725](https://github.com/mobxjs/mobx-react/issues/725)
43
44## 6.2.2
45
46- Observer batching imports are kept in production builds as side effects ([see issue](https://github.com/mobxjs/mobx-react-lite/issues/273))
47
48## 6.2.1
49
50- Remove auto configured observer batching using react-dom. Fixes: [#852](https://github.com/mobxjs/mobx-react/issues/852).
51
52## 6.2.0
53
54- Updated to latest mobx-react-lite V2 for compatibility with `React.StrictMode`.
55- Observer batching (see more [in the docs](https://github.com/mobxjs/mobx-react-lite/#observer-batching)).
56- Possibly breaking change, the `dist/mobxreact.rn.module.js` is no longer available, use `dist/mobxreact.esm.js` instead.
57
58## 6.1.6 / 6.1.7
59
60- Fix an issue with class components & observableRequiresReaction. [#806](https://github.com/mobxjs/mobx-react/issues/806) through [#829](https://github.com/mobxjs/mobx-react/pull/829)
61- Use TSDX for building to mitigate issues with accessing `process.env` [#821](https://github.com/mobxjs/mobx-react/pull/821)
62
63## 6.1.5
64
65- Added check if `process.env` is available, fixes [#801](https://github.com/mobxjs/mobx-react/issues/801) through [#812](https://github.com/mobxjs/mobx-react/pull/812) by [@ynejati](https://github.com/ynejati)
66- Added warning if component's `render` method is accidentally overwritten. [#799](https://github.com/mobxjs/mobx-react/pull/799) by [@Venryx](https://github.com/Venryx). Helps prevent memory leaks as in: [#797](https://github.com/mobxjs/mobx-react/issues/797)
67
68## 6.1.4
69
70- Update dependency mobx-react-lite@1.4.2 which includes fix for [RN Fast Refresh](https://github.com/mobxjs/mobx-react-lite/issues/226)
71
72## 6.1.2 / 6.1.3
73
74- Add reexport of `useObserver` from `mobx-react-lite` [#734](https://github.com/mobxjs/mobx-react/issues/734)
75- Add the ability to pass multiple children to Provider
76- Fixed [#717](https://github.com/mobxjs/mobx-react/issues/717). Now `inject` works correctly with components that use `React.forwardRef`
77- Observer checks for use of React.memo [#720](https://github.com/mobxjs/mobx-react/issues/720)
78- Get rid of the redundant Injector wrapper [#716](https://github.com/mobxjs/mobx-react/pull/716)
79
80## 6.1.1
81
82- Fixed issue where combining `@disposeOnUnmount` with `disposeOnUnmount` didn't clean up everything. Fixes [#666](https://github.com/mobxjs/mobx-react/issues/666) trough [#671](https://github.com/mobxjs/mobx-react/pull/671) by [@JabX](https://github.com/JabX)
83
84## 6.1.0
85
86- Restored the classic implementation of `observer`: class based components are patched again, rather than wrapping them in `<Observer>`, see [#703](https://github.com/mobxjs/mobx-react/pull/703). Fixes:
87 - `componentDidUpdate` not being triggered after a reactive render [#692](https://github.com/mobxjs/mobx-react/issues/692)
88 - The appearance of an additional `<Observer>` component in the component tree, which complicates shallow testing [#699](https://github.com/mobxjs/mobx-react/issues/699)
89 - Some regressions in `disposeOnUnmount` [#702](https://github.com/mobxjs/mobx-react/issues/702)
90 - Note that dev tool support, and other constraints mentioned in the 6.0.0 release notes have not been restored.
91- The function `useStaticRendering(value: boolean): void` from mobx-react-lite is now exposed
92
93## 6.0.4
94
95- Fixed IE 11 compatibility which was accidentally broken. Fixes [#698](https://github.com/mobxjs/mobx-react/issues/698)
96
97## 6.0.3
98
99- `disposeOnUnmount` now supports initializing it with an array of disposers. Fixes [#637](https://github.com/mobxjs/mobx-react/pull/637) through [#641](https://github.com/mobxjs/mobx-react/pull/641) by [@Amareis](https://github.com/Amareis)
100- Fixed hoisting of statically declared members. Fixes [#678](https://github.com/mobxjs/mobx-react/issues/678) through [#682](https://github.com/mobxjs/mobx-react/pull/682) by [@meabed](https://github.com/meabed)
101
102## 6.0.2
103
104- Added missing types for `MobXProviderContext`, `useLocalStore` and `useAsObservableSource`. Fixes #679.
105
106## 6.0.0
107
108**Breaking changes**
109
110- The minimal supported version of React is 16.8.0
111- Killed the possibility to directly pass store names to `observer`. Always use `inject` instead. (This was deprecated for a long time already). `observer(["a", "b"], component)` should now be written as `inject("a", "b")(component)`.
112- `observer` components no longer automatically recover from errors (to prevent potential memory leaks). Instead, this is the responsibility of error boundaries.
113- `inject` now supports ref forwarding. As such, the `.wrappedInstance` property has been removed since refs can be used instead. (Fixes [#616](https://github.com/mobxjs/mobx-react/issues/616) (See also [#619](https://github.com/mobxjs/mobx-react/pull/619) by [42shadow42](https://github.com/42shadow42))
114- Changing the set of stores in `Provider` is no longer supported and while throw a hard error (this was a warning before), as the model of `Provider` / `inject` has always been designed to inject final values into the tree. (That is, constanted references, the injected objects themselves can be stateful without problem). If you want to dynamically swap what is provided into the tree, use `React.createContext` instead of `Provider` / `inject`. The suppressChangedStoreWarning`flag for`Provider` has been dropped.
115- The third argument of custom `storesToProps` functions passed to `inject` is no longer available.
116- `<Observer>` no longer supports the deprecated `inject` property.
117- Defining `shouldComponentUpdate` on `observer` based components is no longer supported
118- `propTypes` is no longer exposed, use `PropTypes` instead
119- `disposeOnUnmount` now only supports direct subclasses of `React.Component` and `React.PureComponent`. This prevents several unreliable edge cases that silently leaked memory before. Either only extend React.(Pure)Component when using `disposeOnUnmount`, or manually clean up stuff in `componentWillUnmount`.
120- The `onError` global error handler has been removed. Use error boundaries instead.
121- Improved dev tool names for `inject` wrapped components, see [#472](https://github.com/mobxjs/mobx-react/pull/472) by [SimeonC](https://github.com/SimeonC). Fixes [#466](https://github.com/mobxjs/mobx-react/issues/466)
122- Dropped support for a build of mobx-react that doesn't target either `react-dom` or `react-native`. mobx-react doesn't need `react-dom` to be present, but to make sure your build tools don't fail, you might want to stub `react-dom` as an empty module.
123- The `componentWillReact` has been dropped
124- The MobX-react devtools (either as package or browser plugin) are no longer supported. Instead, the following tools can be analyzed to analyze your mobx-react application:
125 - Visualizing re-rendering of components is now part of the standard React devtools
126 - The dependency tree of a compent tree can be inspected by showing the state of the `useObserver` hook in the React devtools (at the time of this release it displays as just `Object`, but the next iteration of the React devtools will support those properly)
127 - Spying on events can still be done with the [MobX-react browser plugin](https://github.com/mobxjs/mobx-devtools), through the [mobx-logger](https://github.com/winterbe/mobx-logger) package or manually by using the `spy` or `trace` utility from the mobx package.
128
129**Improvements**
130
131- Hook based components are now supported by mobx-react (in fact, the package is now implemented using hooks)
132- Class based `observer` components are now _recommended_ to extend `React.PureComponent`. Functional `observer` components are now automatically wrapped in `React.memo` internally. See section in [README](https://mobx.js.org/README.html#observercomponentclass) for more details.
133- For `observer` based components, there will now be an additional `Observer` component in the tree.
134- Two new hooks have been exposed, in case you want to manage local state in observable: `useLocalStore` and `useAsObservableSource`.
135- `MobXProviderContext` is now exposed from the package, in case you want to consume the context used by `Provider` with a `useContext` hook.
136
137## 5.4.3
138
139- Fixed [#612](https://github.com/mobxjs/mobx-react/issues/612), `contextType` was hoisted by `inject`, which shouldn't the case.
140
141## 5.4.1 / 5.4.2
142
143- Fixed issue where `react-is` wasn't properly rolled-up into the package. Fixes [#608](https://github.com/mobxjs/mobx-react/issues/608)
144
145## 5.4.0
146
147- Added support for forward refs, fixes [#602](https://github.com/mobxjs/mobx-react/issues/602)
148
149## 5.3.6
150
151- Fixed some additional issues around life-cycle patching, take 3. See [#536](https://github.com/mobxjs/mobx-react/pull/586) by [@xaviergonz](https://github.com/xaviergonz). Fixed [#579](https://github.com/mobxjs/mobx-react/issues/579)
152
153## 5.3.5
154
155- Fixed some additional issues around life-cycle patching, see [#583](https://github.com/mobxjs/mobx-react/pull/583) by [@xaviergonz](https://github.com/xaviergonz). Fixed [#581](https://github.com/mobxjs/mobx-react/issues/581)
156
157## 5.3.4
158
159- Fixed unending recursing as a result of lifecylce patching. Fixes [#579](https://github.com/mobxjs/mobx-react/issues/579) through [#582](https://github.com/mobxjs/mobx-react/pull/582) by [@xaviergonz](https://github.com/xaviergonz)
160
161## 5.3.3
162
163- Fixed `Cannot read property 'forEach' of undefined` exception if `disposeOnUnmount` was called conditionally. [#578](https://github.com/mobxjs/mobx-react/pull/578) by [Jef Hellemans](https://github.com/JefHellemans)
164
165## 5.3.2
166
167- Fixed: "process not defined", [#574](https://github.com/mobxjs/mobx-react/pull/574/) through [#576](https://github.com/mobxjs/mobx-react/pull/576/) by [@xaviergonz](https://github.com/xaviergonz)
168
169## 5.3.0 / 5.3.1
170
171_5.3.0 was retracted as files were not generated correctly during publish_
172
173- Added `disposeOnUnmount` utility / decorator to call disposable properties (reaction, autorun, etc) automatically on `componentWillUnmount`
174- Introduced new method to patch lifecycle methods which should be more compatible with for example arrow functions.
175
176## 5.2.8
177
178- Make sure `mobx-react` doesn't require `Object.assign` polyfill
179
180## 5.2.7
181
182- Fixed issue where React 16.5 printed a warning when using `Provider`, fixes [#545](https://github.com/mobxjs/mobx-react/issues/545)
183
184## 5.2.6
185
186- Fixed bug in defining properties (although the bug had no known observable effect). Fixes [#540](https://github.com/mobxjs/mobx-react/issues/540)
187
188## 5.2.4 / 5.2.5
189
190- Improved compatibility with React-Hot-Loader, see [#522](https://github.com/mobxjs/mobx-react/pull/522) by [theKashey](https://github.com/theKashey). Fixes [#500](https://github.com/mobxjs/mobx-react/issues/500)
191
192## 5.2.3
193
194- Fixed problem with `Symbol` feature detection. By [@Strate](https://github.com/Strate) through [#501](https://github.com/mobxjs/mobx-react/pull/501). Fixes [#498](https://github.com/mobxjs/mobx-react/issues/498) and [#503](https://github.com/mobxjs/mobx-react/issues/503).
195
196## 5.2.2
197
198- Polyfill `Symbol` if it doesn't exist. By [@Strate](https://github.com/Strate) through [#499](https://github.com/mobxjs/mobx-react/pull/499).
199
200## 5.2.1
201
202- Component `props` and `state` properties are now made observable during the instance creation. This restores the behavior from before 5.1.0 where `props` and `state` could safely be observed during mount. Actually it is now possible to do similar things in constructors as well. Fixes [#478](https://github.com/mobxjs/mobx-react/issues/478). Thanks [@Strate](https://github.com/Strate) for the idea and PR! [#496](https://github.com/mobxjs/mobx-react/pull/496).
203
204## 5.2.0
205
206- Added backward compatible support for MobX 5.
207- Fixed components sometimes being displayed as `undefined` in mobx-devtools. See [#470](https://github.com/mobxjs/mobx-react/pull/470) by [@MauricioAndrades](https://github.com/MauricioAndrades)
208- Removed unnecessary warning `@observer` was used both on a sub and super class. See [#492](https://github.com/mobxjs/mobx-react/pull/476) by [@skiritsis](https://github.com/skiritsis). _N.B. putting `@observer` on a super and subclass is still not an supported pattern, use @observer on subclasses only!_
209
210## 5.1.2
211
212- Fixed regression bug in integration with devtools. Fixed through [#465](https://github.com/mobxjs/mobx-react/pull/465) by @le0nik
213
214## 5.1.0
215
216- Added support for React 16.3, including support for the `getDerivedStateFromProps` life-cycle hook. MobX will no longer use `componentWillMount` hook internally, so that it can be used in `StrictMode` react as well. Fixes [#447](https://github.com/mobxjs/mobx-react/issues/447)
217- Static properties of a function component are now automatically hoisted when the component is wrapped by `observer`. Implements [#427](https://github.com/mobxjs/mobx-react/pull/427)
218- Misspelled export `componentByNodeRegistery` is now properly export as `componentByNodeRegistry` as well, please update consumers, the mispelled version will be dropped in the next major. Fixes [#421](https://github.com/mobxjs/mobx-react/issues/421)
219- Deprecated the support for the `inject` property on `Observer`, it is fundamentally broken and should not be used. Use `inject` on the enclosing component instead and grab the necessary stores from the closure. Fixes [#423](https://github.com/mobxjs/mobx-react/issues/423)
220- Added warning about using `observer` on a React.PureComponent, this will become an exception in the next major. Fixes [#309](https://github.com/mobxjs/mobx-react/issues/309)
221- Mobx-react will now print a warning when combining `observer` with a custom `shouldComponentUpdate` implementation. Fixes [#417](https://github.com/mobxjs/mobx-react/issues/417)
222
223## 5.0.0
224
225- Added compatibility with MobX 4.x. This version is not compatible with older Mobx versions
226
227## 4.4.3
228
229- The exposed React Native build now uses commonjs, to prevent the need of further transpilation. Fixes [#428](https://github.com/mobxjs/mobx-react/issues/428)
230
231## 4.4.2
232
233- Fixed issue with mobx-react not compiling on react-native due to the presence of a `.babelrc` file. Fixes [#415](https://github.com/mobxjs/mobx-react/issues/415) by [Ryan Rampersad](https://github.com/ryanmr) through [#416](https://github.com/mobxjs/mobx-react/pull/416)
234
235## 4.4.1
236
237- Fixed syntax error in 4.4.0 that escaped
238
239## 4.4.0
240
241- `Observer` now supports render props, `render` and `inject`. See the updated readme. By [ZiYingMai](https://github.com/Sunshine168) through [#403](https://github.com/mobxjs/mobx-react/pull/403)
242- Fixed: `NaN` is now considered to be equal to `NaN` when doing reconciliation. Fixes [#363](https://github.com/mobxjs/mobx-react/issues/363), by [Andrew Branch](https://github.com/andrewbranch) through [#402](https://github.com/mobxjs/mobx-react/pull/402)
243- Improved typings of `Observer` component, by [Rafał Filipek](https://github.com/RafalFilipek) through [#376](https://github.com/mobxjs/mobx-react/pull/376)
244- Fixed incorrect generation of component name, by [Andy Kogut](https://github.com/andykog) through [#368](https://github.com/mobxjs/mobx-react/pull/368)
245- Lot of internal repo upgrades: Test suite is now in Jest, Prettier is used etc.
246
247## 4.3.5
248
249Fixed some issues with the typescript typings. See for example #353
250
251## 4.3.4
252
253Improved typescript typings, including support for `strict` mode in TS 2.6. Fixes
254
255## 4.3.3
256
257Added support for React 16. (No changes)
258
259## 4.3.2
260
261Killed accidentally exposed default exports.
262
263If you are still using `import mobxReact from "mobx-react"`, use `import * as mobxReact from "mobx-react"`, or better `import { whatYouNeed } from "mobx-react"` instead.
264
265## 4.3.1
266
267## 4.3.0 (unpublished)
268
269Improved module rollup setup, enabling better tree shaking. See #324 / #328
270
271## 4.2.2
272
273- Fixed check for stateless components, by @leader22, see #280
274
275## 4.2.1
276
277_Note: Due to pull / rebase issue the release commit is incorrect. This is the released [commit](https://github.com/mobxjs/mobx-react/commit/f1b3eefc5239cb451b317204fa8aad94b4dcfc2f)_
278
279- Reduced module size by 31% (switched to rollup.js). See #244 by @rossipedia
280- Skip creation of `.wrappedInstance` reference for stateless components. See #254 by @farwayer
281- Introduced global `onError` handler hook to be notified on errors thrown by `@observer` components. See #262 by @andykog
282- Improved typescript typings of the exposed `propTypes`, See #263 by @panjiesw
283
284## 4.2.0
285
286- Same as 4.2.1, but contained build issue and is unpublished
287
288## 4.1.8
289
290- Undid change introduced in 4.1.4 where the lifecycle hooks were protected, as this breaks react-hot-loader.... Fixes #231
291
292## 4.1.7
293
294- Added support for React 15.5 (no deprecation warnings) and 16.0 (no proptypes / createClass), by @andykog, see #238. Fixes #233, #237
295
296## 4.1.5
297
298- Improved typescript typings, fixes #223
299
300## 4.1.4
301
302- Made lifecycle hooks used by mobx-react read-only to make sure they are not accidentally overwritten in component instances. Fixes, #195, #202. Note that they can still be defined, just make sure to define them on the prototype (`componentWillMount() {}`) instead of the instance (`componentWillMount = () => {}`). Which is best practice anyway.
303
304## 4.1.3
305
306- Fixed `ReactDOM.findDOMNode` exception when using react-test-runner, #216
307
308## 4.1.2
309
310- Exceptions caught during render are now rethrown with proper stack, fixes #206
311
312## 4.1.1
313
314- Exposed `wrappedInstance` and `wrappedComponent` in typings
315- Fixed accidental use of `default` import from `mobx` package.
316
317## 4.1.0
318
319- Added support for MobX3. Note that using MobX3 changes the error semantics. If an `observer` component throws, it will no longer crash the app, but just log the exceptions instead.
320
321## 4.0.4
322
323- Introduced `suppressChangedStoreWarning` to optionally supresss change store warnings, by @dropfen, see #182, #183
324
325## 4.0.3
326
327- Fixed issue where userland componentWilMount was run before observer componentWillMount
328
329## 4.0.2
330
331- Fixed order of `inject` overloads, see #169
332- Fixed import of `mobx` when using Webpack without commonjs plugin, see: #168
333
334## 4.0.1
335
336- Improved typings, by @timmolendijk, fixes #164, #166
337- Fixed `inject` signature in readme, by @farwayer
338
339## 4.0.0
340
341### `observer` now uses shallow comparision for all props _(Breaking change)_
342
343`observer` used to compare all properties shallow in the built-in _shouldComponentUpdate_, except when it received
344non-observable data structures.
345Because mobx-react cannot know whether a non observable has been deeply modified, it took no chances and just re-renders.
346
347However, the downside of this when an unchanged, non-observable object is passed in to an observer component again, it would still cause a re-render.
348Objects such as styling etc. To fix this mobx-react will now always compare all properties in a pure manner.
349In general this should cause no trouble, as typically mutable data in mobx based objects is captured in observable objects, which will still cause components to re-render if needed.
350
351If you need to pass in a deeply modified object and still want to make sure to cause a re-render, either
352
353- make sure the object / array is an observable
354- do not decorate your component with `observer`, but use `Observer` regions instead (see below)
355
356See [#160](https://github.com/mobxjs/mobx-react/issues/160) for more details.
357
358### `inject(fn)(component)` will now track `fn` as well
359
360`inject(func)` is now reactive as well, that means that transformations in the selector function will be tracked, see [#111](https://github.com/mobxjs/mobx-react/issues/111)
361
362```javascript
363const NameDisplayer = ({ name }) => <h1>{name}</h1>
364
365const UserNameDisplayer = inject(stores => ({
366 name: stores.userStore.name
367}))(NameDisplayer)
368
369const user = mobx.observable({
370 name: "Noa"
371})
372
373const App = () => (
374 <Provider userStore={user}>
375 <UserNameDisplayer />
376 </Provider>
377)
378
379ReactDOM.render(<App />, document.body)
380```
381
382_N.B. note that in this specific case NameDisplayer doesn't have to be an `observer`, as it doesn't receive observables, but just plain data from the transformer function._
383
384### `this.props` and `this.state` in React components are now observables as well
385
386A common cause of confusion were cases like:
387
388```javascript
389@observer class MyComponent() {
390 @computed upperCaseName() {
391 return this.props.user.name.toUpperCase()
392 }
393
394 render() {
395 return <h1>{this.upperCaseName}</h1>
396 }
397}
398```
399
400This component would re-render if `user.name` was modified, but it would still render the previous user's name if a complete new user was received!
401The reason for that is that in the above example the only observable tracked by the computed value is `user.name`, but not `this.props.user`.
402So a change to the first would be picked up, but a change in `props` itself, assigning a new user, not.
403
404Although this is technically correct, it was a source of confusion.
405For that reason `this.state` and `this.props` are now automatically converted to observables in any `observer` based react component.
406For more details, see [#136](https://github.com/mobxjs/mobx-react/pull/136) by @Strate
407
408### Better support for Server Side Rendering
409
410Introduced `useStaticRendering(boolean)` to better support server-side rendering scenarios. See [#140](https://github.com/mobxjs/mobx-react/issues/140)
411
412### Introduced `Observer` as alternative syntax to the `observer` decorator.
413
414_This feature is still experimental and might change in the next minor release, or be deprecated_
415
416Introduced `Observer`. Can be used as alternative to the `observer` decorator. Marks a component region as reactive.
417See the Readme / [#138](https://github.com/mobxjs/mobx-react/issues/138)
418Example:
419
420```javascript
421const UserNameDisplayer = ({ user }) => <Observer>{() => <div>{user.name}</div>}</Observer>
422```
423
424### Using `observer` to inject stores is deprecated
425
426The fact that `observer` could inject stores as well caused quite some confusion.
427Because in some cases `observer` would return the original component (when not inject), but it would return a HoC when injecting.
428To make this more consistent, you should always use `inject` to inject stores into a component. So use:
429
430```
431@inject("store1", "store2") @observer
432class MyComponent extends React.Component {
433```
434
435or:
436
437```
438const MyComponent = inject("store1", "store2")(observer(props => rendering))
439```
440
441For more info see the related [discussion](https://github.com/mobxjs/mobx-react/commit/666577b41b7af8209839e7b243064a31c9951632#commitcomment-19773706)
442
443### Other improvements
444
445- If `mobx` and `mobx-react` are used in combination, all reactions are run as part of React's batched updates. This minimizes the work of the reconciler, guarantees optimal rendering order of components (if the rendering was not triggered from within a React event). Tnx @gkaemmer for the suggestion.
446- It is now possible to directly define `propTypes` and `defaultProps` on components wrapped with `inject` (or `observer(["stores"])`) again, see #120, #142. Removed the warnings for this, and instead improved the docs.
447- Clean up data subscriptions if an error is thrown by an `observer` component, see [#134](https://github.com/mobxjs/mobx-react/pull/134) by @andykog
448- export `PropTypes` as well in typescript typings, fixes #153
449- Add react as a peer dependency
450- Added minified browser build: `index.min.js`, fixes #147
451- Generate better component names when using `inject`
452
453---
454
455## 3.5.9
456
457- Print warning when `inject` and `observer` are used in the wrong order, see #146, by @delaetthomas
458
459## 3.5.8
460
461- Fixed issue where `props` where not passed properly to components in very rare cases. Also fixed #115
462
463## 3.5.7
464
465- Bundles are no longer minified, fixes #127
466
467## 3.5.6
468
469- Export `propTypes` as `PropTypes`, like React (@andykog, ##117)
470
471## 3.5.5
472
473- Removed `experimental` status of `inject` / `Provider`. Official feature now.
474- Fixed hot-reloading issue, #101
475
476## 3.5.4
477
478- Introduced `wrappedInstance` by @rossipedia on `inject` decorated HOC's, see https://github.com/mobxjs/mobx-react/pull/90/
479- print warnings when assign values to `propTypes`, `defaultProps`, or `contextTypes` of a HOC. (by @jtraub, see https://github.com/mobxjs/mobx-react/pull/88/)
480- Static properties are now hoisted to HoC components when, #92
481- If `inject` is used incombination with a function, the object return from the function will now be merged into the `nextProps` instead of replacing them, #80
482- Always do propType checking untracked, partially fixes #56, #305
483
484## 3.5.3
485
486- Fixed error `Cannot read property 'renderReporter' of undefined` (#96)
487
488## 3.5.2
489
490- Added propTypes.observableArrayOf and propTypes.arrayOrObservableArrayOf (#91)
491
492## 3.5.1
493
494- 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!)
495
496## 3.5.0
497
498- Introduced `inject("store1", "store2")(component)` as alternative syntax to inject stores. Should address #77, #70
499- Introduced the `wrappedComponent` property on injected higher order components, addresses #70, #72
500- Fixed #76: error when no stores are provided through context
501- Added typings for devTools related features (@benjamingr).
502- Added MobX specific propTypes (@mattruby)
503- Merged #44, fixes #73: don't re-render if component was somehow unmounted
504
505## 3.4.0
506
507- Introduced `Provider` / context support (#53 / MobX #300)
508- Fixed issues when using devtools with IE. #66 (By @pvasek)
509
510## 3.3.1
511
512- Added typescript typings form `mobx-react/native` and `mobx-react/custom`
513- Fixed #63: error when using stateless function components when using babel and typescript
514
515## 3.3.0
516
517- Upgraded to MobX 2.2.0
518
519## 3.2.0
520
521- Added support for react-native 0.25 and higher. By @danieldunderfelt.
522
523## 3.1.0
524
525- Added support for custom renderers (without DOM), use: `mobx-react/custom` as import fixes #42
526- Fixed some issues with rollup #43
527- Minor optimization
528
529## 3.0.5
530
531Introduced `componentWillReact`
532
533## 3.0.4
534
535The debug name stateless function components of babel transpiled jsx are now properly picked up if the wrapper is applied after defining the component:
536
537```javascript
538const MyComponent = () => <span>hi</span>
539
540export default observer(MyComponent)
541```
542
543## 3.0.3
544
545Removed peer dependencies, React 15 (and 0.13) are supported as well. By @bkniffler
546
547## 3.0.2
548
549Removed the warning introduced in 3.0.1. It triggered always when using shallow rendering (when using shallow rendering `componentDidMount` won't fire. See https://github.com/facebook/react/issues/4919).
550
551## 3.0.1
552
553Added warning when changing state in `getInitialState` / `constructor`.
554
555## 3.0.0
556
557Upgraded to MobX 2.0.0
558
559## 2.1.5
560
561Improved typescript typings overloads of `observer`
562
563## 2.1.4
564
565Added empty 'dependencies' section to package.json, fixes #26
566
567## 2.1.3
568
569Added support for context to stateless components. (by Kosta-Github).
570
571## 2.1.1
572
573Fixed #12: fixed React warning when a component was unmounted after scheduling a re-render but before executing it.
574
575## 2.1.0
576
577Upped dependency of mobx to 1.1.1.
578
579## 2.0.1
580
581It is now possible to define `propTypes` and `getDefaultProps` on a stateless component:
582
583```javascript
584const myComponent = props => {
585 // render
586}
587
588myComponent.propTypes = {
589 name: React.PropTypes.string
590}
591
592myComponent.defaultProps = {
593 name: "World"
594}
595
596export default observer(myComponent)
597```
598
599All credits to Jiri Spac for this contribution!
600
601## 2.0.0
602
603Use React 0.14 instead of React 0.13. For React 0.13, use version `mobx-react@1.0.2` or higher.
604
605## 1.0.2
606
607Minor fixes and improvements
608
609## 1.0.1
610
611Fixed issue with typescript typings. An example project with MobX, React, Typescript, TSX can be found here: https://github.com/mobxjs/mobx-react-typescript
612
613## 1.0.0
614
615`reactiveComponent` has been renamed to `observer`
616
617### 0.2.3
618
619Added separte import for react-native: use `var reactiveComponent = require('mobx-react/native').reactiveComponent` for native support; webpack clients will refuse to build otherwise.
620
621### 0.2.2
622
623Added react-native as dependency, so that the package works with either `react` or `react-native`.
624
625### 0.2.0
626
627Upgraded to MobX 0.7.0
628
629### 0.1.7
630
631Fixed issue where Babel generated component classes where not properly picked up.
632
633### 0.1.6
634
635`observer` now accepts a pure render function as argument, besides constructor function. For example:
636
637```javascript
638var TodoItem = observer(function TodoItem(props) {
639 var todo = props.todo
640 return <li>{todo.task}</li>
641})
642```
643
644### 0.1.5
645
646observer is now defined in terms of side effects.
647
648### 0.1.4
649
650Added support for React 0.14(RC) by dropping peer dependency