npm strapi-plugin-email 3.0.0-beta.4
v3.0.0-beta.4

latest releases: 3.6.11, 3.6.10, 3.6.9...
4 years ago

💥 Breaking changes

  • [Framework] Middlewares done receive a callback function anymore.

Before

module.exports = () => {
  return {
    initialize(cb) {
      // async code
      cb();
    },
  };
};

After

module.exports = () => {
  return {
   async  initialize() {
       // sync code or async code
     },
  };
};

🐛 Bug fix

💅 Enhancement

Don't miss a new strapi-plugin-email release

NewReleases is sending notifications on new releases.