All notable changes to this project will be documented in this file. See standard-version for commit guidelines.
3.0.1 (2020-02-02)
3.0.0 (2020-02-02)
- maintainCount: MAINTAIN_COUNT rule now returns single onWrite trigger. Previously, it used to return two triggers; onCreate and onDelete. This should simplify usage.
Before:
[
module.exports.incrementFavoritesCount,
module.exports.decrementFavoritesCount,
] = integrify({
rule: 'MAINTAIN_COUNT',
...
After:
module.exports.maintainFavoritesCount = integrify({
rule: 'MAINTAIN_COUNT',
...
2.2.2 (2019-09-15)
- Add prepublishOnly script (#33) (2aae2a6)
- changelog: Include all commit types (#35) (5c0b50c)
- changelog: Name sections appropriately (560ad90)
- script: Add release script (fc7f3a6)
- scripts: Add pre-commit, commit-msg husky hooks (#34) (2cb0bba)
2.2.1 (2019-08-20)
2.2.0 (2019-08-20)
2.1.0 (2019-08-09)
- replicateAttributes: Add ability to replicate to collection groups (isCollectionGroup) (#29) (2751b3e)
2.0.0 (2019-05-12)
-
Allows users to call
integrify()
with no arguments and rules specified in a file namedfunctions/integrify.rules.js
. -
feat: Handle all rules in file, add tests
-
test(rulesFile): Add tests for rules in config file, error conditions etc
-
docs(README): Add doc for rules in file