Skip to content

Commit d158023

Browse files
flovilmartnatanrolnik
authored andcommitted
⚡ Release 2.5.3 (#3989)
1 parent ad52ed6 commit d158023

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
## Parse Server Changelog
22

3+
### 2.5.3
4+
[Full Changelog](https://github.com/ParsePlatform/parse-server/compare/2.5.2...2.5.3)
5+
6+
#### New Features:
7+
* badge property on android installations will now be set as on iOS (#3970), thanks to [Florent Vilmart](https://github.com/flovilmart)
8+
9+
#### Bug Fixes:
10+
* Fixes incorrect number parser for cache options
11+
312
### 2.5.2
413
[Full Changelog](https://github.com/ParsePlatform/parse-server/compare/2.5.1...2.5.2)
514

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "parse-server",
3-
"version": "2.5.2",
3+
"version": "2.5.3",
44
"description": "An express module providing a Parse-compatible API server",
55
"main": "lib/index.js",
66
"repository": {

src/cli/definitions/parse-server.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -227,12 +227,12 @@ export default {
227227
"cacheTTL": {
228228
env: "PARSE_SERVER_CACHE_TTL",
229229
help: "Sets the TTL for the in memory cache (in ms), defaults to 5000 (5 seconds)",
230-
action: numberParser,
230+
action: numberParser("cacheTTL"),
231231
},
232232
"cacheMaxSize": {
233233
env: "PARSE_SERVER_CACHE_MAX_SIZE",
234234
help: "Sets the maximum size for the in memory cache, defaults to 10000",
235-
action: numberParser
235+
action: numberParser("cacheMaxSize")
236236
},
237237
"cluster": {
238238
env: "PARSE_SERVER_CLUSTER",

0 commit comments

Comments
 (0)