Skip to content
This repository was archived by the owner on Dec 31, 2020. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
49 commits
Select commit Hold shift + click to select a range
998b2e6
fixes HOC displayName for observer and inject
May 7, 2018
6f8138c
Started V6
mweststrate Feb 11, 2019
b266442
Upgraded React to 16.8.0
mweststrate Feb 11, 2019
ac24719
Killed the `observer` overload that accepts store names` for auto inject
mweststrate Feb 11, 2019
61ae046
Make sure reactions / components stof if a component throws exception…
mweststrate Feb 11, 2019
886cb96
Fixed broken inject test
mweststrate Feb 11, 2019
bf54f75
Implemented forwardRefs. Fixes #616 / #619
mweststrate Feb 11, 2019
825056c
Better links in changelog
mweststrate Feb 11, 2019
cd9977e
Killed life-cycle compat
mweststrate Feb 11, 2019
5cd7b53
Basic implementation for modern context
mweststrate Feb 11, 2019
840a2f1
moved `shallowEqual` and `is` utilities
mweststrate Feb 11, 2019
a64c2d3
`Provider`: Forbid changing stores
mweststrate Feb 11, 2019
6957468
Some provider / inject cleanup
mweststrate Feb 11, 2019
b015cd3
Removed duplicate context/inject tests
mweststrate Feb 11, 2019
bc098c6
Fixed warning generated by inject
mweststrate Feb 11, 2019
7e32fc0
Provider can now redefine / combine stores
mweststrate Feb 11, 2019
3327e0f
Some random cleanup
mweststrate Feb 11, 2019
c8212aa
no longer supports property
mweststrate Feb 13, 2019
2ea0f15
WIP: use observer from mobx-react-lite for function components
mweststrate Feb 14, 2019
f68bf60
Fixed most remaining tests
mweststrate Feb 14, 2019
0c77fd6
Use `Observer` from mobx-react-lite
mweststrate Feb 14, 2019
e8e61b5
modernized rollup
mweststrate Feb 14, 2019
6807429
Blegh, filesize keeps failing
mweststrate Feb 14, 2019
f34dab3
Jest update
mweststrate Feb 14, 2019
1ea40e2
use `observer` implementation from mobx-react-lite
mweststrate Feb 14, 2019
bb9b55e
Got rid of enzyme
mweststrate Feb 15, 2019
44a9b93
Fixed typescript tests
mweststrate Feb 15, 2019
23f0d05
Use microbundle for builds
mweststrate Feb 15, 2019
58d785d
Some cleanup
mweststrate Feb 17, 2019
d282c22
Some failing tests for disposeOnUnmount
mweststrate Feb 17, 2019
185150b
Fixed test in stateless
mweststrate Feb 17, 2019
49b0bd5
Killed avanced patching; directly extend React.(Pure)Component or dis…
mweststrate Feb 17, 2019
50f03a7
Removed / updated tests where relevant
mweststrate Feb 17, 2019
79a5dc1
Updating Readme / processing more todo's
mweststrate Feb 17, 2019
c85257f
Merge branch 'v6-radical' into v6
mweststrate Feb 17, 2019
2f6c76e
Apply suggestions from code review
FredyC Feb 19, 2019
edc676b
Merge branch 'hoc-conventions' of https://github.com/SimeonC/mobx-rea…
mweststrate Mar 10, 2019
9554f64
Merge branch 'SimeonC-hoc-conventions' into v6
mweststrate Mar 10, 2019
96c9102
Fixed changelog
mweststrate Mar 10, 2019
5116529
Removed hoist-statics dependency
mweststrate Mar 21, 2019
464035b
Fixed several typescript issues
mweststrate Mar 21, 2019
53f1dd2
Generate react-native build during compilation, so that there are no …
mweststrate Mar 21, 2019
6d23b11
Disabled compressing since it seems to break React
mweststrate Mar 22, 2019
24a5b35
Proper fix
mweststrate Mar 22, 2019
d152895
upgraded mobx-react-lite, processed some todo's
mweststrate May 29, 2019
d0a3661
don't bundle mobx-react-lite, but depend on it
mweststrate May 29, 2019
ce77e7e
Added some tests for hooks
mweststrate May 29, 2019
516a21e
Documentation improvements
mweststrate May 29, 2019
d5c832f
Some changelog / readme improvements
mweststrate May 29, 2019
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .babelrc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"presets": ["@babel/preset-env"],
"presets": [["@babel/preset-env", { "targets": { "node": "current" } }]],
"plugins": [
["@babel/plugin-proposal-decorators", { "legacy": true}],
["@babel/plugin-proposal-class-properties", { "loose": true}],
Expand Down
6 changes: 0 additions & 6 deletions .editorconfig

This file was deleted.

15 changes: 6 additions & 9 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,16 +1,8 @@
/dist
/node_modules
/test/node_modules
/npm-debug.log
/native.js
/native.d.ts
/custom.js
/custom.module.js
/custom.d.ts
/test/custom.d.ts
/index.js
/index.module.js
/index.min.js
/index.d.ts
/test/index.d.ts
/.idea
/*.iml
Expand All @@ -20,3 +12,8 @@
/.source.*
yarn-error.log
.DS_Store

# files generated by V5
/custom.*
/index.*
/native.*
10 changes: 0 additions & 10 deletions .npmignore

This file was deleted.

223 changes: 126 additions & 97 deletions CHANGELOG.md

Large diffs are not rendered by default.

261 changes: 131 additions & 130 deletions README.md

Large diffs are not rendered by default.

Loading