Skip to content

moleculer-db v0.2.0

Compare
Choose a tag to compare
@icebob icebob released this 06 Jul 14:16
· 307 commits to master since this release

Breaking changes

Renamed service methods

  • findAll renamed to find
  • update renamed to updateMany
  • remove renamed to removeMany

clear action is removed

We removed the clear action from service The reason is if you don't filter it in whitelists of API gw, it will be published and callable from client-side what is very dangerous.

After all if you need it:

module.exports = {
	name: "posts",
	mixins: [DbService],

	actions: {
		clear(ctx) {
			return this.clear(ctx);
		}
	}
}

Renamed adapter methods

  • findAll renamed to find
  • update renamed to updateMany
  • remove renamed to removeMany