Skip to content

Latest commit

 

History

History
136 lines (67 loc) · 4.61 KB

CHANGELOG.md

File metadata and controls

136 lines (67 loc) · 4.61 KB

Changelog

All notable changes to this project will be documented in this file. See standard-version for commit guidelines.

3.0.1 (2020-02-02)

Docs

Chores

3.0.0 (2020-02-02)

⚠ BREAKING CHANGES

  • 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',
  ...

Features

  • maintainCount: Convert to single onWrite trigger (#36) (00bdc97)

2.2.2 (2019-09-15)

Chores

  • 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)

Features

  • deleteReferences: Add ability to delete from collection groups (#31) (ba31ab6)

2.1.0 (2019-08-09)

Features

  • replicateAttributes: Add ability to replicate to collection groups (isCollectionGroup) (#29) (2751b3e)

2.0.0 (2019-05-12)

  • feat(rulesFile)!: Add ability to read rules from file on disk (#17) (abdf5ce), closes #17

BREAKING CHANGES

  • Allows users to call integrify() with no arguments and rules specified in a file named functions/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

1.2.1 (2019-04-28)

1.2.0 (2019-02-07)

Features

  • deleteReferences: Add pre hook (#8) (bd81d1f)

1.1.0 (2019-02-07)

Features

  • replicateAttributes: Add pre-hook (#7) (903cc6a)

1.0.3 (2019-01-20)

1.0.2 (2019-01-19)

Bug Fixes

  • maintainCount: Do not update if target doc does not exist (#2) (84528c4)

1.0.1 (2019-01-18)