From 103839ce6039896d0f6ed90567c86d0c3a4ac777 Mon Sep 17 00:00:00 2001 From: Drew Date: Tue, 31 May 2016 17:01:10 -0700 Subject: [PATCH] Changelog 2.2.11 (#1962) --- CHANGELOG.md | 29 +++++++++++++++++++++++++++++ package.json | 2 +- 2 files changed, 30 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2d1dcf2a55..2d80c0617c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,34 @@ ## Parse Server Changelog +### 2.2.11 (5/31/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) +* New: Webhook key support, thanks to [Tyler Brock](https://github.com/TylerBrock) +* Perf: Add cache adapter and default caching of certain objects, thanks to [Blayne Chard](https://github.com/blacha) +* Improvement: Better error messages for schema type mismatches, thanks to [Jeremy Pease](https://github.com/JeremyPlease) +* Improvement: Better error messages for reset password emails +* Improvement: Webhook key support in CLI, thanks to [Tyler Brock](https://github.com/TylerBrock) +* Fix: Remove read only fields when using beforeSave, thanks to [Tyler Brock](https://github.com/TylerBrock) +* Fix: Use content type provided by JS SDK, thanks to [Blayne Chard](https://github.com/blacha) and [Florent Vilmart](https://github.com/flovilmart) +* Fix: Tell the dashboard the stored push data is available, thanks to [Jeremy Pease](https://github.com/JeremyPlease) +* 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: Strip objectId out of hooks responses, thanks to [Tyler Brock](https://github.com/TylerBrock) +* Fix: Fix external webhook response format, thanks to [Tyler Brock](https://github.com/TylerBrock) +* Fix: Fix beforeSave when object is passed to `success`, thanks to [Madhav Bhagat](https://github.com/codebreach) +* Fix: Remove use of deprecated APIs, thanks to [Emad Ehsan](https://github.com/emadehsan) +* 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 +* Fix: Issues with pointed getting un-fetched due to changes in beforeSave +* Fix: Fixed crash when deleting classes that have CLPs + ### 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": {