forked from pritunl/pritunl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGES
2259 lines (1467 loc) · 46.4 KB
/
CHANGES
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
Pritunl Changelog
=================
Version 1.30.3157.70 2022-05-05
-------------------------------
Support Azure users with more then 50 groups
Update web server cipher suite
Version 1.30.3153.83 2022-05-01
-------------------------------
Fix issue with Chrome OS profiles
Version 1.30.3149.73 2022-04-27
-------------------------------
Improve server routing
Version 1.30.3116.68 2022-03-25
-------------------------------
Add user last active
Add Yubikey support for all user types
Version 1.30.3113.65 2022-03-22
-------------------------------
Fix library issue
Version 1.30.3112.0 2022-03-21
------------------------------
Web interface improvements
Version 1.30.3111.72 2022-03-20
-------------------------------
Improve client connections
Version 1.30.3108.50 2022-03-17
-------------------------------
Fix wg port forwarding
Version 1.30.3106.58 2022-03-15
-------------------------------
Fix server restart when using drop permissions
Version 1.30.3102.46 2022-03-11
-------------------------------
Fix startup issues
Version 1.30.3102.41 2022-03-11
-------------------------------
Update libraries
Version 1.30.3101.90 2022-03-10
-------------------------------
Improve reconnections with two-factor authentication
Version 1.30.3101.81 2022-03-10
-------------------------------
Update libraries
Version 1.30.3098.52 2022-03-07
-------------------------------
Add custom IPsec ciphers to links
Improve connection time with Azure users
Add drop permissions option to settings
Version 1.30.3070.59 2022-02-07
-------------------------------
Improve server routing
Version 1.30.3065.49 2022-02-02
-------------------------------
Fix server issue on rhel7
Version 1.30.3058.49 2022-01-26
-------------------------------
Add backoff timeout to link
Fix server routing
Version 1.30.3053.58 2022-01-21
-------------------------------
Fix server startup with large route lists
Version 1.30.3043.48 2022-01-11
-------------------------------
Fix web interface display issues
Version 1.30.3040.44 2022-01-08
-------------------------------
Fix DNS mapping issue when running multiple servers
Version 1.30.3030.85 2021-12-29
-------------------------------
Add JumpCloud single sign-on
Version 1.30.3023.56 2021-12-22
-------------------------------
Fix connection issue
Version 1.30.3012.75 2021-12-11
-------------------------------
Fix connection issues
Fix profile download issues
Version 1.30.3007.74 2021-12-06
-------------------------------
Fix server startup issues
Version 1.30.3001.87 2021-11-30
-------------------------------
Improve server mangement
Version 1.30.3001.35 2021-11-30
-------------------------------
Web interface improvements
Version 1.30.2969.92 2021-10-29
-------------------------------
Add support for Azure graph API
Version 1.30.2960.4 2021-10-20
------------------------------
Update libraries
Version 1.30.2959.58 2021-10-19
-------------------------------
Fix Radius authentication
Version 1.30.2945.60 2021-10-05
-------------------------------
Change installation paths
Version 1.30.2945.35 2021-10-05
-------------------------------
Fix certificate error
Version 1.30.2944.96 2021-10-04
-------------------------------
Fix Duo api error
Version 1.30.2943.13 2021-10-03
-------------------------------
Add link host checking
Fix Lets Encrypt certificates
Version 1.30.2919.89 2021-09-09
-------------------------------
Improve server mangement
Fix linked server connection issue
Version 1.30.2856.5 2021-07-08
------------------------------
Fix routing issue
Version 1.30.2847.71 2021-06-29
-------------------------------
Improve routing mangement
Version 1.30.2817.44 2021-05-30
-------------------------------
Migrate to python 3
Version 1.29.2664.67 2020-12-28
-------------------------------
Improve Lets Encrypt support
Add IPv6 support to client DNS mapping
Fix issue with routing
Version 1.29.2591.94 2020-10-16
-------------------------------
Improve MAC address detection on wg connections
Version 1.29.2547.95 2020-09-02
-------------------------------
Improve selinux policies
Version 1.29.2530.72 2020-08-16
-------------------------------
Fix wg issue on rhel7
Version 1.29.2524.85 2020-08-10
-------------------------------
Improve server configuration
Fix issue with multiple devices
Version 1.29.2490.44 2020-07-07
-------------------------------
Improve user API
Version 1.29.2468.79 2020-06-15
-------------------------------
Fix issue creating users
Version 1.29.2468.29 2020-06-15
-------------------------------
Add selinux policy for rhel8
Version 1.29.2435.70 2020-05-13
-------------------------------
Fix issue removing linked servers
Version 1.29.2427.61 2020-05-05
-------------------------------
Server improvements
Version 1.29.2423.17 2020-05-01
-------------------------------
Add server session timeout
Support user MAC address validation
Version 1.29.2395.63 2020-04-03
-------------------------------
Fix issue with wg network links
Version 1.29.2394.19 2020-04-02
-------------------------------
Fix server management
Version 1.29.2392.39 2020-03-31
-------------------------------
Server improvements
Version 1.29.2388.59 2020-03-27
-------------------------------
Fix server init
Version 1.29.2388.46 2020-03-27
-------------------------------
Add support for wg
Version 1.29.2276.91 2019-12-06
-------------------------------
Fix issue with dynamic addresses
Version 1.29.2232.32 2019-10-23
-------------------------------
Add YubiKey support without single sign-on
Remove audit events from logs
Version 1.29.2209.0 2019-09-30
------------------------------
Reliablity improvements
Version 1.29.2208.39 2019-09-29
-------------------------------
Server reliablity improvements
Version 1.29.2145.25 2019-07-28
-------------------------------
Improve profile management
Support Google Authenticator on Okta
Add support for new AWS regions
Fix connection issues with client
Version 1.29.2051.18 2019-04-25
-------------------------------
Add support for network mapping
Version 1.29.2026.90 2019-03-31
-------------------------------
Fix issue with API handler
Version 1.29.2010.18 2019-03-15
-------------------------------
Add support for replicated servers with non-NAT routes
Version 1.29.1999.88 2019-03-04
-------------------------------
Add mongodb max pool size to configuration
Version 1.29.1994.1 2019-02-27
------------------------------
Add audit journal
Version 1.29.1990.10 2019-02-23
-------------------------------
Fix issue with web server hanging
Fix issue with dns server hanging
Version 1.29.1979.98 2019-02-12
-------------------------------
Server improvements
Version 1.29.1958.76 2019-01-22
-------------------------------
Improve user configuration
Version 1.29.1952.27 2019-01-16
-------------------------------
Interface improvements
Version 1.29.1947.29 2019-01-11
-------------------------------
Server improvements
Version 1.29.1929.33 2018-12-24
-------------------------------
Fix instance connection issue
Version 1.29.1926.93 2018-12-21
-------------------------------
Use random default password
Version 1.29.1925.81 2018-12-20
-------------------------------
Improve Radius single sign-on support
Version 1.29.1924.6 2018-12-19
------------------------------
Improve static links
Version 1.29.1923.80 2018-12-18
-------------------------------
Web interface improvements
Version 1.29.1919.29 2018-12-14
-------------------------------
Improve unavailable link reliability
Version 1.29.1917.25 2018-12-12
-------------------------------
Add support for Auth0 single sign-on
Version 1.29.1914.98 2018-12-09
-------------------------------
Add support for Oracle Cloud routing
Improve AWS routing support
Improve load balancer support
Version 1.29.1902.39 2018-11-27
-------------------------------
Fix connection issue with older clients
Version 1.29.1891.28 2018-11-16
-------------------------------
Fix database initialization
Version 1.29.1890.32 2018-11-15
-------------------------------
Fix issue with creating servers
Add database repair command
Version 1.29.1887.80 2018-11-12
-------------------------------
Fix issue with requirements
Version 1.29.1887.37 2018-11-12
-------------------------------
Improve authentication cache
Logging improvements
Version 1.29.1827.6 2018-09-13
------------------------------
Improve Chrome OS support
Version 1.29.1804.86 2018-08-21
-------------------------------
Single sign-on improvements
Server management improvements
Version 1.29.1789.87 2018-08-06
-------------------------------
Improve logging
Version 1.29.1788.11 2018-08-05
-------------------------------
Improve user management
Version 1.29.1787.23 2018-08-04
-------------------------------
Add support for Azure single sign-on
Add support for OneLogin and Okta OTP passcodes
Version 1.29.1765.91 2018-07-13
-------------------------------
Link improvements
Add mss fix to server options
Version 1.29.1758.63 2018-07-06
-------------------------------
Improvements to command line tools
Version 1.29.1731.96 2018-06-09
-------------------------------
Add support for EdgeRouter IPsec links
Version 1.29.1731.20 2018-06-09
-------------------------------
Improve Chrome OS support
Improvements to plugin system
Version 1.29.1721.99 2018-05-30
-------------------------------
Add IPv6 IPsec links
Version 1.29.1705.7 2018-05-14
------------------------------
Improve DNS server
Version 1.29.1695.84 2018-05-04
-------------------------------
Improve single sign-on
Version 1.29.1680.74 2018-04-19
-------------------------------
Improve server routing
Version 1.29.1675.99 2018-04-14
-------------------------------
Update Lets Encrypt support
Fix routing issue
Version 1.29.1670.66 2018-04-09
-------------------------------
Server routing improvements
Version 1.29.1669.3 2018-04-08
------------------------------
Server NAT routing improvements
Version 1.29.1666.76 2018-04-05
-------------------------------
Host interface improvements
Version 1.29.1666.4 2018-04-05
------------------------------
Add link transit peers
Version 1.29.1663.38 2018-04-02
-------------------------------
Logging improvements
Added monitoring metrics
Link improvements
Version 1.29.1657.94 2018-03-27
-------------------------------
Single sign-on improvements
Version 1.29.1651.76 2018-03-21
-------------------------------
Fix IPv6 issues
Version 1.29.1640.83 2018-03-10
-------------------------------
Improve sso organization matching
Version 1.29.1638.92 2018-03-08
-------------------------------
Okta sso improvements
Version 1.29.1635.72 2018-03-05
-------------------------------
Linked server improvements
Version 1.29.1633.23 2018-03-03
-------------------------------
Fix server recovery issues
Version 1.29.1631.29 2018-03-01
-------------------------------
Server improvements
Add SELinux support
Version 1.29.1631.22 2018-03-01
-------------------------------
Reliablity improvements
Version 1.29.1630.34 2018-02-28
-------------------------------
Configuration improvements
Version 1.29.1630.29 2018-02-28
-------------------------------
Add lzo support
Version 1.29.1630.26 2018-02-28
-------------------------------
Fix setup issue
Version 1.29.1630.5 2018-02-28
------------------------------
Web server improvements
Version 1.29.1628.17 2018-02-26
-------------------------------
Add support for Google two-factor authentication cache
Remove lzo support
Version 1.29.1625.53 2018-02-23
-------------------------------
Fix issue with server setup
Version 1.29.1624.82 2018-02-22
-------------------------------
Improve logging
Version 1.29.1618.85 2018-02-16
-------------------------------
Improve IPv6 support
Version 1.29.1614.10 2018-02-12
-------------------------------
Add proxy NDP support
Version 1.29.1613.84 2018-02-11
-------------------------------
Improve IPv6 support
Version 1.29.1609.88 2018-02-07
-------------------------------
Improve host settings
Add dedicated support
Version 1.29.1596.36 2018-01-25
-------------------------------
Add direct IPsec links
Support attaching host to running servers
Version 1.28.1583.74 2018-01-12
-------------------------------
Improve server reliability
Version 1.28.1583.22 2018-01-12
-------------------------------
Fix issue with settings
Version 1.28.1583.4 2018-01-12
------------------------------
Improve Okta single sign-on
Improve OneLogin single sign-on
Improve authentication logging
Fix database performance issue
Version 1.28.1578.26 2018-01-07
-------------------------------
Fix issue with initial setup
Version 1.28.1575.85 2018-01-04
-------------------------------
Improve server reliability
Version 1.28.1548.86 2017-12-08
-------------------------------
Web interface improvements
Version 1.28.1545.95 2017-12-05
-------------------------------
Web server improvements
Version 1.28.1543.43 2017-12-03
-------------------------------
Fix issue with cpu usage
Version 1.28.1541.26 2017-12-01
-------------------------------
Improve Duo phone authentication
Version 1.28.1531.19 2017-11-21
-------------------------------
Support load balancer with Lets Encrypt certificate
Version 1.28.1526.18 2017-11-16
-------------------------------
Update Lets Encrypt support
Web interface improvements
Version 1.28.1515.73 2017-11-05
-------------------------------
Add metric to route options
Improve server routes management
Version 1.28.1487.93 2017-10-08
-------------------------------
Add authentication limit to user connections
Version 1.28.1485.27 2017-10-06
-------------------------------
Add static IPsec links
Add rekey option to link
Version 1.28.1476.96 2017-09-27
-------------------------------
Fix issue with Google group matching
Version 1.28.1475.35 2017-09-26
-------------------------------
Push authentication changes
Version 1.28.1475.11 2017-09-26
-------------------------------
Add sso ip whitelist
Version 1.28.1472.86 2017-09-23
-------------------------------
Fix issue with client IP address on Windows
Version 1.28.1468.86 2017-09-19
-------------------------------
Fix issue with single sign-on
Version 1.28.1465.32 2017-09-16
-------------------------------
Server management improvements
Version 1.28.1463.93 2017-09-14
-------------------------------
Improve server reliability
Version 1.28.1463.34 2017-09-14
-------------------------------
Fix issue with user groups configuration
Version 1.28.1463.29 2017-09-14
-------------------------------
Add Google G Suite group matching using Admin SDK
Version 1.28.1462.0 2017-09-13
------------------------------
Fix issues with pritunl-dns server
Version 1.28.1461.29 2017-09-12
-------------------------------
Add option to disable client reconnect
Version 1.28.1460.76 2017-09-11
-------------------------------
Improve server reliability
Version 1.28.1445.85 2017-08-27
-------------------------------
Improve error codes
Version 1.28.1442.28 2017-08-24
-------------------------------
Routing improvements
Logging improvements
Version 1.28.1438.31 2017-08-20
-------------------------------
Add option to change user type
Add support for replicated IPv6 client-to-client traffic
Web interface improvements
Version 1.28.1426.0 2017-08-08
------------------------------
Web interface improvements
Version 1.28.1415.87 2017-07-28
-------------------------------
Fix issue with server host detach
Version 1.28.1379.82 2017-06-22
-------------------------------
Improve Duo authentication
Improvements to command line tools
Version 1.28.1377.74 2017-06-20
-------------------------------
Fix issue with startup
Version 1.28.1373.27 2017-06-16
-------------------------------
Improve startup
Version 1.28.1372.97 2017-06-15
-------------------------------
Fix issue with link configuration
Version 1.28.1372.23 2017-06-15
-------------------------------
Add link exclusions
Version 1.28.1369.94 2017-06-12
-------------------------------
Web interface improvements
Version 1.28.1366.98 2017-06-09
-------------------------------
Fix issue with DNS server
Version 1.28.1364.80 2017-06-07
-------------------------------
Improve IPv6 support
Improve AWS route advertisement
Version 1.28.1358.35 2017-06-01
-------------------------------
Add support for additional AWS regions
Version 1.28.1357.38 2017-05-31
-------------------------------
Fix OpenSSL error
Version 1.28.1357.34 2017-05-31
-------------------------------
Improve links reliability
Add links to demo
Version 1.28.1357.25 2017-05-31
-------------------------------
Fix issue with older versions of OpenVPN
Version 1.28.1356.45 2017-05-30
-------------------------------
Web server improvements
Version 1.28.1356.41 2017-05-30
-------------------------------
Fix issue with user creation
Version 1.28.1356.19 2017-05-30
-------------------------------
Add IPsec links
Add support for AES GCM ciphers
Improve route advertisement interface
Performance improvements
Improve server reliability
Fix API issue
Version 1.27.1314.93 2017-04-18
-------------------------------
Add support for AWS roles
Version 1.27.1308.92 2017-04-12
-------------------------------
Add support for AWS GovCloud region
Version 1.27.1307.25 2017-04-11
-------------------------------
Fix issue with DNS mapping
Version 1.27.1282.77 2017-03-17
-------------------------------
Web server improvements
Version 1.27.1272.94 2017-03-07
-------------------------------
Web interface improvements
Fix issue with AWS route advertisement
Version 1.27.1268.95 2017-03-03
-------------------------------
Improve AWS error handling
Version 1.27.1266.22 2017-03-01
-------------------------------
Add user inactive timeout to server settings
Version 1.27.1265.38 2017-02-28
-------------------------------
Add support for administrator login with YubiKey
Fix issue with cli tools
Improvements to auto failover
Version 1.27.1259.77 2017-02-22
-------------------------------
Fix display issue in web console
Version 1.27.1259.32 2017-02-22
-------------------------------
Add support for YubiKeys
Add option to block outside DNS on Windows
Improve support for alternative clients
Improve two-factor authentication cache
Improvements to command line tools
Version 1.26.1231.99 2017-01-25
-------------------------------
Web server improvements
Version 1.26.1227.85 2017-01-21
-------------------------------
Fix display issue on profile download page
Version 1.26.1227.2 2017-01-21
------------------------------
Improve profile download page
Version 1.26.1225.85 2017-01-19
-------------------------------
Improve web server reliability
Version 1.26.1221.87 2017-01-15
-------------------------------
Improve logging
Web interface improvements
Version 1.26.1221.83 2017-01-15
-------------------------------
Fix web interface issues
Version 1.26.1221.43 2017-01-15
-------------------------------
Fix client connection options
Version 1.26.1220.48 2017-01-14
-------------------------------
Improve web interface
Change API system
Version 1.26.1218.96 2017-01-12
-------------------------------
Add user settings
Version 1.26.1217.86 2017-01-11
-------------------------------
Fix issue with single sign-on settings
Version 1.26.1215.39 2017-01-09
-------------------------------
Add route comments
Improve configuration sync
Web interface improvements
Version 1.26.1209.89 2017-01-03
-------------------------------