-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathparse-server.html
More file actions
executable file
·3235 lines (3235 loc) · 127 KB
/
parse-server.html
File metadata and controls
executable file
·3235 lines (3235 loc) · 127 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE doctype html>
<html>
<head>
<meta charset="utf-8"/>
<meta content="chrome=1" http-equiv="X-UA-Compatible"/>
<title>
Parse Open Source Community
</title>
<link href="css/styles.css" rel="stylesheet"/>
<link href="css/pygment_trac.css" rel="stylesheet"/>
<meta content="width=device-width" name="viewport"/>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js">
</script>
<![endif]-->
<script>
(function(i, s, o, g, r, a, m) {
i['GoogleAnalyticsObject'] = r;
i[r] = i[r] || function() {
(i[r].q = i[r].q || []).push(arguments)
}, i[r].l = 1 * new Date();
a = s.createElement(o),
m = s.getElementsByTagName(o)[0];
a.async = 1;
a.src = g;
m.parentNode.insertBefore(a, m)
})(window, document, 'script', '//www.google-analytics.com/analytics.js', 'ga');
ga('create', 'UA-73728444-3', 'auto');
ga('send', 'pageview');
</script>
</head>
<body>
<div class="top-navi">
<div class="wrapper">
<ul class="navi">
<li>
<a href="./index.html">
Useful Resources
</a>
</li>
<li>
<a class="current" href="./parse-server.html">
Parse Server
</a>
</li>
<li>
<a href="./parse-dashboard.html">
Parse Dashboard
</a>
</li>
</ul>
</div>
</div>
<div class="wrapper">
<header>
<a class="logo" href="./index.html">
<img alt="Parse Open Source Community" src="img/parseopensource-logo.png" width="100"/>
</a>
<ul>
<li>
<a href="https://github.com/ParsePlatform/parse-server/wiki" target="_blank">
Parse Server Wiki
</a>
</li>
<li>
<a href="https://github.com/ParsePlatform/parse-server/wiki/Parse-Server-Guide" target="_blank">
Parse Server Guide
</a>
</li>
<li>
<a href="https://github.com/ParsePlatform/parse-server/wiki/Migrating-an-Existing-Parse-App" target="_blank">
Migration Guide
</a>
</li>
<li>
<a href="https://github.com/ParsePlatform/parse-server/wiki#community-links" target="_blank">
Community links
</a>
</li>
</ul>
</header>
<section>
<p class="project-info">
<a href="https://github.com/ParsePlatform/parse-server">
View the Parse Server Project on GitHub
<small>
ParsePlatform/parse-server
</small>
</a>
</p>
<ul class="download-ul">
<li>
<a href="https://github.com/ParsePlatform/parse-server/archive/2.3.7.zip">
Download
<strong>
ZIP File
</strong>
</a>
</li>
<li>
<a href="https://github.com/ParsePlatform/parse-server/archive/2.3.7.tar.gz">
Download
<strong>
TAR Ball
</strong>
</a>
</li>
<li>
<a href="https://github.com/ParsePlatform/parse-server">
Fork On
<strong>
GitHub
</strong>
</a>
</li>
<li class="npm">
<a href="https://www.npmjs.com/package/parse-server">
<img alt="npm" src="https://img.shields.io/npm/v/parse-server.svg?style=flat"/>
</a>
</li>
</ul>
<div class="hr">
</div>
<h2>
Parse Server Changelog
</h2>
<h3>2.3.7</h3>
<p><a href="https://github.com/ParsePlatform/parse-server/compare/2.3.6...2.3.7">Full Changelog</a></p>
<h4>New Features</h4>
<ul>
<li>New endpoint to resend verification email, thanks to <a href="https://github.com/xyziemba">Xy Ziemba</a></li>
</ul>
<h4>Improvements</h4>
<ul>
<li>Add TTL option for Redis Cache Adapter, thanks to <a href="https://github.com/f0ster">Ryan Foster</a></li>
<li>Update Postgres Storage Adapter, thanks to <a href="https://github.com/vitaly-t">Vitaly Tomilov</a></li>
</ul>
<h4>Bug Fixes</h4>
<ul>
<li>Add index on <a href="http://Role.name">Role.name</a>, fixes (#3579), thanks to <a href="https://github.com/natanrolnik">Natan Rolnik</a></li>
<li>Fix default value of userSensitiveFields, fixes (#3593), thanks to <a href="https://github.com/acinader">Arthur Cinader</a></li>
</ul>
<h4>Dependency Updates:</h4>
<ul>
<li><a href="https://www.npmjs.com/package/body-parser">[email protected]</a></li>
<li><a href="https://www.npmjs.com/package/express">[email protected]</a></li>
<li><a href="https://www.npmjs.com/package/request">[email protected]</a></li>
<li><a href="https://www.npmjs.com/package/winston-daily-rotate-file">[email protected]</a></li>
<li><a href="https://www.npmjs.com/package/ws">[email protected]</a></li>
</ul>
<h3>2.3.6</h3>
<p><a href="https://github.com/ParsePlatform/parse-server/compare/2.3.5...2.3.6">Full Changelog</a></p>
<h4>Improvements</h4>
<ul>
<li>Adds support for injecting a middleware for instumentation in the CLI, thanks to <a href="https://github.com/flovilmart">Florent Vilmart</a></li>
<li>Alleviate mongodb bug with $or queries <a href="https://jira.mongodb.org/browse/SERVER-13732">SERVER-13732</a>, thanks to <a href="https://github.com/NotBobTheBuilder">Jack Wearden</a></li>
</ul>
<h4>Bug Fixes</h4>
<ul>
<li>Fix issue affecting password policy and empty passwords, thanks to <a href="https://github.com/bhaskaryasa">Bhaskar Reddy Yasa</a></li>
<li>Fix issue when logging url in non string objects, thanks to <a href="https://github.com/paulovitin">Paulo Vítor S Reis</a></li>
</ul>
<h4>Dependencies updates:</h4>
<ul>
<li><a href="https://npmjs.com/package/ws">[email protected]</a></li>
<li><a href="https://npmjs.com/package/uws">[email protected]</a></li>
<li><a href="https://npmjs.com/package/pg-promise">[email protected]</a></li>
</ul>
<h3>2.3.5</h3>
<p><a href="https://github.com/ParsePlatform/parse-server/compare/2.3.3...2.3.5">Full Changelog</a></p>
<h4>Bug Fixes</h4>
<ul>
<li>Allow empty client key
<br> (#3497), thanks to <a href="https://github.com/acinader">Arthur Cinader</a></li>
<li>Fix LiveQuery unsafe user
<br> (#3525), thanks to <a href="https://github.com/dstarke">David Starke</a></li>
<li>Use <code>flushdb</code> instead of <code>flushall</code> in RedisCacheAdapter
<br> (#3523), thanks to <a href="https://github.com/JeremyPlease">Jeremy Louie</a></li>
<li>Fix saving GeoPoints and Files in <code>_GlobalConfig</code> (Make sure we don’t treat
<br> dot notation keys as topLevel atoms)
<br> (#3531), thanks to <a href="https://github.com/flovilmart">Florent Vilmart</a></li>
</ul>
<h3>2.3.3</h3>
<p><a href="https://github.com/ParsePlatform/parse-server/compare/2.3.2...2.3.3">Full Changelog</a></p>
<h4>Breaking Changes</h4>
<ul>
<li><strong>Minimum Node engine bumped to 4.6</strong> (#3480), thanks to <a href="https://github.com/flovilmart">Florent Vilmart</a></li>
</ul>
<h4>Bug Fixes</h4>
<ul>
<li>Add logging on failure to create file (#3424), thanks to <a href="https://github.com/acinader">Arthur Cinader</a></li>
<li>Log Parse Errors so they are intelligible (#3431), thanks to <a href="https://github.com/acinader">Arthur Cinader</a></li>
<li>MongoDB $or Queries avoid SERVER-13732 bug (#3476), thanks to <a href="https://github.com/NotBobTheBuilder">Jack Wearden</a></li>
<li>Mongo object to Parse object date serialization - avoid re-serialization of iso of type Date (#3389), thanks to <a href="https://github.com/nodechefMatt">nodechefMatt</a></li>
</ul>
<h4>Improvements</h4>
<ul>
<li>Ground preparations for push scalability (#3080), thanks to <a href="https://github.com/flovilmart">Florent Vilmart</a></li>
<li>Use uWS as optional dependency for ws server (#3231), thanks to <a href="https://github.com/flovilmart">Florent Vilmart</a></li>
</ul>
<h3>2.3.2</h3>
<p><a href="https://github.com/ParsePlatform/parse-server/compare/2.3.1...2.3.2">Full Changelog</a></p>
<h4>New features</h4>
<ul>
<li>Add parseFrameURL for masking user-facing pages (#3267), thanks to <a href="https://github.com/lenart">Lenart Rudel</a></li>
</ul>
<h4>Bug fixes</h4>
<ul>
<li>Fix Parse-Server to work with winston-daily-rotate-1.4.2 (#3335), thanks to <a href="https://github.com/acinader">Arthur Cinader</a></li>
</ul>
<h4>Improvements</h4>
<ul>
<li>Add support for regex string for password policy validatorPattern setting (#3331), thanks to <a href="https://github.com/bhaskaryasa">Bhaskar Reddy Yasa</a></li>
<li>LiveQuery should match subobjects with dot notation (#3322), thanks to <a href="https://github.com/dstarke">David Starke</a></li>
<li>Reduce time to process high number of installations for push (#3264), thanks to <a href="https://github.com/jeacott1">jeacott1</a></li>
<li>Fix trivial typo in error message (#3238), thanks to <a href="https://github.com/acinader">Arthur Cinader</a></li>
</ul>
<h3>2.3.1</h3>
<p><a href="https://github.com/ParsePlatform/parse-server/compare/2.3.0...2.3.1">Full Changelog</a></p>
<p>A major issue was introduced when refactoring the authentication modules.
<br> This release addresses only that issue.</p>
<h3>2.3.0</h3>
<p><a href="https://github.com/ParsePlatform/parse-server/compare/2.2.25...2.3.0">Full Changelog</a></p>
<h4>Breaking changes</h4>
<ul>
<li>Parse.Cloud.useMasterKey() is a no-op, please refer to (Cloud Code migration guide)[<a href="https://github.com/ParsePlatform/parse-server/wiki/Compatibility-with-Hosted-Parse#cloud-code">https://github.com/ParsePlatform/parse-server/wiki/Compatibility-with-Hosted-Parse#cloud-code</a>]</li>
<li>Authentication helpers are now proper adapters, deprecates oauth option in favor of auth.</li>
<li>DEPRECATES: facebookAppIds, use <code>auth: { facebook: { appIds: ["AAAAAAAAA" ] } }</code></li>
<li><code>email</code> field is not returned anymore for <code>Parse.User</code> queries. (Provided only on the user itself if provided).</li>
</ul>
<h4>New Features</h4>
<ul>
<li>Adds ability to restrict access through Class Level Permissions to only authenticated users <a href="http://parseplatform.github.io/docs/ios/guide/#requires-authentication-permission-requires-parse-server---230">see docs</a></li>
<li>Adds ability to strip sensitive data from <code>_User</code> responses, strips emails by default, thanks to <a href="https://github.com/acinader">Arthur Cinader</a></li>
<li>Adds password history support for password policies, thanks to <a href="https://github.com/bhaskaryasa">Bhaskar Reddy Yasa</a></li>
</ul>
<h4>Improvements</h4>
<ul>
<li>Bump parse-server-s3-adapter to 1.0.6, thanks to <a href="https://github.com/acinader">Arthur Cinader</a></li>
<li>Using PARSE_SERVER_ENABLE_EXPERIMENTAL_DIRECT_ACCESS let you create user sessions when passing {installationId: “xxx-xxx”} on signup in cloud code, thanks to <a href="https://github.com/flovilmart">Florent Vilmart</a></li>
<li>Add CLI option to pass <code>host</code> parameter when creating parse-server from CLI, thanks to <a href="https://github.com/kulshekhar">Kulshekhar Kabra</a></li>
</ul>
<h4>Bug fixes</h4>
<ul>
<li>Ensure batch routes are only using posix paths, thanks to <a href="https://github.com/steven-supersolid">Steven Shipton</a></li>
<li>Ensure falsy options from CLI are properly taken into account, thanks to <a href="https://github.com/steven-supersolid">Steven Shipton</a></li>
<li>Fixes issues affecting calls to <code>matchesKeyInQuery</code> with pointers.</li>
<li>Ensure that <code>select</code> keys can be changed in triggers (beforeFind…), thanks to <a href="https://github.com/acinader">Arthur Cinader</a></li>
</ul>
<h4>Housekeeping</h4>
<ul>
<li>Enables and enforces linting with eslint, thanks to <a href="https://github.com/acinader">Arthur Cinader</a></li>
</ul>
<h3>2.2.25</h3>
<p>Postgres support requires v9.5</p>
<h4>New Features</h4>
<ul>
<li>Dockerizing Parse Server, thanks to <a href="https://github.com/woyorus">Kirill Kravinsky</a></li>
<li>Login with qq, wechat, weibo, thanks to <a href="">haifeizhang</a></li>
<li>Password policy, validation and expiration, thanks to <a href="https://github.com/bhaskaryasa">Bhaskar Reddy Yasa</a></li>
<li>Health check on /health, thanks to <a href="https://github.com/woyorus">Kirill Kravinsky</a></li>
<li>Reuse SchemaCache across requests option, thanks to <a href="https://github.com/steven-supersolid">Steven Shipton</a></li>
</ul>
<h4>Improvements</h4>
<ul>
<li>Better support for CLI options, thanks to <a href="https://github.com/steven-supersolid">Steven Shipton</a></li>
<li>Specity a database timeout with maxTimeMS, thanks to <a href="https://github.com/TylerBrock">Tyler Brock</a></li>
<li>Adds the username to reset password success pages, thanks to <a href="https://github.com/HQarroum">Halim Qarroum</a></li>
<li>Better support for Redis cache adapter, thanks to <a href="https://github.com/TylerBrock">Tyler Brock</a></li>
<li>Better coverage of Postgres, thanks to <a href="https://github.com/kulshekhar">Kulshekhar Kabra</a></li>
</ul>
<h4>Bug Fixes</h4>
<ul>
<li>Fixes issue when sending push to multiple installations, thanks to <a href="https://github.com/flovilmart">Florent Vilmart</a></li>
<li>Fixes issues with twitter authentication, thanks to <a href="https://github.com/jonas-db">jonas-db</a></li>
<li>Ignore createdAt fields update, thanks to <a href="https://github.com/yuki-takeichi">Yuki Takeichi</a></li>
<li>Improve support for array equality with LiveQuery, thanks to <a href="https://github.com/dpoetzsch">David Poetzsch-Heffter</a></li>
<li>Improve support for batch endpoint when serverURL and publicServerURL have different paths, thanks to <a href="https://github.com/flovilmart">Florent Vilmart</a></li>
<li>Support saving relation objects, thanks to <a href="https://github.com/yuki-takeichi">Yuki Takeichi</a></li>
</ul>
<h3>2.2.24</h3>
<h4>New Features</h4>
<ul>
<li>LiveQuery: Bring your own adapter (#2902), thanks to <a href="https://github.com/flovilmart">Florent Vilmart</a></li>
<li>LiveQuery: Adds “update” operator to update a query subscription (#2935), thanks to <a href="https://github.com/flovilmart">Florent Vilmart</a></li>
</ul>
<h4>Improvements</h4>
<ul>
<li>Better Postgres support, thanks to <a href="https://github.com/kulshekhar">Kulshekhar Kabra</a></li>
<li>Logs the function name when failing (#2963), thanks to <a href="https://github.com/michaelhelvey">Michael Helvey</a></li>
<li>CLI: forces closing the connections with SIGINT/SIGTERM (#2964), thanks to <a href="https://github.com/kulshekhar">Kulshekhar Kabra</a></li>
<li>Reduce the number of calls to the <code>_SCHEMA</code> table (#2912), thanks to <a href="https://github.com/steven-supersolid">Steven Shipton</a></li>
<li>LiveQuery: Support for Role ACL’s, thanks to <a href="https://github.com/aaron-blondeau-dose">Aaron Blondeau</a></li>
</ul>
<h4>Bug Fixes</h4>
<ul>
<li>Better support for checking application and client keys, thanks to <a href="https://github.com/steven-supersolid">Steven Shipton</a></li>
<li>Google OAuth, better support for android and web logins, thanks to <a href="https://github.com/flovilmart">Florent Vilmart</a></li>
</ul>
<h3>
2.2.23
</h3>
<ul>
<li>
Run liveQuery server from CLI with a different port, thanks to
<a href="https://github.com/flovilmart">
Florent Vilmart
</a>
</li>
<li>
Support for Postgres databaseURI, thanks to
<a href="https://github.com/kulshekhar">
Kulshekhar Kabra
</a>
</li>
<li>
Support for Postgres options, thanks to
<a href="https://github.com/kulshekhar">
Kulshekhar Kabra
</a>
</li>
<li>
Improved support for google login (id_token and access_token), thanks to
<a href="https://github.com/flovilmart">
Florent Vilmart
</a>
</li>
<li>
Improvements with VKontakte login, thanks to
<a href="https://github.com/antigp">
Eugene Antropov
</a>
</li>
<li>
Improved support for
<code>
select
</code>
and
<code>
include
</code>
, thanks to
<a href="https://github.com/flovilmart">
Florent Vilmart
</a>
</li>
</ul>
<h4>
Bug fixes
</h4>
<ul>
<li>
Fix error when updating installation with useMasterKey (#2888), thanks to
<a href="https://github.com/JeremyPlease">
Jeremy Louie
</a>
</li>
<li>
Fix bug affecting usage of multiple
<code>
notEqualTo
</code>
, thanks to
<a href="https://github.com/JeremyPlease">
Jeremy Louie
</a>
</li>
<li>
Improved support for null values in arrays, thanks to
<a href="https://github.com/flovilmart">
Florent Vilmart
</a>
</li>
</ul>
<h3>
2.2.22
</h3>
<ul>
<li>
Minimum nodejs engine is now 4.5
</li>
</ul>
<h4>
New Features
</h4>
<ul>
<li>
New: CLI for parse-live-query-server, thanks to
<a href="https://github.com/flovilmart">
Florent Vilmart
</a>
</li>
<li>
New: Start parse-live-query-server for parse-server CLI, thanks to
<a href="https://github.com/flovilmart">
Florent Vilmart
</a>
</li>
</ul>
<h4>
Bug fixes
</h4>
<ul>
<li>
Fix: Include with pointers are not conflicting with get CLP anymore, thanks to
<a href="https://github.com/flovilmart">
Florent Vilmart
</a>
</li>
<li>
Fix: Removes dependency on babel-polyfill, thanks to
<a href="https://github.com/flovilmart">
Florent Vilmart
</a>
</li>
<li>
Fix: Support nested select calls, thanks to
<a href="https://github.com/flovilmart">
Florent Vilmart
</a>
</li>
<li>
Fix: Use native column selection instead of runtime, thanks to
<a href="https://github.com/flovilmart">
Florent Vilmart
</a>
</li>
<li>
Fix: installationId header is properly used when updating
<code>
_Installation
</code>
objects, thanks to
<a href="https://github.com/flovilmart">
Florent Vilmart
</a>
</li>
<li>
Fix: don’t crash parse-server on improperly formatted live-query messages, thanks to
<a href="https://github.com/flovilmart">
Florent Vilmart
</a>
</li>
<li>
Fix: Passwords are properly stripped out of logs, thanks to
<a href="https://github.com/acinader">
Arthur Cinader
</a>
</li>
<li>
Fix: Lookup for email in username if email is not set, thanks to
<a href="https://github.com/flovilmart">
Florent Vilmart
</a>
</li>
</ul>
<h3>
2.2.21
</h3>
<ul>
<li>
Fix: Reverts removal of babel-polyfill
</li>
</ul>
<h3>
2.2.20
</h3>
<ul>
<li>
New: Adds CloudCode handler for
<code>
beforeFind
</code>
, thanks to
<a href="https://github.com/flovilmart">
Florent Vilmart
</a>
</li>
<li>
New: RedisCacheAdapter for syncing schema, role and user caches across servers, thanks to
<a href="https://github.com/flovilmart">
Florent Vilmart
</a>
</li>
<li>
New: Latest master build available at
<code>
ParsePlatform/parse-server#latest
</code>
, thanks to
<a href="https://github.com/flovilmart">
Florent Vilmart
</a>
</li>
<li>
Fix: Better support for upgradeToRevocableSession with missing session token, thanks to
<a href="https://github.com/flovilmart">
Florent Vilmart
</a>
</li>
<li>
Fix: Removes babel-polyfill runtime dependency, thanks to
<a href="https://github.com/flovilmart">
Florent Vilmart
</a>
</li>
<li>
Fix: Cluster option now support a boolean value for automatically choosing the right number of processes, thanks to
<a href="https://github.com/flovilmart">
Florent Vilmart
</a>
</li>
<li>
Fix: Filenames now appear correctly, thanks to
<a href="https://github.com/lama-buddy">
Lama Chandrasena
</a>
</li>
<li>
Fix:
<code>
_acl
</code>
is properly updated, thanks to
<a href="https://github.com/steven-supersolid">
Steven Shipton
</a>
</li>
</ul>
<p>
Other fixes by
<a href="https://github.com/mathiasrw">
Mathias Rangel Wulff
</a>
</p>
<h3>
2.2.19
</h3>
<ul>
<li>
New: support for upgrading to revocable sessions, thanks to
<a href="https://github.com/flovilmart">
Florent Vilmart
</a>
</li>
<li>
New: NullCacheAdapter for disabling caching, thanks to
<a href="https://github.com/yuki-takeichi">
Yuki Takeichi
</a>
</li>
<li>
New: Account lockout policy
<a href="https://github.com/ParsePlatform/parse-server/pull/2601">
#2601
</a>
, thanks to
<a href="https://github.com/cherukumilli">
Diwakar Cherukumilli
</a>
</li>
<li>
New: Jobs endpoint for defining and run jobs (no scheduling), thanks to
<a href="https://github.com/flovilmart">
Florent Vilmart
</a>
</li>
<li>
New: Add --cluster option to the CLI, thanks to
<a href="https://github.com/flovilmart">
Florent Vilmart
</a>
</li>
<li>
New: Support for login with
<a href="http://vk.com">
vk.com
</a>
, thanks to
<a href="https://github.com/nbolatov">
Nurdaulet Bolatov
</a>
</li>
<li>
New: experimental support for postgres databases, thanks to
<a href="https://github.com/flovilmart">
Florent Vilmart
</a>
</li>
<li>
Fix: parse-server doesn’t call next() after successful responses, thanks to
<a href="https://github.com/flovilmart">
Florent Vilmart
</a>
</li>
<li>
Fix: Nested objects are properly includeed with Pointer Permissions on, thanks to
<a href="https://github.com/flovilmart">
Florent Vilmart
</a>
</li>
<li>
Fix: null values in include calls are properly handled, thanks to
<a href="https://github.com/flovilmart">
Florent Vilmart
</a>
</li>
<li>
Fix: Schema validations now runs after beforeSave hooks, thanks to
<a href="https://github.com/flovilmart">
Florent Vilmart
</a>
</li>
<li>
Fix: usersname and passwords are properly type checked, thanks to
<a href="https://github.com/bamwang">
Bam Wang
</a>
</li>
<li>
Fix: logging in info log would log also in error log, thanks to
<a href="https://github.com/flovilmart">
Florent Vilmart
</a>
</li>
<li>
Fix: removes extaneous logging from ParseLiveQueryServer, thanks to
<a href="https://github.com/flavionegrao">
Flavio Torres
</a>
</li>
<li>
Fix: support for Range requests for files, thanks to
<a href="https://github.com/Bragegs">
Brage G. Staven
</a>
</li>
</ul>
<h3>
2.2.18
</h3>
<ul>
<li>
Fix: Improve support for objects in push alert, thanks to
<a href="https://github.com/alenoir">
Antoine Lenoir
</a>
</li>
<li>
Fix; Prevent pointed from getting clobbered when they are changed in a beforeSave, thanks to
<a href="https://github.com/sud80">
sud
</a>
</li>
<li>
Fix: Improve support for “Bytes” type, thanks to
<a href="https://github.com/conghoang">
CongHoang
</a>
</li>
<li>
Fix: Better logging compatability with
<a href="http://Parse.com">
Parse.com
</a>
, thanks to
<a href="https://github.com/acinader">
Arthur Cinader
</a>
</li>
<li>
New: Add Janrain Capture and Janrain Engage auth provider, thanks to
<a href="https://github.com/AndrewLane">
Andrew Lane
</a>
</li>
<li>
Improved: Include content length header in files response, thanks to
<a href="https://github.com/vbsteven">
Steven Van Bael
</a>
</li>
<li>
Improved: Support byte range header for files, thanks to
<a href="https://github.com/Bragegs">
Brage G. Staven
</a>
</li>
<li>
Improved: Validations for LinkedIn access_tokens, thanks to
<a href="https://github.com/felix-dumit">
Felix Dumit
</a>
</li>
<li>
Improved: Experimental postgres support, thanks to
<a href="https://github.com/flovilmart">
Florent Vilmart
</a>
</li>
<li>
Perf: Use native bcrypt implementation if available, thanks to
<a href="https://github.com/flovilmart">
Florent Vilmart
</a>
</li>
</ul>
<h3>
2.2.17 (07/23/2016)
</h3>
<p>
<a href="https://github.com/ParsePlatform/parse-server/compare/2.2.16...2.2.17">
Full Changelog
</a>
</p>
<ul>
<li>
Cloud code logs
<a href="https://github.com/ParsePlatform/parse-server/pull/2370">
#2370
</a>
(
<a href="https://github.com/flovilmart">
flovilmart
</a>
)
</li>
<li>
Make sure _PushStatus operations are run in order
<a href="https://github.com/ParsePlatform/parse-server/pull/2367">
#2367
</a>
(
<a href="https://github.com/flovilmart">
flovilmart
</a>
)
</li>
<li>
Typo fix for error message when can’t ensure uniqueness of user email addresses
<a href="https://github.com/ParsePlatform/parse-server/pull/2360">
#2360
</a>
(
<a href="https://github.com/AndrewLane">
AndrewLane
</a>
)
</li>
<li>
LiveQuery constrains matching fix
<a href="https://github.com/ParsePlatform/parse-server/pull/2357">
#2357
</a>
(
<a href="https://github.com/simonas-notcat">
simonas-notcat
</a>
)
</li>
<li>
Fix typo in logging for commander parseConfigFile
<a href="https://github.com/ParsePlatform/parse-server/pull/2352">
#2352
</a>
(
<a href="https://github.com/AndrewLane">
AndrewLane
</a>
)
</li>
<li>
Fix minor typos in test names
<a href="https://github.com/ParsePlatform/parse-server/pull/2351">
#2351
</a>
(
<a href="https://github.com/acinader">
acinader
</a>
)
</li>
<li>
Makes sure we don’t strip authData or session token from users using masterKey
<a href="https://github.com/ParsePlatform/parse-server/pull/2348">
#2348
</a>
(
<a href="https://github.com/flovilmart">
flovilmart
</a>
)
</li>
<li>
Run coverage with istanbul
<a href="https://github.com/ParsePlatform/parse-server/pull/2340">
#2340
</a>
(
<a href="https://github.com/flovilmart">
flovilmart
</a>
)
</li>
<li>
Run next() after successfully sending data to the client
<a href="https://github.com/ParsePlatform/parse-server/pull/2338">
#2338
</a>
(
<a href="https://github.com/blacha">
blacha
</a>
)
</li>
<li>
Cache all the mongodb/version folder
<a href="https://github.com/ParsePlatform/parse-server/pull/2336">
#2336
</a>
(
<a href="https://github.com/flovilmart">
flovilmart
</a>
)
</li>
<li>
updates usage of setting: emailVerifyTokenValidityDuration
<a href="https://github.com/ParsePlatform/parse-server/pull/2331">
#2331
</a>
(
<a href="https://github.com/cherukumilli">
cherukumilli
</a>
)
</li>
<li>
Update Mongodb client to 2.2.4
<a href="https://github.com/ParsePlatform/parse-server/pull/2329">
#2329
</a>
(
<a href="https://github.com/flovilmart">
flovilmart
</a>
)
</li>
<li>
Allow usage of analytics adapter
<a href="https://github.com/ParsePlatform/parse-server/pull/2327">
#2327
</a>
(
<a href="https://github.com/deashay">
deashay
</a>
)
</li>
<li>
Fix flaky tests
<a href="https://github.com/ParsePlatform/parse-server/pull/2324">
#2324
</a>
(
<a href="https://github.com/flovilmart">
flovilmart
</a>
)
</li>
<li>
don’t serve null authData values
<a href="https://github.com/ParsePlatform/parse-server/pull/2320">
#2320
</a>
(
<a href="https://github.com/yuzeh">
yuzeh
</a>
)
</li>
<li>
Fix null relation problem
<a href="https://github.com/ParsePlatform/parse-server/pull/2319">
#2319
</a>
(
<a href="https://github.com/flovilmart">
flovilmart
</a>
)
</li>
<li>
Clear the connectionPromise upon close or error
<a href="https://github.com/ParsePlatform/parse-server/pull/2314">
#2314
</a>
(
<a href="https://github.com/flovilmart">
flovilmart
</a>
)
</li>
<li>
Report validation errors with correct error code
<a href="https://github.com/ParsePlatform/parse-server/pull/2299">
#2299
</a>
(
<a href="https://github.com/flovilmart">
flovilmart
</a>
)
</li>
<li>
Parses correctly Parse.Files and Dates when sent to Cloud Code Functions
<a href="https://github.com/ParsePlatform/parse-server/pull/2297">
#2297
</a>
(
<a href="https://github.com/flovilmart">
flovilmart
</a>
)
</li>
<li>
Adding proper generic Not Implemented.
<a href="https://github.com/ParsePlatform/parse-server/pull/2292">
#2292
</a>
(
<a href="https://github.com/vitaly-t">
vitaly-t
</a>
)
</li>
<li>
Adds schema caching capabilities (5s by default)
<a href="https://github.com/ParsePlatform/parse-server/pull/2286">
#2286
</a>
(
<a href="https://github.com/flovilmart">
flovilmart
</a>
)
</li>
<li>
add digits oauth provider
<a href="https://github.com/ParsePlatform/parse-server/pull/2284">
#2284
</a>
(
<a href="https://github.com/ranhsd">
ranhsd
</a>
)
</li>
<li>
Improve installations query
<a href="https://github.com/ParsePlatform/parse-server/pull/2281">
#2281
</a>
(
<a href="https://github.com/flovilmart">
flovilmart
</a>
)
</li>
<li>
Adding request headers to cloud functions fixes #1461
<a href="https://github.com/ParsePlatform/parse-server/pull/2274">
#2274
</a>
(
<a href="https://github.com/blacha">
blacha
</a>
)
</li>
<li>
Creates a new sessionToken when updating password
<a href="https://github.com/ParsePlatform/parse-server/pull/2266">
#2266
</a>
(
<a href="https://github.com/flovilmart">
flovilmart
</a>
)
</li>
<li>
Add Gitter chat link to the README.
<a href="https://github.com/ParsePlatform/parse-server/pull/2264">
#2264
</a>
(
<a href="https://github.com/nlutsenko">
nlutsenko