-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild-history
6156 lines (6156 loc) · 458 KB
/
build-history
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
#7437 started: develop tests: Speed up and fix travis (#4453)
#7436 passed: develop (PR #4448) Settings: Don't filter out users based on `password` or `hash`
#7435 failed: rhansen-passwordlessuser Settings: Don't filter out users based on `password` or `hash`
#7434 passed: develop (PR #4450) .travis.yml: Install ep_readonly_guest
#7433 passed: rhansen-readonly_guest .travis.yml: Install ep_readonly_guest
#7432 failed: develop tests: Clear auth hooks before running import/export unit tests
#7431 passed: develop (PR #4453) fix flaky helper.js test
#7430 passed: test-travis fix flaky helper.js test
#7429 passed: test-travis 15 minutes timeout should be enough
#7428 passed: test-travis remote_runner.js: set default exit code to 1
#7427 passed: test-travis remote_runner.js: exit with code 0 only when the same number of worker, that had been queued, finished without failures
#7426 passed: test-travis decrease queuedWorker after browser.quit
#7425 passed: develop (PR #4450) .travis.yml: Install ep_readonly_guest
#7424 failed: rhansen-readonly_guest .travis.yml: Install ep_readonly_guest
#7423 passed: develop (PR #4452) tests: Clear auth hooks before running import/export unit tests
#7422 failed: rhansen-tests tests: Clear auth hooks before running import/export unit tests
#7421 failed: test-travis remove console.log
#7420 passed: develop (PR #4448) Settings: Don't filter out users based on `password` or `hash`
#7419 failed: rhansen-passwordlessuser Settings: Don't filter out users based on `password` or `hash`
#7418 failed: develop (PR #4452) tests: Clear auth hooks before running socket.io unit tests
#7417 passed: rhansen-tests tests: Clear auth hooks before running socket.io unit tests
#7416 passed: develop tests: Clear hooks before running webaccess tests
#7415 passed: test-travis check if all browser tests have been started
#7414 passed: test-travis install libreoffice also for backend tests with plugins
#7413 passed: develop (PR #4451) tests: Clear hooks before running webaccess tests
#7412 passed: test-travis fix travis_wait
#7411 passed: rhansen-webaccess tests: Clear hooks before running webaccess tests
#7410 failed: test-travis change travis build timeout to 20 minutes
#7409 errored: test-travis travis.yml: because we define jobs and libreoffice is currently only used on backend tests, we should install it only during backend test runner. this should speed up the other jobs a little bit
#7408 failed: develop (PR #4439) Undo erroneous whitespace changes
#7407 passed: various-checkPlugins-improvements Undo erroneous whitespace changes
#7406 failed: develop (PR #4450) .travis.yml: Install ep_readonly_guest
#7405 failed: rhansen-readonly_guest .travis.yml: Install ep_readonly_guest
#7404 failed: develop .travis.yml: Factor out common plugin install command
#7403 passed: develop (PR #4449) .travis.yml: Factor out common plugin install command
#7402 passed: rhansen-travis .travis.yml: Factor out common plugin install command
#7401 passed: develop (PR #4439) should parse
#7400 passed: various-checkPlugins-improvements should parse
#7399 failed: develop security: lockfile lint check (#4446)
#7398 passed: develop docs: Migrate from Travis-ci.org to .com
#7397 passed: develop (PR #4439) seperate
#7396 failed: various-checkPlugins-improvements seperate
#7395 passed: develop (PR #4448) Settings: Don't filter out users based on `password` or `hash`
#7394 passed: rhansen-passwordlessuser Settings: Don't filter out users based on `password` or `hash`
#7393 canceled: develop (PR #4448) Settings: Don't filter out users based on `password` or `hash`
#7392 canceled: develop (PR #4439) own test
#7391 passed: various-checkPlugins-improvements own test
#7390 canceled: rhansen-passwordlessuser Settings: Don't filter out users based on `password` or `hash`
#7389 passed: develop (PR #4446) no need for elevated priv
#7388 failed: lint-package-lock no need for elevated priv
#7387 errored: develop (PR #4446) tidy
#7386 errored: lint-package-lock tidy
#7385 canceled: develop (PR #4446) move to own test
#7384 canceled: lint-package-lock move to own test
#7383 failed: develop (PR #4439) shift lint test to a seperate test
#7382 passed: various-checkPlugins-improvements shift lint test to a seperate test
#7381 canceled: develop (PR #4439) src/package-lock.json would be wrong path for a plugin...
#7380 canceled: various-checkPlugins-improvements src/package-lock.json would be wrong path for a plugin...
#7379 canceled: develop (PR #4439) remove duplicates
#7378 failed: various-checkPlugins-improvements remove duplicates
#7377 passed: develop (PR #4446) change order
#7376 failed: lint-package-lock change order
#7375 errored: develop (PR #4446) lockfile lint check
#7374 errored: lint-package-lock lockfile lint check
#7373 passed: develop docs: Migrate from Travis-ci.org to .com
#7372 passed: develop (PR #4439) bump version
#7371 passed: various-checkPlugins-improvements bump version
#7370 passed: develop (PR #4439) shift to .com for travis
#7369 passed: various-checkPlugins-improvements shift to .com for travis
#7368 passed: develop docs: Migrate from Travis-ci.org to .com
#7367 passed: develop remove broken async inclusion in tar.json
#7366 canceled: develop remove broken async inclusion in tar.json
#7365 canceled: develop webaccess: Remove user's password from session info
#7364 passed: develop (PR #4439) allow github to handle npm publish
#7363 passed: various-checkPlugins-improvements allow github to handle npm publish
#7362 canceled: develop (PR #4439) derp
#7361 canceled: various-checkPlugins-improvements derp
#7360 canceled: develop (PR #4439) indent json
#7359 canceled: various-checkPlugins-improvements indent json
#7358 canceled: develop (PR #4439) update core plugins script
#7357 canceled: various-checkPlugins-improvements update core plugins script
#7356 canceled: develop (PR #4439) add funding
#7355 canceled: various-checkPlugins-improvements add funding
#7354 passed: develop docs: fix key in padUpdate context
#7353 canceled: develop (PR #4439) docs for autopublish
#7352 canceled: various-checkPlugins-improvements docs for autopublish
#7351 passed: develop (PR #4442) remove broken async inclusion in tar.json
#7350 passed: fix-tar.json remove broken async inclusion in tar.json
#7349 passed: develop docs: fix key in padUpdate context
#7348 errored: develop (PR #4441) docs: fix key in padUpdate context
#7347 passed: develop (PR #4440) ace.js: fix the logic to inline CSS
#7346 failed: fix-css-inlining ace.js: fix the logic to inline CSS
#7345 passed: develop (PR #4439) autofix missing package-lock.json
#7344 passed: various-checkPlugins-improvements autofix missing package-lock.json
#7343 canceled: develop (PR #4439) check for autopublish
#7342 passed: develop Localisation updates from https://translatewiki.net.
#7341 canceled: various-checkPlugins-improvements check for autopublish
#7340 canceled: various-checkPlugins-improvements abort if not git folder and check for package-lock.json
#7339 passed: develop Localisation updates from https://translatewiki.net.
#7338 passed: develop Use isHttpError utility provided by http-errors
#7337 passed: develop Use isHttpError utility provided by http-errors
#7336 errored: develop (PR #4437) Use isHttpError utility provided by http-errors
#7335 canceled: develop (PR #4437) Use isHttpError utility provided by http-errors
#7334 failed: develop Display outline when toolbar button focused
#7333 passed: develop (PR #4436) Display outline when toolbar button focused
#7332 passed: develop (PR #4436) Display outline when toolbar button focused
#7331 passed: develop pad: Don't paste when middle-clicking on a link
#7330 passed: develop (PR #4435) webaccess: Remove user's password from session info
#7329 passed: rhansen-visible-password webaccess: Remove user's password from session info
#7328 passed: develop (PR #4434) pad: Don't paste when middle-clicking on a link
#7327 passed: rhansen-middle-click-link pad: Don't paste when middle-clicking on a link
#7326 failed: rhansen-4400 import: Ajaxify pad import
#7325 failed: develop (PR #4400) import: Ajaxify pad import
#7324 failed: develop utils: Fix commit checking on detached HEAD
#7323 passed: develop editor: allow paste into links (#3802)
#7322 failed: relaxed-ci-constraints tests: relaxed constraint on the number of interval triggers
#7321 canceled: relaxed-ci-constraints even more relaxed
#7320 failed: develop editor: allow paste into links (#3802)
#7319 errored: develop (PR #3802) allow paste into links
#7318 passed: develop hooks: Rewrite `callAll` and `aCallAll` for consistency
#7317 passed: develop tests: remove ep_webrtc for now until it's stable
#7316 failed: develop Added nl translations for adminpage
#7315 failed: rhansen-4404 hooks: Rewrite `callAll` and `aCallAll` for consistency
#7314 passed: develop (PR #4404) hooks: Rewrite `callAll` and `aCallAll` for consistency
#7313 canceled: develop Create FUNDING.yml
#7312 failed: develop tests: 10 sec maximum wait time for timeslider (#4430)
#7311 errored: develop (PR #4432) Added nl translations for adminpage
#7310 canceled: develop tests: 10 sec maximum wait time for timeslider (#4430)
#7309 passed: develop (PR #4431) utils: Fix commit checking on detached HEAD
#7308 errored: develop (PR #4430) tests: 10 sec maximum wait time for timeslider
#7307 passed: eplite-relaxed-limit-for-loading-timeslider tests: 10 sec maximum wait time for timeslider
#7306 passed: develop docs: Discord channel link in README (#4429)
#7305 passed: develop docs: Discord channel link in README (#4429)
#7304 errored: develop (PR #4429) Update README.md
#7303 canceled: develop (PR #4429) Add link to discord channel in readme?
#7302 canceled: develop tests: relaxed constraint on the number of interval triggers (#4427)
#7301 canceled: develop (PR #4427) tests: relaxed constraint on the number of interval triggers
#7300 passed: relaxed-ci-constraints tests: relaxed constraint on the number of interval triggers
#7299 passed: develop Localisation updates from https://translatewiki.net.
#7298 passed: develop (PR #4423) ep_ prefix for cookies
#7297 failed: rhansen-4404 hooks: Rewrite `callAll` and `aCallAll` for consistency
#7296 passed: develop (PR #4404) hooks: Rewrite `callAll` and `aCallAll` for consistency
#7295 failed: rhansen-4400 import: Ajaxify pad import
#7294 failed: develop (PR #4400) import: Ajaxify pad import
#7293 errored: rhansen-4400 import: Ajaxify pad import
#7292 failed: develop (PR #4400) import: Ajaxify pad import
#7291 passed: webdriver-selenium increase timeout
#7290 canceled: webdriver-selenium test
#7289 canceled: webdriver-selenium test safari
#7288 failed: webdriver-selenium test
#7287 failed: webdriver-selenium executeScript not execute
#7286 failed: webdriver-selenium executeScript not execute
#7285 passed: webdriver-selenium executeScript not execute
#7284 passed: webdriver-selenium executeScript not execute
#7283 canceled: webdriver-selenium test
#7282 canceled: webdriver-selenium test
#7281 passed: webdriver-selenium test
#7280 failed: webdriver-selenium test
#7279 failed: webdriver-selenium test
#7278 passed: webdriver-selenium remove docker from CI
#7277 passed: develop tests: refactor some frontend tests (#4408)
#7276 passed: develop tests: refactor some frontend tests (#4408)
#7275 canceled: develop plugins: include more data within padUpdate hook (#4425)
#7274 errored: develop (PR #4425) docs: new context fields in padUpdate
#7273 canceled: develop (PR #4425) Including more data at pad update event
#7272 passed: develop (PR #4408) more explicit test for linesDiv
#7271 passed: frontend-tests-work more explicit test for linesDiv
#7270 passed: develop (PR #4423) ep_ prefix for cookies
#7269 passed: develop (PR #4408) timeslider_follow: fix Range detection
#7268 passed: frontend-tests-work timeslider_follow: fix Range detection
#7267 failed: test-responsivness key event combinations
#7266 failed: develop tests: better timeslider follow contents (#4421)
#7265 failed: develop (PR #4400) import: Ajaxify pad import
#7264 failed: rhansen-pr4404 hooks: Rewrite `callAll` and `aCallAll` for consistency
#7263 passed: develop (PR #4404) hooks: Rewrite `callAll` and `aCallAll` for consistency
#7262 failed: develop Use an ellipsis instead of two periods
#7261 failed: develop Use an ellipsis instead of two periods
#7260 failed: develop pad: Pop up an error message dialog box upon socket.io error
#7259 failed: rhansen-4420 pad: Pop up an error message dialog box upon socket.io error
#7258 passed: develop (PR #4420) pad: Pop up an error message dialog box upon socket.io error
#7257 passed: develop (PR #4419) Use an ellipsis instead of two periods
#7256 failed: rhansen-4420 pad: Pop up an error message dialog box upon socket.io error
#7255 passed: develop (PR #4420) pad: Pop up an error message dialog box upon socket.io error
#7254 errored: rhansen-4420 pad: Pop up an error message dialog box upon socket.io error
#7253 passed: develop (PR #4420) pad: Pop up an error message dialog box upon socket.io error
#7252 failed: develop (PR #4421) better follow contents
#7251 passed: develop (PR #4420) pad: Pop up an error message dialog box upon socket.io error
#7250 passed: develop (PR #4420) pad: Pop up an error message dialog box upon socket.io error
#7249 canceled: develop (PR #4420) pad: Pop up an error message dialog box upon socket.io error
#7248 failed: develop Localisation updates from https://translatewiki.net.
#7247 passed: develop (PR #4420) pad: Pop up an error message dialog box upon socket.io error
#7246 passed: develop (PR #4420) pad: Pop up an error message dialog box upon socket.io error
#7245 canceled: develop (PR #4420) Pop up an error message dialog box upon socket.io error
#7244 failed: develop Localisation updates from https://translatewiki.net.
#7243 passed: develop (PR #4419) Use an ellipsis instead of two periods
#7242 failed: develop Localisation updates from https://translatewiki.net.
#7241 failed: develop (PR #4408) disable responsivness and regression test in timeslider_follow
#7240 passed: frontend-tests-work disable responsivness and regression test in timeslider_follow
#7239 failed: develop (PR #4408) Merge branch 'develop' into frontend-tests-work
#7238 failed: frontend-tests-work Merge branch 'develop' into frontend-tests-work
#7237 failed: better-followcontents better follow contents
#7236 failed: frontend-tests-work lower expected waitFor/waitForPromise interval check
#7235 failed: develop (PR #4408) timeslider_follow: check if it's following to the correct lines
#7234 failed: frontend-tests-work timeslider_follow: check if it's following to the correct lines
#7233 failed: develop tests: Tune `waitForPromise()` poll count test some more
#7232 failed: rhansen-pr4404 hooks: Rewrite `callAll` and `aCallAll` for consistency
#7231 passed: develop (PR #4404) hooks: Rewrite `callAll` and `aCallAll` for consistency
#7230 failed: rhansen-pr4404 hooks: Rewrite `callAll` and `aCallAll` for consistency
#7229 passed: develop (PR #4404) hooks: Rewrite `callAll` and `aCallAll` for consistency
#7228 failed: develop tests: Tune `waitForPromise()` poll count test some more
#7227 failed: develop tests: Tune `waitForPromise()` poll count test some more
#7226 failed: develop (PR #4404) hooks: Rewrite `callAll` and `aCallAll` for consistency
#7225 failed: rhansen-pr4404 hooks: Rewrite `callAll` and `aCallAll` for consistency
#7224 failed: develop tests: Tune `waitForPromise()` poll count test some more
#7223 failed: develop tests: Tune `waitForPromise()` poll count test some more
#7222 failed: develop tests: Tune `waitForPromise()` poll count test some more
#7221 errored: develop (PR #4416) tests: Tune `waitForPromise()` poll count test some more
#7220 failed: develop (PR #4408) more fixes from the review
#7219 failed: frontend-tests-work more fixes from the review
#7218 failed: develop tests: Tune `waitForPromise()` poll count test
#7217 errored: develop (PR #4415) tests: Tune `waitForPromise()` poll count test
#7216 failed: develop tests: Include the filename in the test output
#7215 failed: develop tests: `waitForPromise()` test improvements
#7214 passed: develop (PR #4414) tests: `waitForPromise()` test improvements
#7213 passed: develop (PR #4414) tests: `waitForPromise()` test improvements
#7212 passed: develop CSP: Move `index.html` inline code to separate `.js` file
#7211 failed: develop CSP: Move `index.html` inline code to separate `.js` file
#7210 passed: develop (PR #4410) CSP: Move `index.html` inline code to separate `.js` file
#7209 passed: develop Localisation updates from https://translatewiki.net.
#7208 failed: develop Localisation updates from https://translatewiki.net.
#7207 passed: develop (PR #4408) more fixes from the review
#7206 failed: frontend-tests-work more fixes from the review
#7205 failed: frontend-tests-work make textLines() depend on linesDiv()
#7204 failed: develop (PR #4408) make textLines() depend on linesDiv()
#7203 passed: develop (PR #4408) tests: Use default arguments for `helper.waitFor`
#7202 passed: frontend-tests-work tests: Use default arguments for `helper.waitFor`
#7201 failed: readd-comments-to-tests putting comments page back in for testing
#7200 passed: webdriver-selenium enable tunnelIdentifier
#7199 passed: develop (PR #4410) CSP: Move `index.html` inline code to separate `.js` file
#7198 passed: webdriver-selenium add sleep
#7197 passed: develop CSP: Disable the indexCustomInlineScripts hook
#7196 passed: webdriver-selenium re-add sauce tunnel
#7195 failed: webdriver-selenium fix
#7194 failed: webdriver-selenium readd env variables
#7193 failed: webdriver-selenium remove env variables
#7192 failed: webdriver-selenium fix
#7191 failed: webdriver-selenium fix
#7190 failed: webdriver-selenium fix
#7189 failed: webdriver-selenium try
#7188 passed: develop plugins: Delete noisy and useless debug message (#4409)
#7187 passed: develop plugins: Delete noisy and useless debug message (#4409)
#7186 passed: develop timeslider: bugfix: follow pad contents - only goToLineNumber if it exists (#4390)
#7185 passed: develop (PR #4402) CSP: Disable the indexCustomInlineScripts hook
#7184 passed: develop (PR #4409) plugins: Delete noisy and useless debug message
#7183 failed: develop (PR #4404) hooks: Rewrite `callAll` and `aCallAll` for consistency
#7182 failed: develop (PR #4404) hooks: Rewrite `callAll` and `aCallAll` for consistency
#7181 failed: develop (PR #4404) hooks: Rewrite `callAll` and `aCallAll` for consistency
#7180 failed: develop (PR #4404) hooks: Rewrite `callAll` and `aCallAll` for consistency
#7179 passed: develop (PR #4408) timeslider_follow: increase number of revision for Edge
#7178 failed: test-responsivness increase timeout
#7177 failed: test-responsivness events are fired regardless of pad size
#7176 failed: develop timeslider: bugfix: follow pad contents - only goToLineNumber if it exists (#4390)
#7175 passed: frontend-tests-work timeslider_follow: increase number of revision for Edge
#7174 failed: frontend-tests-work tests: refactor timeslider_follow
#7173 failed: develop timeslider: bugfix: follow pad contents - only goToLineNumber if it exists (#4390)
#7172 failed: develop (PR #4390) Revert "add test coverage"
#7171 failed: fix-pad-follow-contents Revert "add test coverage"
#7170 failed: frontend-tests-work tests: refactor timeslider_follow
#7169 failed: frontend-tests-work tests: refactor timeslider_labels
#7168 failed: frontend-tests-work tests: refactor timeslider_numeric_padID
#7167 passed: frontend-tests-work tests: refactor chat.js
#7166 failed: frontend-tests-work add test to check if helper.edit() supports line numbers
#7165 failed: frontend-tests-work introduce helper.edit to write to a pad
#7164 passed: develop (PR #4407) tests: Include the filename in the test output
#7163 failed: develop (PR #4404) hooks: Rewrite `aCallAll` to support legacy hook functions
#7162 passed: develop (PR #4404) debugging
#7161 failed: develop (PR #4404) debugging
#7160 failed: develop (PR #4404) debugging
#7159 failed: develop (PR #4404) debugging
#7158 failed: develop (PR #4404) debugging
#7157 canceled: develop (PR #4404) debugging
#7156 canceled: develop (PR #4404) debugging
#7155 errored: develop (PR #4404) debugging
#7154 errored: develop (PR #4404) debugging
#7153 errored: develop (PR #4404) hooks: Rewrite `aCallAll` to support legacy hook functions
#7152 failed: frontend-tests-work add waitForPromise method and test for it
#7151 passed: develop tests: Simplify API key reading
#7150 passed: develop tests: Simplify API key reading
#7149 failed: develop Localisation updates from https://translatewiki.net.
#7148 passed: develop (PR #4406) tests: Simplify API key reading
#7147 errored: develop (PR #4404) hooks: Rewrite `aCallAll` to support legacy hook functions
#7146 passed: develop Localisation updates from https://translatewiki.net.
#7145 errored: develop (PR #4404) hooks: Rewrite `aCallAll` to support legacy hook functions
#7144 errored: develop (PR #4404) hooks: Rewrite `aCallAll` to handle legacy hook functions
#7143 errored: develop (PR #4404) hooks: Rewrite `aCallAll` to handle legacy hook functions
#7142 errored: develop (PR #4404) hooks: Rewrite `aCallAll` to handle legacy hook functions
#7141 passed: develop Security: FEATURE REMOVAL: Remove all plain text password logic and ui (#4178)
#7140 passed: develop Security: FEATURE REMOVAL: Remove all plain text password logic and ui (#4178)
#7139 passed: develop HTML export: Await async hook completion before processing results
#7138 canceled: develop socketio: Mimic what Express does to get client IP address
#7137 passed: develop Make the aceAttribClasses hook harder to misuse
#7136 passed: develop (PR #4402) CSP: Disable the indexCustomInlineScripts hook
#7135 failed: develop (PR #4400) import: Ajaxify pad import
#7134 failed: develop (PR #4400) import: Ajaxify pad import
#7133 passed: develop (PR #4178) Add a scary warning to CHANGELOG.md
#7132 failed: develop (PR #4178) Delete more pad password stuff
#7131 passed: develop (PR #4178) `pad.permissionDenied` is still used for authz failures
#7130 passed: develop (PR #4399) socketio: Mimic what Express does to get client IP address
#7129 passed: develop (PR #4398) Make the aceAttribClasses hook harder to misuse
#7128 passed: develop (PR #4397) HTML export: Await async hook completion before processing results
#7127 passed: develop (PR #4397) HTML export: Wait for async hook completion before processing results
#7126 passed: develop (PR #4178) remove language string
#7125 passed: develop tests: re-enable docker tests in travis (#4395)
#7124 passed: develop tests: re-enable docker tests in travis (#4395)
#7123 passed: develop (PR #4395) hrm how about this
#7122 passed: docker-travis hrm how about this
#7121 canceled: develop (PR #4395) re-enable docker tests in travis
#7120 canceled: docker-travis re-enable docker tests in travis
#7119 passed: develop legacySupport: Run node 10 with '--experimental_worker' flags (#4392)
#7118 passed: workaround-dom-latency add test for #4389
#7117 passed: develop (PR #4392) Use dedicated function to retrieve node/npm program version
#7116 failed: develop (PR #4292) fix: remove unnecessary log
#7115 failed: develop (PR #4292) feat: getFaviconAddress test case
#7114 passed: develop tests: Disable non-test logging unless level <= DEBUG
#7113 errored: develop Update `CHANGELOG.md` with the changes so far (#4393)
#7112 failed: develop (PR #4292) Merge branch 'develop' into fix/static_files
#7111 failed: develop (PR #4390) rename suite so that the hooks do not interfere
#7110 failed: fix-pad-follow-contents rename suite so that the hooks do not interfere
#7109 failed: develop (PR #4390) need to wait, so that the changes are not merged into one changeset
#7108 failed: fix-pad-follow-contents need to wait, so that the changes are not merged into one changeset
#7107 failed: develop (PR #4390) increase helper.waitFor time limits
#7106 failed: fix-pad-follow-contents increase helper.waitFor time limits
#7105 failed: fix-pad-follow-contents increase timeout for test, not for helper.waitFor
#7104 failed: develop (PR #4390) increase timeout for test, not for helper.waitFor
#7103 failed: develop (PR #4390) fix
#7102 failed: fix-pad-follow-contents fix
#7101 passed: develop (PR #4393) Update `CHANGELOG.md` with the changes so far
#7100 passed: develop (PR #4392) Run node 10 with '--experimental_worker' flags
#7099 passed: develop (PR #4391) tests: Disable non-test logging unless level <= DEBUG
#7098 failed: develop (PR #4390) add timeout when going to timeslider
#7097 failed: fix-pad-follow-contents add timeout when going to timeslider
#7096 passed: develop (PR #4391) tests: Disable non-test logging unless level <= DEBUG
#7095 passed: develop import: Replace the `allowAnyoneToImport` check with `userCanModify`
#7094 failed: develop express: Move general Express setup from `webaccess.js`
#7093 failed: develop (PR #4390) add test coverage
#7092 failed: fix-pad-follow-contents add test coverage
#7091 passed: develop (PR #4383) import: Replace the `allowAnyoneToImport` check with `userCanModify`
#7090 passed: develop express: Move general Express setup from `webaccess.js`
#7089 failed: develop (PR #4390) timeslider follow pad contents: only goToLineNumber if it exists
#7088 failed: fix-pad-follow-contents timeslider follow pad contents: only goToLineNumber if it exists
#7087 failed: develop Localisation updates from https://translatewiki.net.
#7086 passed: develop (PR #4383) import: Replace the `allowAnyoneToImport` check with `userCanModify`
#7085 passed: develop (PR #4383) import: Replace the `allowAnyoneToImport` check with `userCanModify`
#7084 passed: develop (PR #4386) express: Move general Express setup from `webaccess.js`
#7083 passed: develop (PR #4386) express: Move general Express setup from `webaccess.js`
#7082 failed: develop cookies: Use `SameSite=None` if in an iframe from another site
#7081 passed: develop cookies: Use `SameSite=None` if in an iframe from another site
#7080 passed: develop (PR #4386) express: Move general Express setup from `webaccess.js`
#7079 passed: develop Localisation updates from https://translatewiki.net.
#7078 passed: develop (PR #4384) cookies: Use `SameSite=None` if in an iframe from another site
#7077 passed: develop (PR #4383) import: Replace the `allowAnyoneToImport` check with `userCanModify`
#7076 failed: develop Localisation updates from https://translatewiki.net.
#7075 failed: develop Localisation updates from https://translatewiki.net.
#7074 passed: develop (PR #4383) import: Replace the `allowAnyoneToImport` check with `userCanModify`
#7073 passed: develop security: Support proxy with rate limiting and include CI test coverage for nginx rev proxy (#4373)
#7072 passed: develop security: Support proxy with rate limiting and include CI test coverage for nginx rev proxy (#4373)
#7071 passed: develop i18n: Localize `/admin` pages (#4380)
#7070 passed: develop (PR #4292) remove unnecessary file log
#7069 passed: develop (PR #4292) remove unnecessary description
#7068 passed: develop (PR #4292) Merge branch 'fix/static_files' of https://github.com/HMarzban/etherpad-lite into fix/static_files
#7067 passed: develop (PR #4292) Merge branch 'develop' into fix/static_files
#7066 passed: develop (PR #4380) Localize `/admin` pages
#7065 passed: develop webaccess: Exempt `/favicon.ico` and `/locales.json` from auth checks
#7064 failed: debug-self-signed-cert run server in background
#7063 canceled: debug-self-signed-cert test self-signed cert
#7062 failed: develop webaccess: Exempt `/favicon.ico` and `/locales.json` from auth checks
#7061 passed: develop (PR #4373) remoteAddress[client.id] is set after connection is established, so it's always available in handleMessage
#7060 passed: fix-rate-limit remoteAddress[client.id] is set after connection is established, so it's always available in handleMessage
#7059 passed: develop package updates: update deps and resolve some potential security issues (#4369)
#7058 passed: develop (PR #4371) webaccess: Exempt `/favicon.ico` and `/locales.json` from auth checks
#7057 failed: develop package updates: update deps and resolve some potential security issues (#4369)
#7056 passed: develop (PR #4373) remoteAddress[client.id] is set after connection is established, so it's always available in handleMessage
#7055 failed: fix-rate-limit remoteAddress[client.id] is set after connection is established, so it's always available in handleMessage
#7054 passed: develop (PR #3981) more secure cookies
#7053 passed: develop (PR #3981) more secure cookies
#7052 passed: develop (PR #4178) remove all password logic and ui
#7051 failed: debug-select-formatting some debug logs
#7050 passed: develop (PR #4373) run docker exec without -d
#7049 failed: fix-rate-limit run docker exec without -d
#7048 failed: fix-rate-limit remove unnecessary package from docker image
#7047 passed: fix-rate-limit in case of reverse proxy setup use client.handshake.headers['x-forwarded-for'] and not client.handshake.address during rate limiting
#7046 failed: fix-rate-limit add test for ratelimit
#7045 failed: fix-ratelimit fix
#7044 failed: develop (PR #3953) update jquery autosize which doesn't suffer from CSP related issues
#7043 failed: fix-ratelimit debug
#7042 failed: fix-ratelimit debug
#7041 failed: fix-ratelimit remove sudo
#7040 failed: fix-ratelimit typo
#7039 errored: fix-ratelimit print settings.json
#7038 failed: fix-ratelimit typo
#7037 errored: fix-ratelimit use environment variables for docker
#7036 failed: fix-ratelimit use different pads to circumvent race condition in etherpad-cli-client
#7035 failed: fix-ratelimit fix path
#7034 errored: fix-ratelimit this is awful...custom Dockerfile and settings.json.docker only for this test
#7033 failed: fix-ratelimit fix
#7032 errored: fix-ratelimit remove debug log
#7031 errored: fix-ratelimit in case of trustProxy=true don't use client.handshake.address
#7030 errored: fix-ratelimit also send changesets via another IP
#7029 passed: develop (PR #4371) webaccess: Exempt `/favicon.ico` and `/locales.json` from auth checks
#7028 failed: develop Localisation updates from https://translatewiki.net.
#7027 canceled: fix-ratelimit add test for rate limit
#7026 passed: develop Localisation updates from https://translatewiki.net.
#7025 failed: fix-ratelimit docker into background without -d
#7024 failed: fix-ratelimit add more debug info
#7023 failed: fix-ratelimit add debug log
#7022 failed: fix-ratelimit test should fail with old behaviour
#7021 failed: fix-ratelimit change from 100ms to 101ms
#7020 failed: fix-ratelimit fix exit code handling
#7019 failed: fix-ratelimit in case of reverse proxy use ip from x-forwarded-for header
#7018 failed: fix-ratelimit add test for rate limit
#7017 errored: fix-rate-limit add sleep
#7016 failed: fix-ratelimit fix
#7015 failed: fix-ratelimit run installDeps
#7014 failed: fix-ratelimit fix require path
#7013 failed: fix-ratelimit add exit code
#7012 failed: fix-ratelimit fix require path
#7011 failed: fix-ratelimit package-lock
#7010 errored: fix-ratelimit Test should fail in case proxy IP is taken
#7009 errored: fix-ratelimit add etherpad-cli-client to dependencies
#7008 failed: fix-ratelimit fix
#7007 canceled: fix-ratelimit add test
#7006 passed: develop feature: New user-specific `readOnly` and `canCreate` settings (#4370)
#7005 passed: develop webaccess: Log hook errors
#7004 passed: develop (PR #4371) webaccess: Exempt `/favicon.ico` and `/locales.json` from auth checks
#7003 passed: develop (PR #4370) New user-specific `readOnly` and `canCreate` settings
#7002 passed: develop (PR #4367) webaccess: Log hook errors
#7001 passed: develop (PR #4369) more security issue resolution
#7000 passed: update-ueber-mssql more security issue resolution
#6999 canceled: update-ueber-mssql more deeper package lock updates
#6998 canceled: update-ueber-mssql package lock
#6997 canceled: update-ueber-mssql bump npm
#6996 passed: develop tests: disable a version of safari for now as its too buggy on sauce labs
#6995 errored: develop (PR #4368) tests: disable a version of safari for now as its too buggy on sauce labs
#6994 failed: temp-remove-safari tests: disable a version of safari for now as its too buggy on sauce labs
#6993 passed: develop (PR #4367) webaccess: Log hook errors
#6992 failed: develop security: Enable authorize plugins to grant read-only access
#6991 errored: develop (PR #4365) security: Enable authorize plugins to grant read-only access
#6990 passed: develop (PR #4365) security: Enable authorize plugins to grant read-only access
#6989 passed: develop allowing longer for FF to do timeslider rev test
#6988 errored: develop (PR #4366) allowing longer for FF to do timeslider rev test
#6987 failed: develop webaccess: Move pre-authn authz check to a separate hook
#6986 passed: tests-ff-longer allowing longer for FF to do timeslider rev test
#6985 passed: develop (PR #4365) security: Enable authorize plugins to grant read-only access
#6984 passed: develop (PR #4362) webaccess: Move pre-authn authz check to a separate hook
#6983 failed: develop tests: test coverage for read only pad ids (#4364)
#6982 passed: develop (PR #4362) webaccess: Move pre-authn authz check to a separate hook
#6981 passed: develop tests: adding a check before finishing responsiveness test - allowing load test to run for 25 instead of 30 seconds to facilitate travis performance. (#4363)
#6980 failed: develop (PR #4364) test coverage for read only pad ids
#6979 failed: readonly-pad-export-tests test coverage for read only pad ids
#6978 passed: develop tests: adding a check before finishing responsiveness test - allowing load test to run for 25 instead of 30 seconds to facilitate travis performance. (#4363)
#6977 failed: develop (PR #4363) slightly shorten load tests as they randomly give up around 30 seconds
#6976 passed: testing-something-on-resposiveness-test slightly shorten load tests as they randomly give up around 30 seconds
#6975 passed: develop (PR #4363) trying to add a delay to allow browsers to catch up with responsiveness test
#6974 failed: testing-something-on-resposiveness-test trying to add a delay to allow browsers to catch up with responsiveness test
#6973 failed: develop (PR #4363) trying to add a delay to allow browsers to catch up with responsiveness test
#6972 passed: testing-something-on-resposiveness-test trying to add a delay to allow browsers to catch up with responsiveness test
#6971 passed: develop (PR #4362) webaccess: Move pre-authn authz check to a separate hook
#6970 failed: develop webaccess: Log all authentication successes/failures
#6969 canceled: develop tests: support even slower safari (#4361)
#6968 errored: develop (PR #4361) tests: support even slower safari
#6967 failed: even-slower-safari tests: support even slower safari
#6966 canceled: develop (PR #4361) tests: support even slower safari
#6965 canceled: even-slower-safari tests: support even slower safari
#6964 errored: develop (PR #4358) webaccess: Log all authentication successes/failures
#6963 failed: develop Fix readOnly pad export
#6962 failed: develop tests: Check for true/false, not truthiness
#6961 failed: develop (PR #4359) tests: Check for true/false, not truthiness
#6960 passed: develop (PR #4358) webaccess: Log all authentication successes/failures
#6959 failed: develop tests: Include some plugins in tests (#4339)
#6958 errored: develop (PR #4339) readd responiveness coverage
#6957 failed: test-plugins readd responiveness coverage
#6956 canceled: develop (PR #4339) readd responiveness coverage
#6955 failed: test-plugins readd responiveness coverage
#6954 failed: develop webaccess: Split authFailure hook into authnFailure and authzFailure
#6953 canceled: develop Bump Etherpad version in src/package-lock.json
#6952 canceled: develop PadMessageHandler: Logging improvements
#6951 canceled: develop Fix typo in session check (sesion -> session)
#6950 passed: develop (PR #4357) Fix typo in session check (sesion -> session)
#6949 passed: develop (PR #4348) webaccess: Split authFailure hook into authnFailure and authzFailure
#6948 passed: develop (PR #4356) PadMessageHandler: Logging improvements
#6947 canceled: develop (PR #4356) PadMessageHandler: Logging improvements
#6946 canceled: develop (PR #4348) webaccess: Split authFailure hook into authnFailure and authzFailure
#6945 passed: develop security: Enable authorize plugins to grant modify-only access
#6944 failed: develop security: Enable authorize plugins to grant modify-only access
#6943 passed: develop (PR #4339) just remove files not folder
#6942 passed: test-plugins just remove files not folder
#6941 canceled: develop PadMessageHandler: Avoid redundant access checks
#6940 failed: develop pad: Revert back to sending `CLIENT_READY` on reconnect
#6939 passed: develop (PR #4352) Bump Etherpad version in src/package-lock.json
#6938 failed: develop (PR #4355) pad: Revert back to sending `CLIENT_READY` on reconnect
#6937 passed: develop (PR #4354) PadMessageHandler: Avoid redundant access checks
#6936 passed: develop (PR #4348) webaccess: Split authFailure hook into authnFailure and authzFailure
#6935 passed: develop (PR #4343) security: Enable authorize plugins to grant modify-only access
#6934 canceled: develop (PR #4339) remove frontend tests before running plugin tests
#6933 failed: test-plugins remove frontend tests before running plugin tests
#6932 failed: develop (PR #4339) Merge branch 'develop' of github.com:ether/etherpad-lite into test-plugins
#6931 failed: test-plugins Merge branch 'develop' of github.com:ether/etherpad-lite into test-plugins
#6930 passed: develop security: Fix authz check for pad names with encoded characters
#6929 canceled: develop PadMessageHandler: Block Promise resolution until message is handled
#6928 failed: develop tests: Rewrite import/export tests to use async and supertest
#6927 failed: develop PadMessageHandler: Always save the author ID in the session info
#6926 passed: develop (PR #4353) PadMessageHandler: Always save the author ID in the session info
#6925 passed: develop (PR #4352) Bump Etherpad version in src/package-lock.json
#6924 passed: develop (PR #4351) tests: Rewrite import/export tests to use async and supertest
#6923 failed: develop Localisation updates from https://translatewiki.net.
#6922 passed: fix-ratelimit in case of reverse proxy use ip from x-forwarded-for header
#6921 passed: develop (PR #4343) security: Enable authorize plugins to grant modify-only access
#6920 failed: develop (PR #4349) PadMessageHandler: Block Promise resolution until message is handled
#6919 passed: develop (PR #4348) webaccess: Split authFailure hook into authnFailure and authzFailure
#6918 passed: develop (PR #4346) security: Fix authz check for pad names with encoded characters
#6917 failed: develop Localisation updates from https://translatewiki.net.
#6916 failed: develop (PR #4343) security: Enable authorize plugins to grant modify-only access
#6915 passed: develop Localisation updates from https://translatewiki.net.
#6914 passed: develop security: Don't require express_sid if authn not required
#6913 failed: develop webaccess: Return 401 for authn failure, 403 for authz failure
#6912 failed: develop (PR #4339) test with and without plugins
#6911 failed: test-plugins test with and without plugins
#6910 passed: develop (PR #4292) fix: sonarcloud Duplication error
#6909 passed: develop (PR #4292) feat: test case for nested pad
#6908 passed: develop (PR #4254) webaccess: Return 401 for authn failure, 403 for authz failure
#6907 failed: develop (PR #4254) webaccess: Return 401 for authn failure, 403 for authz failure
#6906 passed: develop (PR #4254) webaccess: Return 401 for authn failure, 403 for authz failure
#6905 passed: develop (PR #4342) security: Don't require express_sid if authn not required
#6904 passed: develop (PR #4343) security: Enable authorize plugins to grant modify-only access
#6903 passed: develop (PR #4342) socket.io: Don't require express_sid if authn not required
#6902 passed: develop (PR #4342) socket.io: Don't require express_sid if authn not required
#6901 passed: develop (PR #4342) socket.io: Don't require express_sid if authn not required
#6900 failed: develop no need to ask for translations if no template files are included
#6899 failed: develop (PR #4339) does commenting out responsiveness mean that other tests dont break?
#6898 failed: test-plugins does commenting out responsiveness mean that other tests dont break?
#6897 failed: develop (PR #4339) lets get things passing then add comments plugin later
#6896 failed: test-plugins lets get things passing then add comments plugin later
#6895 failed: develop (PR #4339) Im an idiot
#6894 failed: test-plugins Im an idiot
#6893 canceled: develop (PR #4339) derp
#6892 errored: test-plugins derp
#6891 errored: develop (PR #4339) maybe working?
#6890 errored: test-plugins maybe working?
#6889 failed: develop (PR #4339) include plugins in tests
#6888 failed: test-plugins include plugins in tests
#6887 failed: develop no need to ask for translations if no template files are included
#6886 errored: develop (PR #4338) no need to ask for translations if no template files are included
#6885 passed: check-backend-plugin-tests no need to ask for translations if no template files are included
#6884 failed: develop PadMessageHandler: Move handleMessage hooks after access check
#6883 passed: develop Revert "tests: Use wtfnode to determine why mocha isn't exiting" (#4315)
#6882 passed: test-node-version not sure if this works
#6881 passed: test-node-version OMG its late
#6880 canceled: test-node-version no saucelabs
#6879 canceled: test-node-version we only support v10.13+ .....
#6878 canceled: test-node-version test node v10 releases
#6877 passed: develop (PR #4336) PadMessageHandler: Move handleMessage hooks after access check
#6876 passed: develop (PR #4315) Revert "tests: Use wtfnode to determine why mocha isn't exiting"
#6875 failed: develop allow slower for Safari
#6874 passed: develop allow slower for Safari
#6873 failed: develop (PR #4333) allow slower for Safari
#6872 failed: safari-is-slow allow slower for Safari
#6871 failed: develop PadMessageHandler: Make sessioninfo tracking more robust
#6870 canceled: develop async-ify more functions, and await completion
#6869 failed: develop (PR #4315) Merge branch 'develop' into wtfnode
#6868 failed: develop Add a new 'rejected' disconnect reason
#6867 passed: develop include hash auth in tests
#6866 failed: develop Refactor startup/shutdown for tests
#6865 passed: testings Merge branch 'develop' of github.com:ether/etherpad-lite into testings
#6864 failed: develop (PR #4330) Add a new 'rejected' disconnect reason
#6863 passed: develop (PR #4254) webaccess: Return 401 for authn failure, 403 for authz failure
#6862 passed: develop (PR #4315) Revert "tests: Use wtfnode to determine why mocha isn't exiting"
#6861 passed: develop (PR #4307) PadMessageHandler: Make sessioninfo tracking more robust
#6860 passed: develop (PR #4313) async-ify more functions, and await completion
#6859 passed: develop (PR #4329) Refactor startup/shutdown for tests
#6858 passed: develop (PR #4329) Refactor startup/shutdown for tests
#6857 passed: testings testing something...
#6856 passed: develop SessionStore: Don't call callback until cached in DB layer
#6855 passed: develop (PR #4328) SessionStore: Don't call callback until cached in DB layer
#6854 passed: develop utils: Fix promise creation accounting bug in promises.timesLimit
#6853 passed: develop (PR #4313) async-ify more functions, and await completion
#6852 passed: develop (PR #4312) utils: Fix promise creation accounting bug in promises.timesLimit
#6851 failed: develop Localisation updates from https://translatewiki.net.
#6850 failed: develop Localisation updates from https://translatewiki.net.
#6849 passed: develop (PR #4292) fix: backward compatibility for plugins
#6848 failed: develop Merge remote-tracking branch 'origin/release/1.8.6' into develop
#6847 failed: release/1.8.6 changelog: Mention fix for authz bypass vulnerability in 1.8.6 (#4318)
#6846 passed: develop SessionManager: Fix session expiration check
#6845 passed: develop SessionManager: Fix session expiration check
#6844 passed: develop (PR #4324) SessionManager: Fix session expiration check
#6843 passed: develop css: Improve toolbar responsiveness for small screen (#4322)
#6842 failed: develop Update version to 1.8.6 and add changelog informations
#6841 passed: develop (PR #4322) Improve toolbar responsiveness for small screen
#6840 passed: develop (PR #4307) PadMessageHandler: Make sessioninfo tracking more robust
#6839 passed: develop (PR #4254) webaccess: Return 401 for authn failure, 403 for authz failure
#6838 passed: develop (PR #4313) async-ify more functions, and await completion
#6837 passed: develop (PR #4312) utils: Fix promise creation accounting bug in promises.timesLimit
#6836 passed: develop (PR #4315) Revert "tests: Use wtfnode to determine why mocha isn't exiting"
#6835 passed: develop (PR #4318) changelog: Mention fix for authz bypass vulnerability in 1.8.6
#6834 failed: develop Update version to 1.8.6 and add changelog informations
#6833 passed: master Update version to 1.8.6 and add changelog informations
#6832 failed: 1.8.6 Update version to 1.8.6 and add changelog informations
#6831 failed: develop (PR #4316) Update version to 1.8.6 and add changelog informations
#6830 failed: release/1.8.6 Update version to 1.8.6 and add changelog informations
#6829 passed: develop (PR #4315) Revert "tests: Use wtfnode to determine why mocha isn't exiting"
#6828 failed: develop tests: Plugin backend tests in ci (#4314)
#6827 failed: develop tests: Plugin backend tests in ci (#4314)
#6826 failed: develop (PR #4314) only specs/ subdirectory should contain spec files, ignore other files in /static/tests/backend
#6825 failed: plugin-backendtests-in-ci only specs/ subdirectory should contain spec files, ignore other files in /static/tests/backend
#6824 failed: plugin-backendtests-in-ci run any plugin backend tests
#6823 failed: plugin-backendtests-in-ci test
#6822 errored: plugin-backendtests-in-ci test
#6821 errored: plugin-backendtests-in-ci does it installs devDependencies of ep_comments_page?
#6820 failed: plugin-backendtests-in-ci try it with ep_comments_page and ep_font_color
#6819 failed: plugin-backendtests-in-ci test if ci runs frontend and backend tests of plugins
#6818 passed: plugin-backendtests-in-ci run any plugin backend tests
#6817 passed: develop (PR #3881) favicon fix for 3875
#6816 passed: develop Localisation updates from https://translatewiki.net.
#6815 failed: develop Localisation updates from https://translatewiki.net.
#6814 passed: develop (PR #4307) PadMessageHandler: Make sessioninfo tracking more robust
#6813 passed: develop (PR #4313) async-ify more functions, and await completion
#6812 passed: develop (PR #4312) utils: Fix promise creation accounting bug in promises.timesLimit
#6811 passed: develop (PR #4312) utils: Fix promise creation accounting bug in promises.timesLimit
#6810 passed: develop (PR #4312) utils: Fix promise creation accounting bug in promises.timesLimit
#6809 failed: testings doing install twice?
#6808 failed: testings using git instead of npm so I get latest test code
#6807 errored: develop (PR #4310) include hash auth in tests
#6806 errored: ep_hash_auth_in_core_tests include hash auth in tests
#6805 errored: develop Feature: Copy Pad without history (#4295)
#6804 errored: develop (PR #4309) Fix readOnly pad export
#6803 errored: develop security: Fix authorization bypass vulnerability
#6802 passed: develop (PR #4295) fix: Rethrow errors and add more tests
#6801 passed: develop (PR #4307) PadMessageHandler: Make sessioninfo tracking more robust
#6800 passed: develop (PR #4254) webaccess: Return 401 for authn failure, 403 for authz failure
#6799 passed: develop security: Fix authorization bypass vulnerability
#6798 passed: develop (PR #4305) security: Fix authorization bypass vulnerability
#6797 passed: develop tests: Use wtfnode to determine why mocha isn't exiting
#6796 passed: develop webaccess: Fix syntax error (missing close curly brace)
#6795 failed: develop (PR #4295) fix: Rethrow errors and add more tests
#6794 failed: develop (PR #4295) fix: Rethrow errors and add more tests
#6793 passed: develop (PR #4306) webaccess: Fix syntax error (missing close curly brace)
#6792 failed: develop (PR #4254) webaccess: Return 401 for authn failure, 403 for authz failure
#6791 passed: develop (PR #4305) security: Fix authorization bypass vulnerability
#6790 failed: develop (PR #4304) tests: Use wtfnode to determine why mocha isn't exiting
#6789 failed: develop PadMessageHandler: Fix assignment to const variable
#6788 canceled: develop Pad: Disable toolbar and import/export when reconnecting
#6787 canceled: develop PadMessageHandler: Move code out of unnecessary closure (again)
#6786 canceled: develop tests: Add authentication, authorization bypass tests
#6785 failed: develop (PR #4303) PadMessageHandler: Fix assignment to const variable
#6784 failed: develop (PR #4302) PadMessageHandler: Move code out of unnecessary closure (again)
#6783 failed: develop (PR #4278) Pad: Disable toolbar and import/export when reconnecting
#6782 failed: develop (PR #4254) webaccess: Return 401 for authn failure, 403 for authz failure
#6781 failed: develop (PR #4289) tests: Add authentication, authorization bypass tests
#6780 failed: develop (PR #4289) tests: Add authentication, authorization bypass tests
#6779 failed: develop (PR #4278) Pad: Disable toolbar and import/export when reconnecting
#6778 failed: develop webaccess: Pass `settings.users` to the authenticate hook
#6777 canceled: develop webaccess: Enforce creation of `req.session.user` by authn plugins
#6776 errored: develop (PR #4269) webaccess: Pass `settings.users` to the authenticate hook
#6775 canceled: develop docs: Revise documentation for handleMessage and handleMessageSecurity
#6774 failed: develop (PR #4254) webaccess: Return 401 for authn failure, 403 for authz failure
#6773 canceled: develop PadMessageHandler: Move code out of unnecessary closure
#6772 failed: develop i18n: Improve error logging when language JSON read fails
#6771 failed: develop (PR #4295) refactor: dry
#6770 failed: develop (PR #4295) refactor: dry
#6769 failed: develop i18n: Improve error logging when language JSON read fails
#6768 failed: develop Merge branch 'develop' of github.com:ether/etherpad-lite into develop
#6767 failed: develop webaccess: Factor out common code
#6766 passed: develop security: Check authentication in SecurityManager checkAccess
#6765 canceled: develop socketio: Use Error objects for socket.io connection errors
#6764 failed: develop css: Line up line numbers with their rows
#6763 failed: develop (PR #4299) i18n: Improve error logging when language JSON read fails
#6762 passed: develop (PR #4298) css: Line up line numbers with their rows
#6761 passed: develop (PR #4289) tests: Add authentication, authorization bypass tests
#6760 failed: develop (PR #4296) webaccess: Factor out common code
#6759 passed: develop (PR #4289) tests: Add authentication, authorization bypass tests
#6758 passed: develop (PR #4254) webaccess: Return 401 for authn failure, 403 for authz failure
#6757 failed: develop (PR #4289) tests: Add authentication, authorization bypass tests
#6756 passed: develop (PR #4295) doc: Improve clarity of the documentation
#6755 canceled: develop packaging: remove pad_docbar.js (#4286)
#6754 failed: develop (PR #4240) fix
#6753 failed: import-doc-line-breaks fix
#6752 failed: develop (PR #4240) no title replacement
#6751 failed: import-doc-line-breaks no title replacement
#6750 failed: develop (PR #4240) revert title replacement for the moment
#6749 failed: import-doc-line-breaks revert title replacement for the moment
#6748 failed: develop (PR #4240) switch back to soffice standard converter; dont swallow newlines
#6747 failed: import-doc-line-breaks switch back to soffice standard converter; dont swallow newlines
#6746 passed: develop (PR #4292) fix: backward compatibility for plugins
#6745 passed: develop (PR #4290) security: Check authentication in SecurityManager checkAccess
#6744 passed: develop (PR #4278) Pad: Disable toolbar and import/export when reconnecting
#6743 passed: develop (PR #4277) docs: Revise documentation for handleMessage and handleMessageSecurity
#6742 passed: develop (PR #4283) PadMessageHandler: Move code out of unnecessary closure
#6741 passed: develop (PR #4270) webaccess: Enforce creation of `req.session.user` by authn plugins
#6740 errored: develop (PR #4269) webaccess: Pass `settings.users` to the authenticate hook
#6739 passed: develop (PR #4254) webaccess: Return 401 for authn failure, 403 for authz failure
#6738 errored: develop (PR #4289) tests: Add authentication, authorization bypass tests
#6737 passed: develop (PR #4288) socketio: Use Error objects for socket.io connection errors
#6736 passed: develop (PR #4254) webaccess: Return 401 for authn failure, 403 for authz failure
#6735 errored: develop (PR #4289) tests: Add authentication, authorization bypass tests
#6734 passed: develop (PR #4288) socketio: Use Error objects for socket.io connection errors
#6733 failed: develop packaging: remove pad_docbar.js (#4286)
#6732 passed: develop security: Fix authentication bypass vulnerability
#6731 failed: develop Update responsiveness.js
#6730 passed: develop (PR #4287) security: Fix authentication bypass vulnerability
#6729 passed: develop (PR #4286) package: remove pad_docbar.js
#6728 passed: tar.json-updates package: remove pad_docbar.js
#6727 failed: develop (PR #4285) terser was not called because mime type did not match
#6726 failed: terser-fix terser was not called because mime type did not match
#6725 failed: package-more-resources Release version 1.8.4
#6724 passed: develop (PR #4254) webaccess: Return 401 for authn failure, 403 for authz failure
#6723 failed: develop (PR #4254) webaccess: Return 401 for authn failure, 403 for authz failure
#6722 failed: develop (PR #4269) webaccess: Pass `settings.users` to the authenticate hook
#6721 passed: develop (PR #4270) webaccess: Enforce creation of `req.session.user` by authn plugins
#6720 passed: develop (PR #4283) PadMessageHandler: Move code out of unnecessary closure
#6719 passed: develop (PR #4277) docs: Revise documentation for handleMessage and handleMessageSecurity
#6718 passed: develop (PR #4278) Pad: Disable toolbar and import/export when reconnecting
#6717 passed: develop Update responsiveness.js
#6716 passed: develop Update responsiveness.js
#6715 failed: develop SecurityManager: Refactor checkAccess for readability, correctness
#6714 passed: develop (PR #4282) SecurityManager: Refactor checkAccess for readability, correctness
#6713 passed: develop PadMessageHandler: Use `await` instead of `p.then()`
#6712 passed: develop Use `null`, not `"null"`, if `sessionID` cookie doesn't exist
#6711 passed: develop (PR #4270) webaccess: Enforce creation of `req.session.user` by authn plugins
#6710 passed: develop (PR #4269) webaccess: Pass `settings.users` to the authenticate hook
#6709 failed: develop (PR #4254) webaccess: Return 401 for authn failure, 403 for authz failure
#6708 passed: develop (PR #4260) PadMessageHandler: Use `await` instead of `p.then()`
#6707 failed: develop (PR #4281) PadMessageHandler: Use `await` instead of `p.then()`
#6706 passed: develop (PR #4280) Use `null`, not `"null"`, if `sessionID` cookie doesn't exist
#6705 passed: develop Localisation updates from https://translatewiki.net.
#6704 passed: develop (PR #4278) Pad: Disable toolbar and import/export when reconnecting
#6703 passed: develop (PR #4278) Pad: Disable toolbar and import/export when reconnecting
#6702 failed: develop (PR #4277) docs: Revise documentation for handleMessage and handleMessageSecurity
#6701 passed: develop Localisation updates from https://translatewiki.net.
#6700 failed: develop (PR #4254) webaccess: Return 401 for authn failure, 403 for authz failure
#6699 passed: develop (PR #4260) PadMessageHandler: Rename createSessionInfo to createSessionInfoAuth
#6698 passed: develop (PR #4269) webaccess: Pass `settings.users` to the authenticate hook
#6697 passed: develop (PR #4270) webaccess: Enforce creation of `req.session.user` by authn plugins
#6696 failed: develop Localisation updates from https://translatewiki.net.
#6695 passed: develop tests: skip responsivness test on firefox 52.0/windows (#4275)
#6694 failed: develop (PR #4275) skip responsivness test on firefox 52.0/windows
#6693 passed: skip-test-for-ff52 skip responsivness test on firefox 52.0/windows
#6692 failed: skip-test-for-ff52 fix
#6691 canceled: skip-test-for-ff52 Revert "wait"
#6690 canceled: skip-test-for-ff52 wait
#6689 failed: skip-test-for-ff52 syntax
#6688 canceled: skip-test-for-ff52 skip responsivness test on firefox 52.0/windows
#6687 failed: develop Package Lock update
#6686 passed: develop Package Lock update
#6685 canceled: develop bump ueber
#6684 failed: develop (PR #4273) Fix comment
#6683 passed: develop Merge tag '1.8.5' into develop
#6682 passed: 1.8.5 Merge branch 'release/1.8.5'
#6681 passed: master Merge branch 'release/1.8.5'
#6680 passed: master (PR #4272) bumping ueber
#6679 failed: release/1.8.5 Merge tag '1.8.5' into develop
#6678 passed: release/1.8.5 Set changelog informations for new version
#6677 passed: develop bumping ueber
#6676 passed: develop (PR #4270) webaccess: Enforce creation of `req.session.user` by authn plugins
#6675 failed: develop (PR #4269) webaccess: Pass `settings.users` to the authenticate hook
#6674 passed: develop (PR #4260) PadMessageHandler: Rename createSessionInfo to createSessionInfoAuth
#6673 failed: develop (PR #4254) webaccess: Return 401 for authn failure, 403 for authz failure
#6672 passed: develop (PR #4268) Fixed 3875
#6671 passed: develop bumping ueber
#6670 failed: develop commenting out responsiveness test in preperation for a release
#6669 failed: develop import: Use the correct author ID when using sessions
#6668 failed: develop SecurityManager: Use constants for returned rejections
#6667 failed: develop editor/performance: Fix performance for large pads (#4267)
#6666 passed: develop (PR #4267) Fixes #4228 Performance degradation for long pads
#6665 failed: ci-for-line-numbers Fixes #4228 Performance degradation for long pads
#6664 passed: develop (PR #4267) Fixes #4228 Performance degradation for long pads
#6663 passed: develop (PR #4267) Fixes #4228 Performance degradation for long pads
#6662 passed: develop (PR #4260) PadMessageHandler: Rename createSessionInfo to createSessionInfoAuth
#6661 passed: develop (PR #4264) import: Use the correct author ID when using sessions
#6660 passed: develop (PR #4264) import: Use the correct author ID when using sessions
#6659 passed: develop (PR #4260) PadMessageHandler: Rename createSessionInfo to createSessionInfoAuth
#6658 passed: develop (PR #4264) import: Use the correct author ID when using sessions
#6657 failed: develop (PR #4260) PadMessageHandler: Rename createSessionInfo to createSessionInfoAuth
#6656 failed: develop (PR #4260) PadMessageHandler: Simplify handleClientReady a bit
#6655 failed: develop (PR #4264) import: Use the correct author ID when using sessions
#6654 passed: develop (PR #4265) SecurityManager: Use constants for returned rejections
#6653 failed: develop (PR #4260) PadMessageHandler: Simplify handleClientReady a bit
#6652 failed: develop (PR #4254) webaccess: Return 401 for authn failure, 403 for authz failure
#6651 failed: develop (PR #4264) import: Use the correct author ID when using sessions
#6650 failed: develop (PR #4260) Merge branch 'develop' into pmh
#6649 passed: develop plugins: Move plugin definitions to avoid monkey patching
#6648 canceled: develop hooks: New mechanism to deprecate hooks
#6647 failed: develop plugins: Fix type typo
#6646 failed: develop Revert "Delete redundant token2author DB save"
#6645 failed: develop GroupManager: typo during session deletion
#6644 failed: develop Localisation updates from https://translatewiki.net.
#6643 failed: develop (PR #4263) Revert "Delete redundant token2author DB save"
#6642 passed: develop (PR #4259) plugins: Move plugin definitions to avoid monkey patching
#6641 passed: develop (PR #4259) plugins: Move plugin definitions to avoid monkey patching
#6640 failed: develop Localisation updates from https://translatewiki.net.
#6639 failed: sl-browser-killed ensure other browser pass
#6638 failed: sl-browser-killed test with oter browsers
#6637 failed: sl-browser-killed timesup after 90 sec, hopefully browser has crashed in the meantime
#6636 failed: sl-browser-killed timesup after 30 sec
#6635 failed: sl-browser-killed only run responsiveness test on win7 ff52
#6634 failed: develop SecurityManager: Simplify checkAccess
#6633 passed: develop (PR #4243) Update README.md
#6632 passed: develop (PR #4243) Update README.md
#6631 passed: develop (PR #4243) Update README.md
#6630 passed: develop (PR #4243) Update README.md
#6629 passed: develop (PR #4243) Update package.json
#6628 passed: develop (PR #4243) Update package.json
#6627 passed: develop (PR #4243) Update package.json
#6626 passed: develop (PR #4243) Update package.json
#6625 passed: develop (PR #4261) SecurityManager: Simplify checkAccess
#6624 passed: develop (PR #4260) PadMessageHandler: Simplify handleClientReady a bit
#6623 passed: develop (PR #4255) hooks: New mechanism to deprecate hooks
#6622 passed: develop (PR #4254) webaccess: Return 401 for authn failure, 403 for authz failure
#6621 passed: develop (PR #4243) Update package.json
#6620 passed: develop (PR #4243) Update package.json
#6619 passed: develop (PR #4243) Update package.json
#6618 passed: develop (PR #4259) plugins: Move plugin state to avoid strange monkey patching
#6617 passed: develop (PR #4258) plugins: Fix type typo
#6616 failed: develop (PR #4258) plugins: Fix type typo
#6615 passed: develop (PR #4243) Update package.json
#6614 passed: develop (PR #4243) Update .travis.yml
#6613 passed: develop (PR #4243) Update .travis.yml
#6612 passed: develop (PR #4243) Update .travis.yml
#6611 passed: develop (PR #4243) Update .travis.yml
#6610 passed: develop (PR #4243) Update .travis.yml
#6609 passed: develop (PR #4243) Update .travis.yml
#6608 passed: develop (PR #4243) Update .travis.yml
#6607 passed: develop (PR #4243) Update .travis.yml
#6606 passed: develop (PR #4243) Update .travis.yml
#6605 passed: develop (PR #4243) Update .travis.yml
#6604 passed: develop (PR #4243) Update package.json
#6603 errored: develop (PR #4243) Update .travis.yml
#6602 errored: develop (PR #4243) Update .travis.yml
#6601 errored: develop (PR #4243) Update .travis.yml
#6600 errored: develop (PR #4243) Update .travis.yml
#6599 errored: develop (PR #4243) Update .travis.yml
#6598 errored: develop (PR #4243) Update package.json
#6597 passed: develop (PR #4243) Update .travis.yml
#6596 failed: develop (PR #4243) Update .travis.yml
#6595 passed: develop (PR #4243) Update .travis.yml
#6594 passed: develop (PR #4243) Create coverall.js
#6593 passed: develop (PR #4243) Update .travis.yml
#6592 failed: develop PadMessageHandler: Delete redundant check
#6591 passed: develop (PR #4243) Merge branch 'develop' of https://github.com/WWCheng02/etherpad-lite into develop
#6590 errored: develop (PR #4243) Update package.json
#6589 passed: develop (PR #4243) Update .travis.yml
#6588 failed: develop (PR #4243) Update .travis.yml
#6587 failed: develop (PR #4243) Update package.json
#6586 errored: develop (PR #4243) Update package.json
#6585 failed: develop (PR #4257) tests: fix issue with responsiveness test crashing sauce labs
#6584 failed: responsiveness-test-timeout tests: fix issue with responsiveness test crashing sauce labs
#6583 failed: develop (PR #4257) tests: fix issue with responsiveness test crashing sauce labs
#6582 failed: responsiveness-test-timeout tests: fix issue with responsiveness test crashing sauce labs
#6581 failed: develop (PR #4257) tests: fix issue with responsiveness test crashing sauce labs
#6580 failed: responsiveness-test-timeout tests: fix issue with responsiveness test crashing sauce labs
#6579 failed: develop (PR #4243) Update .travis.yml
#6578 failed: develop (PR #4243) Update .travis.yml
#6577 failed: develop (PR #4243) Update .travis.yml
#6576 passed: develop (PR #4243) Update .travis.yml
#6575 passed: develop (PR #4243) Update .travis.yml
#6574 passed: develop (PR #4243) Update .travis.yml
#6573 passed: develop (PR #4243) Update package.json
#6572 passed: develop (PR #4243) Update .travis.yml
#6571 passed: develop (PR #4243) Update .travis.yml
#6570 passed: develop (PR #4243) Update .travis.yml
#6569 passed: develop (PR #4243) Update package.json
#6568 passed: develop (PR #4243) Update package.json
#6567 passed: develop (PR #4243) Update package.json
#6566 passed: develop (PR #4243) Update .travis.yml
#6565 passed: develop (PR #4243) Merge branch 'develop' of https://github.com/WWCheng02/etherpad-lite into develop
#6564 failed: develop (PR #4243) Update .travis.yml
#6563 passed: develop (PR #4243) Update package.json
#6562 passed: develop (PR #4243) Rename .coveralls.yml. to .coveralls.yml
#6561 canceled: develop (PR #4243) Delete .coveralls.yml
#6560 passed: develop (PR #4243) edit yml
#6559 passed: develop (PR #4243) edit yml
#6558 passed: develop (PR #4243) edit yml
#6557 passed: develop (PR #4255) hooks: New mechanism to deprecate hooks
#6556 passed: develop (PR #4254) webaccess: Return 401 for authn failure, 403 for authz failure
#6555 failed: develop PadMessageHandler: Delete redundant check
#6554 errored: develop (PR #4253) PadMessageHandler: Delete redundant check
#6553 passed: develop (PR #4253) PadMessageHandler: Delete redundant check
#6552 failed: develop webaccess: Always sleep for 1s before returning HTTP 401
#6551 failed: develop pluginfw: Always include the function name in `hook_fn_name`
#6550 passed: develop (PR #4249) webaccess: Always sleep for 1s before returning HTTP 401
#6549 passed: develop (PR #4252) pluginfw: Always include the function name in `hook_fn_name`
#6548 failed: develop hooks: Always return a list from `aCallFirst` and `callFirst`
#6547 failed: develop docs: Revise hooks overview section
#6546 passed: develop (PR #4243) Update package.json
#6545 failed: develop (PR #4251) hooks: Always return a list from `aCallFirst` and `callFirst`
#6544 passed: develop (PR #4250) docs: Revise hooks overview section
#6543 passed: develop (PR #4243) Update .travis.yml
#6542 passed: develop (PR #4243) Update .coveralls.yml.
#6541 passed: develop (PR #4243) Update .travis.yml
#6540 failed: develop (PR #4243) Update README.md
#6539 failed: develop (PR #4243) Update .travis.yml
#6538 passed: develop (PR #4243) Update package.json
#6537 passed: develop (PR #4243) Update .travis.yml
#6536 failed: develop (PR #4243) Create .coveralls.yml.
#6535 failed: develop (PR #4243) Update .travis.yml
#6534 failed: develop (PR #4243) Update .travis.yml
#6533 passed: develop (PR #4243) Update package.json
#6532 passed: develop (PR #4243) Update .travis.yml
#6531 failed: develop tests: npminstall before update
#6530 failed: develop (PR #4249) webaccess: Always sleep for 1s before returning HTTP 401
#6529 passed: develop (PR #4243) Update .travis.yml
#6528 passed: develop (PR #4243) Update .travis.yml
#6527 passed: develop (PR #4243) Update .travis.yml
#6526 passed: develop (PR #4243) Update .travis.yml
#6525 passed: develop (PR #4243) Update package.json
#6524 passed: develop (PR #4243) Update .travis.yml
#6523 passed: develop (PR #4243) Update .gitignore
#6522 passed: develop (PR #4243) Update .travis.yml
#6521 passed: develop (PR #4243) Update package.json
#6520 errored: develop (PR #4243) Update package.json
#6519 passed: develop (PR #4243) Update README.md
#6518 canceled: develop (PR #4243) Update .travis.yml
#6517 canceled: develop (PR #4243) Update package.json
#6516 failed: develop tests: npminstall before update
#6515 errored: develop (PR #4226) Delete broken.etherpad
#6514 canceled: develop (PR #4226) Delete script2.sh
#6513 canceled: develop (PR #4226) Delete script.sh
#6512 canceled: develop (PR #4226) Delete package-lock.json
#6511 failed: develop Delete redundant token2author DB save
#6510 failed: develop User list: Use flexbox for #myuser div
#6509 failed: develop docs: Document the authFailure hook
#6508 failed: develop webaccess: Restructure for readability and future changes
#6507 passed: develop (PR #4243) Update .travis.yml
#6506 passed: develop (PR #4243) Update package.json
#6505 errored: develop (PR #4243) Update .travis.yml
#6504 errored: develop (PR #4243) Update .travis.yml
#6503 failed: develop pluginfw: PadMessageHandler: Pass socket.io Socket object to clientVars hook (#4245)
#6502 errored: develop (PR #4243) Update .travis.yml
#6501 errored: develop (PR #4243) Update .travis.yml
#6500 failed: develop (PR #4243) Update .travis.yml
#6499 failed: develop (PR #4243) Update .travis.yml
#6498 errored: develop (PR #4243) Update package.json
#6497 failed: develop (PR #4243) Update .travis.yml
#6496 failed: develop (PR #4243) Update .travis.yml
#6495 failed: develop (PR #4243) Update package.json
#6494 passed: develop (PR #4243) Update .travis.yml
#6493 passed: develop (PR #4243) Update .travis.yml
#6492 passed: develop (PR #4243) Update .travis.yml
#6491 passed: develop (PR #4243) Update .travis.yml
#6490 passed: develop (PR #4248) webaccess: Restructure for readability and future changes
#6489 passed: develop (PR #4247) docs: Document the authFailure hook
#6488 failed: develop (PR #4246) User list: Use flexbox for #myuser div
#6487 passed: develop (PR #4241) Delete redundant token2author DB save
#6486 failed: develop (PR #4245) PadMessageHandler: Pass socket.io Socket object to clientVars hook
#6485 passed: develop (PR #4245) PadMessageHandler: Pass socket.io Socket object to clientVars hook
#6484 failed: develop docs: Document the authorize hook (#4233)
#6483 failed: develop CSS: User list: Add missing semicolon to CSS property (#4244)
#6482 failed: develop Localisation updates from https://translatewiki.net.
#6481 failed: develop (PR #4244) User list: Add missing semicolon to CSS property
#6480 passed: develop (PR #4243) Update .travis.yml
#6479 passed: develop (PR #4243) Delete appveyor.yml
#6478 passed: develop (PR #4243) Delete config.yml
#6477 passed: develop (PR #4243) Update .travis.yml
#6476 failed: develop Localisation updates from https://translatewiki.net.
#6475 failed: develop (PR #4240) LibreOffice: use filter XHTML Writer File during import
#6474 failed: import-doc-line-breaks LibreOffice: use filter XHTML Writer File during import
#6473 passed: develop (PR #4241) Delete redundant token2author DB save
#6472 passed: develop (PR #4233) docs: Document the authorize hook
#6471 passed: develop (PR #4241) Delete redundant token2author DB save
#6470 failed: develop (PR #4240) test file
#6469 failed: import-doc-line-breaks test file
#6468 failed: develop (PR #4240) bio update
#6467 failed: import-doc-line-breaks bio update
#6466 failed: develop Localisation updates from https://translatewiki.net.
#6465 failed: develop Localisation updates from https://translatewiki.net.
#6464 failed: develop Localisation updates from https://translatewiki.net.
#6463 failed: develop Localisation updates from https://translatewiki.net.
#6462 failed: develop tests: make it more clear that test duration exceeded (#4237)
#6461 failed: develop tests: make it more clear that test duration exceeded (#4237)
#6460 failed: develop (PR #4237) make it more clear that test duration exceeded
#6459 failed: better-error-message make it more clear that test duration exceeded
#6458 errored: better-error-message make it more clear that test duration exceeded
#6457 errored: develop bugfix/import: doc import bugfix (#4235)
#6456 failed: bisect-responsivness disable cache
#6455 failed: bisect-responsivness enable sauce_tunnel in .travis.yml
#6454 failed: bisect-responsivness add some console.logs
#6453 failed: bisect-responsivness hopefully this is enough to make it run under old nodejs
#6452 failed: bisect-responsivness use older node version
#6451 errored: develop (PR #4235) test fix
#6450 failed: bugfix-doc-import test fix
#6449 errored: bugfix-doc-import bugfix/import: doc import bugfix
#6448 failed: develop tests: uncomment responsiveness tests
#6447 passed: develop (PR #4233) docs: Document the authorize hook
#6446 failed: develop tests: uncomment responsiveness tests
#6445 failed: fix-responsivnesstest tests: responsiveness - 77 chars on 30000 lines
#6444 failed: fix-responsivnesstest does this still kill ff52 on win7?
#6443 failed: fix-responsivnesstest does this still kill ff52 on win7?
#6442 failed: fix-responsivnesstest does this still kill ff52 on win7?
#6441 failed: fix-responsivnesstest tests: try sendkeys in responsiveness
#6440 passed: develop (PR #4233) docs: Document the authorize hook
#6439 failed: develop tests: uncomment responsiveness tests
#6438 failed: develop (PR #4233) docs: Document the authorize hook