From b68e6f7b576c898ffb3ab712537f82db1dddaef6 Mon Sep 17 00:00:00 2001 From: Charles Leifer Date: Mon, 8 May 2017 16:18:26 -0500 Subject: [PATCH] Update changelog for 2.10.0 --- CHANGELOG.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index b0e87d040..dc0abec15 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,22 @@ releases, visit GitHub: https://github.com/coleifer/peewee/releases +## 2.10.0 + +The main change in this release is the removal of the `AESEncryptedField`, +which was included as part of the `playhouse.fields` extension. It was brought +to my attention that there was some serious potential for security +vulnerabilities. Rather than give users a false sense of security, I've decided +the best course of action is to remove the field. + +* Remove the `playhouse.fields.AESEncryptedField` over security concerns +described in ticket #1264. +* Correctly resolve explicit table dependencies when creating tables, refs + #1076. Thanks @maaaks. +* Implement not equals comparison for `CompositeKey`. + +[View commits](https://github.com/coleifer/peewee/compare/2.9.2...2.10.0) + ## 2.9.2 * Fixed significant bug in the `savepoint` commit/rollback implementation. Many