v0.6.3
-
Store module key must now be a single identifier (no longer support nested paths). e.g.:
new Vuex.Store({ modules: { 'a.b.c': { ... } // this would no longer work } })
This was not a public feature, and it didn't prove useful. It also introduced extra dependency on Vue internals due to the reliance on path parser. It is now removed for simplicities sake.
-
Minor warning improvements.
-
Silent mutation dispatch support. Documentation
-
Improved FSB support. cbfd5b8