v2.0.0
Summary
The major change is that the entity
plugin is no longer installed and used by default.
Upgrade Steps
If you depend on seneca-entity
you will need to add them back into your project. Please update your package.json
to include the senecia-entity
module. Afterwards, add a seneca.use
statement to require it into your seneca instance. Below is an example of what this may look like.
const Seneca = require('seneca');
const seneca = Seneca();
seneca.use(require('seneca-entity');
...
Change Log
Please view the change log for a list of changes through the years.
Please visit http://senecajs.org/ for more information on support and how to contribute