mongoose-field-encryption
Advanced tools
Comparing version 3.0.2 to 3.0.3
{ | ||
"name": "mongoose-field-encryption", | ||
"version": "3.0.2", | ||
"version": "3.0.3", | ||
"description": "A simple symmetric encryption plugin for individual fields.", | ||
@@ -52,6 +52,6 @@ "main": "lib/mongoose-field-encryption.js", | ||
"mocha-lcov-reporter": "1.3.0", | ||
"mongoose": "5.7.13", | ||
"nyc": "14.1.1", | ||
"mongoose": "5.8.7", | ||
"nyc": "15.0.0", | ||
"release-it": "12.4.3", | ||
"sinon": "7.5.0" | ||
"sinon": "8.0.4" | ||
}, | ||
@@ -58,0 +58,0 @@ "release-it": { |
@@ -182,45 +182,49 @@ # mongoose-field-encryption | ||
### 3.0.3 | ||
- Update development dependencies, fix unit tests, no functionality affected | ||
### 3.0.2 | ||
- Update documentation | ||
- Update documentation, no functionality affected | ||
### 3.0.1 | ||
- Update development dependencies | ||
- Update development dependencies, no functionality affected | ||
### 3.0.0 | ||
- Drop Node 4 support | ||
- _BREAKING:_ Drop Node 4 support | ||
### 2.3.5 | ||
- Update development dependencies | ||
- Update development dependencies, no functionality affected | ||
### 2.3.2, 2.3.3, 2.3.4 | ||
- Update documentation | ||
- Update documentation, no functionality affected | ||
### 2.3.1 | ||
- Update documentation | ||
- Update documentation, no functionality affected | ||
### 2.3.0 | ||
- Add provision for a custom salt generator, [PR #27](https://github.com/wheresvic/mongoose-field-encryption/pull/27). Using a custom salt, _fixed_ search capability is now restored. | ||
- _FEATURE:_ Add provision for a custom salt generator, [PR #27](https://github.com/wheresvic/mongoose-field-encryption/pull/27). Note that by using a custom salt, _fixed_ search capability is now restored. | ||
### 2.2.0 | ||
- Update dependencies | ||
- Update dependencies, no functionality affected | ||
### 2.1.3 | ||
- Fix bug where decryption fails when the field in question is not retrieved, [PR #26](https://github.com/wheresvic/mongoose-field-encryption/pull/26). | ||
- _FIX:_ Fix bug where decryption fails when the field in question is not retrieved, [PR #26](https://github.com/wheresvic/mongoose-field-encryption/pull/26). | ||
### 2.1.1 | ||
- Fix bug where data was not getting decrypted on a `find()`, [#23](https://github.com/wheresvic/mongoose-field-encryption/issues/23). | ||
- _FIX:_ Fix bug where data was not getting decrypted on a `find()`, [#23](https://github.com/wheresvic/mongoose-field-encryption/issues/23). | ||
### 2.0.0 | ||
- Use `cipheriv` instead of plain `cipher`, [#17](https://github.com/wheresvic/mongoose-field-encryption/issues/17). | ||
- _BREAKING:_ Use `cipheriv` instead of plain `cipher`, [#17](https://github.com/wheresvic/mongoose-field-encryption/issues/17). | ||
@@ -233,8 +237,8 @@ Note that this might break any _fixed_ search capability as the encrypted values are now based on a random salt. | ||
- Added support for `findOneAndUpdate` [https://github.com/wheresvic/mongoose-field-encryption/pull/20](https://github.com/wheresvic/mongoose-field-encryption/pull/20) | ||
- _FEATURE:_ Added support for `findOneAndUpdate` [https://github.com/wheresvic/mongoose-field-encryption/pull/20](https://github.com/wheresvic/mongoose-field-encryption/pull/20) | ||
### 1.1.0 | ||
- Added support for mongoose 5 [https://github.com/wheresvic/mongoose-field-encryption/pull/16](https://github.com/wheresvic/mongoose-field-encryption/pull/16). | ||
- Removed mongoose dependency, moved to `peerDependencies`. | ||
- _FEATURE:_ Added support for mongoose 5 [https://github.com/wheresvic/mongoose-field-encryption/pull/16](https://github.com/wheresvic/mongoose-field-encryption/pull/16). | ||
- _FIX:_ Removed mongoose dependency, moved to `peerDependencies`. | ||
- Formatted source code using prettier. |
23128
243