File tree Expand file tree Collapse file tree 3 files changed +12
-3
lines changed Expand file tree Collapse file tree 3 files changed +12
-3
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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" : {
Original file line number Diff line number Diff 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" ,
You can’t perform that action at this time.
0 commit comments