Skip to content

Releases: titouancreach/vuejs-redux

Avoid to upload all the repository to npm registry

10 May 15:35
Compare
Choose a tag to compare

I noticed that the content of the git repository (including file ignored in the .gitignore) was uploaded to the npm registry. That causes the package to be around 130Mb.
This release fix this and make the total size to be about 12Kb

Upgrade every dev dependencies to their latest version

10 May 15:32
Compare
Choose a tag to compare

This is only a clean but, the 2 emitted bundles has been a little bit modified. I think this is because I switched to babel 7. If you see any issue because of this, you can downgrade to the earlier version and open an issue.

Summary:

  • Upgrade from babel 6 to babel 7
  • Upgrade vue-jest for the unit tests
  • Use parcel to build and run the example

IE11 Compatibilities

22 Nov 08:47
f4951ea
Compare
Choose a tag to compare

Transform arrow functions and shortand object functions into plain javascript function for IE11 compatibility

Commiters:

v2.3.0

29 Oct 15:31
5182fe8
Compare
Choose a tag to compare

Include an es module build and various improvement in the documentations, the builds, the tests and the code quality.

Commiters:

Fix a bug where mapDispatchToProps was called at wrong time

15 Jan 15:11
85ee3a4
Compare
Choose a tag to compare

MapDispatchToProps was called when the component was mounted. But if mapDispatchToProps updated, Provider didn't know and keep calling the wrong function. Now, mapDispatchToProps is directly called from the props.

v2.1.0

11 Jan 14:54
85ee3a4
Compare
Choose a tag to compare

Render props are now used instead HOC.
Example with JSX and no JSX
Better unit tests
Fix bugs