diff --git a/CHANGELOG.md b/CHANGELOG.md index 2d1dcf2a55..4822dffdca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,21 @@ ## Parse Server Changelog +### 2.2.11 (5/26/2016) + +* Security: Censor user password in logs, thanks to [Marco Cheung](https://github.com/Marco129) +* New: Add PARSE_SERVER_LOGS_FOLDER env var for setting log folder, thanks to [KartikeyaRokde](https://github.com/KartikeyaRokde) +* Perf: Add cache adapter and default caching of certain objects, thanks to [Blayne Chard](https://github.com/blacha) +* Fix: Add support for HTTP Basic Auth, thanks to [Hussam Moqhim](https://github.com/hmoqhim) +* Fix: Support for MongoDB version 3.2.6, (note: do not use MongoDB 3.2 with migrated apps that still have traffic on Parse.com), thanks to [Tyler Brock](https://github.com/TylerBrock) +* Fix: Prevent `pm2` from crashing when push notifications fail, thanks to [benishak](https://github.com/benishak) +* Fix: Add full list of default _Installation fields, thanks to [Jeremy Pease](https://github.com/JeremyPlease) +* Fix: Crash when multiple Parse Servers on the same machine try to write to the same logs folder, thanks to [Steven Shipton](https://github.com/steven-supersolid) +* Fix: Various issues with key names in `Parse.Object`s +* Fix: Treat Bytes type properly +* Fix: Caching bugs that caused writes by masterKey or other session token to not show up to users reading with a different session token +* Fix: Pin mongo driver version, preventing a regression in version 2.1.19 +* Fix: Various issues with pointer fields not being treated properly + ### 2.2.10 (5/15/2016) * Fix: Write legacy ACLs to Mongo so that clients that still go through Parse.com can read them, thanks to [Tyler Brock](https://github.com/TylerBrock) and [carmenlau](https://github.com/carmenlau) diff --git a/package.json b/package.json index c767ca7177..d6497c9b01 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "parse-server", - "version": "2.2.10", + "version": "2.2.11", "description": "An express module providing a Parse-compatible API server", "main": "lib/index.js", "repository": {