Skip to content

Releases: ambta/DoctrineEncryptBundle

Incorrect package name fix

08 May 14:10
6343c00

Choose a tag to compare

Several pull requests approved

27 Apr 14:19
96059b3

Choose a tag to compare

Fixed issue and improved decrypting

30 Sep 08:21

Choose a tag to compare

The decryption-task make use of the performant query-iterator and the nice progress bar feature. thanks to @michaelfeinbier
Fixed Bug: #11

Improvements to database sync commands and addition to the documentation

20 Sep 09:03

Choose a tag to compare

Small update with the following additions:

CLI performance on batch encryption - thanks to @michaelfeinbier #17
Documentation addition to store the key in a file - thanks to @jreziga #16

Several small improvements

04 Apr 14:25

Choose a tag to compare

Fix CLI performance on large sized databases - thanks to: @wcoppens
Improved readability in readme - thanks to: @jongotlin
Add support for embedded entities - thanks to: @BboyKeen

Changed package requirements

08 Feb 09:09

Choose a tag to compare

Changed requirements, the question helper was introduced in Symfony >= 2.5.

Replaced deprecated dialog helper for commands with question helper

08 Feb 09:02

Choose a tag to compare

Replaced deprecated dialog helper for commands with the question helper for support for Symfony >= 3.0

Ignored MappedSuperclass

18 Jan 12:42

Choose a tag to compare

The commands tried to access tables related to mapped super class, which did not exist.
Thanks to @wassefr for this addition.

Added postFlush event

02 Sep 15:35

Choose a tag to compare

Added postFlush event, entities which are flushed are now directly decrypted after the flush for futher usage in code.

Added services

03 Aug 20:08

Choose a tag to compare

Added service for the use in container aware classes.
Really useful for finding encrypted data, example:

$encryptedName = $this->get('ambta_doctrine_encrypt.encryptor')->encrypt($name);
$settingEntity = $settingRepository->findOneBy(array('name' => $encryptedName));