File tree 3 files changed +12
-3
lines changed
3 files changed +12
-3
lines changed Original file line number Diff line number Diff line change 1
1
## Parse Server Changelog
2
2
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
+
3
12
### 2.5.2
4
13
[ Full Changelog] ( https://github.com/ParsePlatform/parse-server/compare/2.5.1...2.5.2 )
5
14
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " parse-server" ,
3
- "version" : " 2.5.2 " ,
3
+ "version" : " 2.5.3 " ,
4
4
"description" : " An express module providing a Parse-compatible API server" ,
5
5
"main" : " lib/index.js" ,
6
6
"repository" : {
Original file line number Diff line number Diff line change @@ -227,12 +227,12 @@ export default {
227
227
"cacheTTL" : {
228
228
env : "PARSE_SERVER_CACHE_TTL" ,
229
229
help : "Sets the TTL for the in memory cache (in ms), defaults to 5000 (5 seconds)" ,
230
- action : numberParser ,
230
+ action : numberParser ( "cacheTTL" ) ,
231
231
} ,
232
232
"cacheMaxSize" : {
233
233
env : "PARSE_SERVER_CACHE_MAX_SIZE" ,
234
234
help : "Sets the maximum size for the in memory cache, defaults to 10000" ,
235
- action : numberParser
235
+ action : numberParser ( "cacheMaxSize" )
236
236
} ,
237
237
"cluster" : {
238
238
env : "PARSE_SERVER_CLUSTER" ,
You can’t perform that action at this time.
0 commit comments