diff --git a/CHANGELOG.md b/CHANGELOG.md index 57ca7120..732162dd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ ## Parse Server Changelog +### 2.5.3 +[Full Changelog](https://github.com/ParsePlatform/parse-server/compare/2.5.2...2.5.3) + +#### New Features: +* badge property on android installations will now be set as on iOS (#3970), thanks to [Florent Vilmart](https://github.com/flovilmart) + +#### Bug Fixes: +* Fixes incorrect number parser for cache options + ### 2.5.2 [Full Changelog](https://github.com/ParsePlatform/parse-server/compare/2.5.1...2.5.2) diff --git a/package.json b/package.json index e4c5c6b5..966c5d5a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "parse-server", - "version": "2.5.2", + "version": "2.5.3", "description": "An express module providing a Parse-compatible API server", "main": "lib/index.js", "repository": { diff --git a/src/cli/definitions/parse-server.js b/src/cli/definitions/parse-server.js index 5f6550f5..4e267787 100644 --- a/src/cli/definitions/parse-server.js +++ b/src/cli/definitions/parse-server.js @@ -227,12 +227,12 @@ export default { "cacheTTL": { env: "PARSE_SERVER_CACHE_TTL", help: "Sets the TTL for the in memory cache (in ms), defaults to 5000 (5 seconds)", - action: numberParser, + action: numberParser("cacheTTL"), }, "cacheMaxSize": { env: "PARSE_SERVER_CACHE_MAX_SIZE", help: "Sets the maximum size for the in memory cache, defaults to 10000", - action: numberParser + action: numberParser("cacheMaxSize") }, "cluster": { env: "PARSE_SERVER_CLUSTER",