mongochangestream
Advanced tools
Comparing version 0.13.0 to 0.14.0
@@ -0,54 +1,58 @@ | ||
# 0.14.0 | ||
- Bump peer dependencies. | ||
# 0.13.0 | ||
* Omit nested fields for `update` operations. | ||
- Omit nested fields for `update` operations. | ||
# 0.12.0 | ||
* Fix `Document` type. | ||
- Fix `Document` type. | ||
# 0.11.0 | ||
* Prepend `pipeline` with omit pipeline if `omit` is passed to `initSync`. | ||
- Prepend `pipeline` with omit pipeline if `omit` is passed to `initSync`. | ||
# 0.10.0 | ||
* Renamed `Options` to `SyncOptions`. | ||
- Renamed `Options` to `SyncOptions`. | ||
# 0.9.0 | ||
* Moved `omit` to `initSync` so that it can be used in the `processChangeStream` pipeline. | ||
- Moved `omit` to `initSync` so that it can be used in the `processChangeStream` pipeline. | ||
# 0.8.0 | ||
* Don't delete the last scan id key when initial scan is completed. | ||
* Allow an initial scan to resume after completion by calling `clearCompletedOn` first. | ||
* Export `getKeys` fn. | ||
* Changed Redis key prefix from to `mongoChangeStream`. | ||
- Don't delete the last scan id key when initial scan is completed. | ||
- Allow an initial scan to resume after completion by calling `clearCompletedOn` first. | ||
- Export `getKeys` fn. | ||
- Changed Redis key prefix from to `mongoChangeStream`. | ||
# 0.7.0 | ||
* `omit` option for excluding undesired fields. | ||
- `omit` option for excluding undesired fields. | ||
# 0.6.0 | ||
* `sortField` option for overriding the default sorting field of `_id`. | ||
- `sortField` option for overriding the default sorting field of `_id`. | ||
# 0.5.0 | ||
* Pass `QueueOptions` to `runInitialScan`. | ||
- Pass `QueueOptions` to `runInitialScan`. | ||
# 0.4.0 | ||
* Bumped `prom-utils` to latest. | ||
- Bumped `prom-utils` to latest. | ||
# 0.3.0 | ||
* Batch `runInitialScan`. | ||
- Batch `runInitialScan`. | ||
# 0.2.0 | ||
* Separate out event stream handling into the `processChangeStream` method. | ||
- Separate out event stream handling into the `processChangeStream` method. | ||
# 0.1.0 | ||
* Initial release. | ||
- Initial release. |
{ | ||
"name": "mongochangestream", | ||
"version": "0.13.0", | ||
"version": "0.14.0", | ||
"description": "Sync MongoDB collections via change streams into any database.", | ||
@@ -14,3 +14,4 @@ "author": "GovSpend", | ||
"build:develop": "tsc --watch", | ||
"lint": "eslint src/**" | ||
"lint": "eslint src/**", | ||
"fmt": "prettier --ignore-path .gitignore --write './'" | ||
}, | ||
@@ -31,5 +32,4 @@ "keywords": [ | ||
"license": "ISC", | ||
"peerDependencies": { | ||
"ioredis": ">= 5.2.2", | ||
"mongodb": ">= 4.8.1" | ||
"engines": { | ||
"node": ">=16.0.0" | ||
}, | ||
@@ -50,3 +50,12 @@ "devDependencies": { | ||
"prom-utils": "^0.2.0" | ||
}, | ||
"peerDependencies": { | ||
"ioredis": ">= 5.2.3", | ||
"mongodb": ">= 4.9.0" | ||
}, | ||
"prettier": { | ||
"semi": false, | ||
"singleQuote": true, | ||
"trailingComma": "es5" | ||
} | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
26490
60
4
5
1
14