forked from luminati-io/luminati-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathversions.json
executable file
·6422 lines (6421 loc) · 155 KB
/
versions.json
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
[
{
"ver": "1.166.867",
"type": "stable",
"changes": [
{
"type": "bug",
"text": "HAR viewer: UI improvements"
}
]
},
{
"ver": "1.166.405",
"type": "stable",
"changes": [
{
"type": "bug",
"text": "Fixed error: cannot read property 'socket2headers' of undefined"
},
{
"type": "bug",
"text": "Fixed error: incorrect headers check"
}
]
},
{
"ver": "1.165.910",
"type": "stable",
"changes": [
{
"type": "star",
"text": "Improvements in --auto-upgrade option"
},
{
"type": "star",
"text": "Added \"Operating System\" option under \"Targeting\" tab"
}
]
},
{
"ver": "1.165.644",
"type": "stable",
"changes": [
{
"type": "bug",
"text": "Fixes in SMTP rules"
}
]
},
{
"ver": "1.165.523",
"type": "stable",
"changes": [
{
"type": "bug",
"text": "Fixed HAR viewer: now always showing Peer IP in the columns"
}
]
},
{
"ver": "1.165.449",
"type": "stable",
"changes": [
{
"type": "bug",
"text": "Fixed check for a backup version on windows"
}
]
},
{
"ver": "1.165.421",
"type": "stable/dev",
"changes": []
},
{
"ver": "1.165.256",
"type": "stable",
"changes": [
{
"type": "sparkles",
"text": "Improved upgrading mechanism"
},
{
"type": "star",
"text": "Added --auto-upgrade option"
}
]
},
{
"ver": "1.164.586",
"type": "stable",
"changes": [
{
"type": "star",
"text": "Added request method to HAR viewer"
},
{
"type": "bug",
"text": "Fixed logging from extension when local_login flag enabled"
}
]
},
{
"ver": "1.164.431",
"type": "stable",
"changes": [
{
"type": "bug",
"text": "Fixed MacOS --upgrade/--downgrade options"
},
{
"type": "star",
"text": "UI improvements: added number of allocate/banned IPs"
}
]
},
{
"ver": "1.164.400",
"type": "stable",
"changes": [
{
"type": "bug",
"text": "Fixed certificate for MacOS Catalina"
},
{
"type": "star",
"text": "Added users management API"
}
]
},
{
"ver": "1.164.328",
"type": "stable",
"changes": [
{
"type": "star",
"text": "Added support for generating custom certificates"
}
]
},
{
"ver": "1.164.164",
"type": "stable",
"changes": [
{
"type": "sparkles",
"text": "app.less stylesheet split per page/component"
}
]
},
{
"ver": "1.163.916",
"type": "stable",
"changes": [
{
"type": "sparkles",
"text": "Added OS support for submitting bug report"
},
{
"type": "sparkles",
"text": "Improved fe_warn metrics"
}
]
},
{
"ver": "1.163.762",
"type": "stable",
"changes": [
{
"type": "star",
"text": "Added x-lpm-* headers support for country, state and city"
},
{
"type": "bug",
"text": "Fixed external IPs rotating in SSL analyzing mode"
}
]
},
{
"ver": "1.163.474",
"type": "stable",
"changes": [
{
"type": "star",
"text": "Added --downgrade option that will downgrade LPM to the version before upgrades"
},
{
"type": "star",
"text": "Removed usage of Google Analytics"
},
{
"type": "sparkles",
"text": "Merged HTTP and WS to use single port"
},
{
"type": "sparkles",
"text": "Added devtool nosources-source-map to Webpack config"
}
]
},
{
"ver": "1.163.237",
"type": "stable",
"changes": [
{
"type": "star",
"text": "Adjustments for LPM <> Extension integration"
}
]
},
{
"ver": "1.163.144",
"type": "stable",
"changes": [
{
"type": "bug",
"text": "Fix database (Lokijs) errors"
},
{
"type": "star",
"text": "Improved the UI in the dashboard (easy to hide/show components)"
}
]
},
{
"ver": "1.163.69",
"type": "stable",
"changes": [
{
"type": "star",
"text": "Improvements in users management"
}
]
},
{
"ver": "1.163.36",
"type": "stable",
"changes": [
{
"type": "sparkles",
"text": "Introduced users management and multiplying ports by users"
}
]
},
{
"ver": "1.162.728",
"type": "stable",
"changes": [
{
"type": "bug",
"text": "Fixed initializing websocket"
}
]
},
{
"ver": "1.162.700",
"type": "stable",
"changes": [
{
"type": "sparkles",
"text": "Improved the installation for Linux and Mac OS - fetching chromium binary only when needed"
}
]
},
{
"ver": "1.162.197",
"type": "stable",
"changes": [
{
"type": "bug",
"text": "Fixed canceled requests shown in HAR viewer"
},
{
"type": "bug",
"text": "Fixed banning/unbanning IPs banned per domain"
}
]
},
{
"ver": "1.161.831",
"type": "dev",
"changes": [
{
"type": "sparkles",
"text": "Added status code classes (2**, 3**, ...) filtering to HAR viewer"
},
{
"type": "bug",
"text": "Fix running 'luminati' command without specifying whole path"
},
{
"type": "bug",
"text": "Fixed memory leak when using rules"
}
]
},
{
"ver": "1.161.309",
"type": "stable",
"changes": [
{
"type": "sparkles",
"text": "Improve High CPU usage message"
},
{
"type": "sparkles",
"text": "Add --show-logs feature that follows LPM daemon process logs"
},
{
"type": "sparkles",
"text": "Canceled requests will now be saved and shown in HAR viewer"
}
]
},
{
"ver": "1.161.127",
"type": "stable",
"changes": [
{
"type": "sparkles",
"text": "Node 12 support"
}
]
},
{
"ver": "1.160.911",
"type": "stable",
"changes": [
{
"type": "bug",
"text": "Fixed WSS connections handling"
}
]
},
{
"ver": "1.160.654",
"type": "stable",
"changes": [
{
"type": "sparkles",
"text": "CPU and mem usage are now shown per LPM process in --status"
},
{
"type": "bug",
"text": "Fixed request retry with banned IPs"
}
]
},
{
"ver": "1.160.574",
"type": "stable",
"changes": [
{
"type": "sparkles",
"text": "Added --status flag to check current proxy manager status"
}
]
},
{
"ver": "1.160.316",
"type": "stable",
"changes": [
{
"type": "sparkles",
"text": "Logs are now shown up to when the UI is ready running in daemon mode"
},
{
"type": "sparkles",
"text": "Easy way for adding recent IPs to whitelist from the UI"
},
{
"type": "star",
"text": "Improved logs (added port number and access denied warnings)"
}
]
},
{
"ver": "1.160.116",
"type": "stable",
"changes": [
{
"type": "bug",
"text": "Fixed rules working with SMTP"
}
]
},
{
"ver": "1.159.711",
"type": "stable",
"changes": [
{
"type": "sparkles",
"text": "Added auto restart to worker processes when they die"
},
{
"type": "bug",
"text": "Fixed message shown when --stop-daemon is used with no daemon process"
}
]
},
{
"ver": "1.159.461",
"type": "stable",
"changes": [
{
"type": "bug",
"text": "Fixed support for SMTP connection"
}
]
},
{
"ver": "1.159.270",
"type": "stable",
"changes": [
{
"type": "bug",
"text": "Fixed carriers.json updates"
},
{
"type": "sparkles",
"text": "Added 'any' option to ease whitelisting all IPs through the UI"
},
{
"type": "sparkles",
"text": "Admin whitelisted IPs will now automatically be added to proxies whitelist"
},
{
"type": "bug",
"text": "Fixed usage in China"
}
]
},
{
"ver": "1.159.78",
"type": "stable",
"changes": [
{
"type": "bug",
"text": "Fixed memory leak"
}
]
},
{
"ver": "1.158.770",
"type": "stable",
"changes": [
{
"type": "sparkles",
"text": "Updated gIP management"
}
]
},
{
"ver": "1.158.722",
"type": "stable",
"changes": [
{
"type": "bug",
"text": "Fixed upgrade for Windows"
}
]
},
{
"ver": "1.158.559",
"type": "dev",
"changes": [
{
"type": "sparkles",
"text": "Introduced carriers list automatic update"
}
]
},
{
"ver": "1.158.189",
"type": "dev",
"changes": [
{
"type": "sparkles",
"text": "Improved HTTPS requests performance"
},
{
"type": "bug",
"text": "Fixed stats not being updated in overview panel"
}
]
},
{
"ver": "1.157.566",
"type": "stable",
"changes": [
{
"type": "bug",
"text": "Fix EventEmitter listeners issues and ECONNREFUSED errors"
}
]
},
{
"ver": "1.157.534",
"type": "stable",
"changes": [
{
"type": "sparkles",
"text": "Improved --upgrade argument behavior: it will now upgrade LPM and restart previously running daemons"
},
{
"type": "sparkles",
"text": "Added missing carriers"
},
{
"type": "bug",
"text": "Fixed LPM's memory usage"
}
]
},
{
"ver": "1.157.243",
"type": "stable",
"changes": [
{
"type": "sparkles",
"text": "Improved requests bandwith calculation"
}
]
},
{
"ver": "1.157.37",
"type": "stable",
"changes": [
{
"type": "bug",
"text": "Fixed connected from MLA when SSL analyzing is on"
},
{
"type": "bug",
"text": "Fixed specific IPs selection for static shared zones"
},
{
"type": "bug",
"text": "Fixed link tester in Docker containers"
},
{
"type": "bug",
"text": "Fixed error handling for SOCKS5 connections between LPM and Super Proxies"
},
{
"type": "bug",
"text": "Fixed 2-Step error shown when logging in"
}
]
},
{
"ver": "1.156.820",
"type": "stable/dev",
"changes": [
{
"type": "sparkles",
"text": "Added --read_only CLI option that prevents LPM from writing to the config file"
}
]
},
{
"ver": "1.156.236",
"type": "stable",
"changes": [
{
"type": "bug",
"text": "Fixed rule email sending for cluster mode"
}
]
},
{
"ver": "1.156.75",
"type": "stable",
"changes": [
{
"type": "bug",
"text": "Fixed 403 status when acessing sites that use cloudflare"
}
]
},
{
"ver": "1.156.38",
"type": "stable",
"changes": [
{
"type": "bug",
"text": "Fixed error when the first IP was whitelisted to use admin UI through the API"
},
{
"type": "sparkles",
"text": "Swagger documentation improvements"
},
{
"type": "bug",
"text": "Fixed LPM crash on subsequent Proxy Tester calls with unexistent proxy ports"
}
]
},
{
"ver": "1.155.637",
"type": "dev",
"changes": [
{
"type": "sparkles",
"text": "Improved UX and simplified UI"
}
]
},
{
"ver": "1.155.475",
"type": "stable/dev",
"changes": [
{
"type": "bug",
"text": "Fixed CSS on big request stats panels"
}
]
},
{
"ver": "1.155.263",
"type": "stable/dev",
"changes": [
{
"type": "bug",
"text": "Fixed API for bannip/unbanning IPs"
}
]
},
{
"ver": "1.155.206",
"type": "stable",
"changes": [
{
"type": "sparkles",
"text": "Improved logging"
}
]
},
{
"ver": "1.155.133",
"type": "stable",
"changes": [
{
"type": "bug",
"text": "Fixed SMTP settings in proxy port's General tab"
}
]
},
{
"ver": "1.154.894",
"type": "dev",
"changes": [
{
"type": "sparkles",
"text": "Added option to use SOCKS to connect LPM and Super Proxy"
},
{
"type": "sparkles",
"text": "Dashboard UI improvements, allowing to enable/disable recent stats panel"
}
]
},
{
"ver": "1.154.55",
"type": "dev",
"changes": [
{
"type": "sparkles",
"text": "Added proxy port specific IPs whitelisting in General tab"
},
{
"type": "sparkles",
"text": "Added option to unban IPs from UI in 'Banned IPs' table"
},
{
"type": "bug",
"text": "Fixed 'Cannnot read property 'toLowerCase' of undefined' when running LPM on Docker"
}
]
},
{
"ver": "1.153.629",
"type": "stable",
"changes": [
{
"type": "bug",
"text": "Fixed error logging"
}
]
},
{
"ver": "1.153.425",
"type": "stable",
"changes": [
{
"type": "sparkles",
"text": "Reduced timeout period, improving memory management"
}
]
},
{
"ver": "1.153.222",
"type": "stable",
"changes": [
{
"type": "sparkles",
"text": "Better handling of timeout handlers"
}
]
},
{
"ver": "1.153.189",
"type": "stable",
"changes": [
{
"type": "sparkles",
"text": "Added 'High CPU usage' UI indicator and logs"
},
{
"type": "bug",
"text": "Fixed HAR preview Timing tab ports display"
},
{
"type": "bug",
"text": "Fixed bug in Proxies list"
}
]
},
{
"ver": "1.152.345",
"type": "stable",
"changes": [
{
"type": "sparkles",
"text": "Added rule action 'Request URL' to send a HTTP request"
},
{
"type": "sparkles",
"text": "Improved proxies overview UX, allowing deletion of multiple ports"
},
{
"type": "bug",
"text": "Fixed default zone handling. Changing default zone will no more affect existing ports' zones"
},
{
"type": "sparkles",
"text": "Ban IP rule actions are now available with URL triggered rules"
}
]
},
{
"ver": "1.151.641",
"type": "stable",
"changes": [
{
"type": "bug",
"text": "Fix UI Error when accessing Targeting tab in static zones"
},
{
"type": "sparkles",
"text": "Added option 'DNS check' to ignore requests without DNS resolution"
}
]
},
{
"ver": "1.151.510",
"type": "dev",
"changes": [
{
"type": "bug",
"text": "Deprecated fast_session_pool in favor of regular pool"
},
{
"type": "bug",
"text": "Fixed whitelisting IPs with ranges using API"
}
]
},
{
"ver": "1.151.372",
"type": "stable",
"changes": [
{
"type": "bug",
"text": "Fixed WS traffic when SSL Analyzing is on"
},
{
"type": "bug",
"text": "Fixed browser response when using Process data rule"
},
{
"type": "sparkles",
"text": "Improved the UX of whitelisting IPs"
}
]
},
{
"ver": "1.151.77",
"type": "stable",
"changes": [
{
"type": "bug",
"text": "Fixed WSS traffic when SSL Analyzing is on"
},
{
"type": "bug",
"text": "Fixed updating whitelist IPs in cluster mode"
}
]
},
{
"ver": "1.150.854",
"type": "stable",
"changes": [
{
"type": "bug",
"text": "Fixed duplication proxy ports"
},
{
"type": "star",
"text": "Updated geo locations and list of available carriers"
}
]
},
{
"ver": "1.150.681",
"type": "stable",
"changes": [
{
"type": "bug",
"text": "Fixed UI crash related to Static IP columns"
},
{
"type": "bug",
"text": "Fixed proxy ports status column on specific errors"
},
{
"type": "bug",
"text": "Fixed install for older MacOS versions"
},
{
"type": "sparkles",
"text": "Support for cluster mode (running on multiple CPUs) without session management"
},
{
"type": "sparkles",
"text": "Refresh IP action is now available for static residential zones"
}
]
},
{
"ver": "1.150.351",
"type": "stable",
"changes": [
{
"type": "sparkles",
"text": "UI improvement: setting headers requires SSL Analyzing to reduce confusion"
},
{
"type": "bug",
"text": "Fixed country targeting for static zones"
}
]
},
{
"ver": "1.150.274",
"type": "stable",
"changes": [
{
"type": "sparkles",
"text": "IP refresh price now is shown in Refresh IP action rule"
},
{
"type": "sparkles",
"text": "Static IP column will now show IPs in the pool"
},
{
"type": "bug",
"text": "Fix shortcut problem for Windows home directories with '&' character"
}
]
},
{
"ver": "1.149.883",
"type": "stable",
"changes": [
{
"type": "star",
"text": "Updated geo locations and list of available carriers"
},
{
"type": "bug",
"text": "Fixed gIP allocation modal checkboxes"
}
]
},
{
"ver": "1.149.626",
"type": "stable",
"changes": [
{
"type": "bug",
"text": "Session termination has been redesigned to avoid infinite loops"
},
{
"type": "bug",
"text": "Fixed install script for MacOS, now using Node 10.15.3"
},
{
"type": "bug",
"text": "Fix typos in 'Report Bug' modal"
},
{
"type": "bug",
"text": "Enforce Node 10.16.3 on Linux"
}
]
},
{
"ver": "1.149.104",
"type": "stable",
"changes": [
{
"type": "bug",
"text": "Fixed 'Cannot read property slice of undefined' on startup"
}
]
},
{
"ver": "1.148.901",
"type": "stable",
"changes": [
{
"type": "star",
"text": "Performance improvements (make use of HTTP agent to reuse open sockets"
}
]
},
{
"ver": "1.148.629",
"type": "stable",
"changes": []
},
{
"ver": "1.148.475",
"type": "stable",
"changes": []
},
{
"ver": "1.148.367",
"type": "stable",
"changes": [
{
"type": "bug",
"text": "bug fixes"
}
]
},
{
"ver": "1.148.204",
"type": "stable",
"changes": [
{
"type": "star",
"text": "Super proxies are resolved on each request by default"
}
]
},
{
"ver": "1.148.122",
"type": "stable",
"changes": []
},
{
"ver": "1.148.74",
"type": "stable",
"changes": [
{
"type": "bug",
"text": "fix whitelisting"
}
]
},
{
"ver": "1.147.992",
"type": "stable",
"changes": []
},
{
"ver": "1.147.960",
"type": "stable",
"changes": [
{
"type": "star",
"text": "add a flag to ignore SSL to super proxy errors"
}
]
},
{
"ver": "1.147.813",