forked from pritunl/pritunl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGES
1385 lines (923 loc) · 29.9 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 %>
Improve route advertisement interface
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
-------------------------------
Fix startup issue
Version 1.26.1208.95 2017-01-02
-------------------------------
Fix issue with configuration sync
Version 1.26.1188.41 2016-12-13
-------------------------------
Fix issue with iptables
Version 1.26.1187.26 2016-12-12
-------------------------------
Add support for Duo passcode
Push authentication improvements
Version 1.25.1182.95 2016-12-07
-------------------------------
Improve Duo authentication
Fix issue with dynamic IP pool on multi-device replicated servers
Version 1.25.1180.33 2016-12-05
-------------------------------
Add client push authentication cache to settings
Version 1.25.1177.86 2016-12-02
-------------------------------
Improve logging
Version 1.25.1177.82 2016-12-02
-------------------------------
Fix issue with server start
Version 1.25.1176.93 2016-12-01
-------------------------------
Fix issue with web console settings
Version 1.25.1176.91 2016-12-01
-------------------------------
Add support for client push authentication cache
Improve configuration sync
Fix issue with Okta + Duo settings
Version 1.25.1175.88 2016-11-30
-------------------------------
Add command line tools
Version 1.25.1174.5 2016-11-29
------------------------------
Fix issue with event system
Version 1.25.1173.81 2016-11-28
-------------------------------
Fix issue with Google Cloud
Fix issue with user list failing to update
Version 1.25.1164.91 2016-11-19
-------------------------------
Add allowed devices option to server settings
Version 1.25.1158.92 2016-11-13
-------------------------------
Add setting to require plugins by name
Add us-east-2 AWS region
Version 1.25.1148.96 2016-11-03
-------------------------------
Web interface improvements
Fix iptables support issue
Version 1.25.1141.65 2016-10-27
-------------------------------
Improvements to plugin system
Improve Chrome OS support
Fix issue with linked servers using groups
Version 1.25.1134.24 2016-10-20
-------------------------------
Fix issue when using lib iptables
Version 1.25.1133.28 2016-10-19
-------------------------------
Web console improvements
Add support for lib iptables
Improve Okta single sign-on
Fix issue with required pin and linked servers
Version 1.25.1126.38 2016-10-12
-------------------------------
Add support for route exclusion
Version 1.25.1122.55 2016-10-08
-------------------------------
Fix issue with removing routes
Version 1.25.1122.21 2016-10-08
-------------------------------
Improve logging
Fix issue with unexpected server restart
Version 1.25.1120.61 2016-10-06
-------------------------------
Improve reliability
Version 1.25.1119.59 2016-10-05
-------------------------------
Improve logging
Version 1.25.1116.74 2016-10-02
-------------------------------
Update configuration sync
Version 1.25.1111.71 2016-09-27
-------------------------------
Improve server stability
Version 1.25.1109.79 2016-09-25
-------------------------------
Fix issue with server settings
Version 1.25.1108.92 2016-09-24
-------------------------------
Add support for multiple search domains
Version 1.25.1105.67 2016-09-21
-------------------------------
Improvements to plugin system
Version 1.25.1103.21 2016-09-19
-------------------------------
Fix issue with host settings
Version 1.25.1103.15 2016-09-19
-------------------------------
Add sync address to host settings
Web interface improvements
Fix issue with reset-password
Version 1.25.1093.62 2016-09-09
-------------------------------
Fix server link route configuration issue
Fix issue with cli setting get command
Version 1.25.1092.73 2016-09-08
-------------------------------
Fix web console display issue
Version 1.25.1092.18 2016-09-08
-------------------------------
Packaging updates
Version 1.25.1084.95 2016-08-31
-------------------------------
Improve server reliability
Packaging improvements
Version 1.25.1075.19 2016-08-22
-------------------------------
Improve web server
Version 1.25.1071.11 2016-08-18
-------------------------------
Add host settings to get and set cli command
Fix issue with Windows clients on multi-device servers
Version 1.25.1066.97 2016-08-13
-------------------------------
Add set-host-name cli command
Fix issue with mobile devices on replicated multi-device servers
Version 1.25.1064.86 2016-08-11
-------------------------------
Fix issue with multiple devices causing server crash
Improvements to plugin system
Improvements to web server
Version 1.25.1060.38 2016-08-07
-------------------------------
Improvements to plugin system
Fix issue with multiple devices when server is not replicated
Version 1.25.1057.45 2016-08-04
-------------------------------
Update Lets Encrypt support
Version 1.25.1057.22 2016-08-04
-------------------------------
Improve initial setup web server
Fix interface issue with user and server groups
Fix issue with multiple user network links
Version 1.25.1054.4 2016-08-01
------------------------------
Improve bulk add users
Version 1.25.1050.42 2016-07-28
-------------------------------
Improve user pin and OTP authentication on iOS and Android
Support multiple devices with client-to-client traffic on replicated servers
Add reverse dns lookup for VPN clients
Fix case sensitive dns issue
Version 1.25.1042.81 2016-07-20
-------------------------------
Fix connection issue with linked servers
Version 1.25.1041.8 2016-07-19
------------------------------
Improvements for replicated servers
Performance improvements
Version 1.25.1039.56 2016-07-17
-------------------------------
Improve replicated servers
Version 1.25.1039.3 2016-07-17
------------------------------
Fix issue with loading default CA certificates on older distros
Version 1.25.1037.17 2016-07-15
-------------------------------
Improve host settings
Fix login message for invalid username
Version 1.25.1036.25 2016-07-14
-------------------------------
Add VXLan support for replicated servers
Add auto Route 53 configuration
Improvements to iOS and Android routing with IPv6
Allow interoperable versions to use the same database
Allow incoming dns queries from outside of VPN subnet
Fix virtual network routing on Android
Fix issue with server bind address
Version 1.24.1025.78 2016-07-03
-------------------------------
Fix issue with tcp servers
Version 1.24.1025.13 2016-07-03
-------------------------------
Improvements to web server
Version 1.24.1023.75 2016-07-01
-------------------------------
Fix Duo authentication message on login page
Version 1.24.1023.67 2016-07-01
-------------------------------
Fix issue with Lets Encrypt
Version 1.24.1023.2 2016-07-01
------------------------------
Add support for ap-south-1 region
Fix client reconnect issue with port forwarding
Version 1.24.1020.94 2016-06-28
-------------------------------
Improvements to web server
Version 1.24.1019.41 2016-06-27
-------------------------------
Fix issue with initial setup
Version 1.24.1019.25 2016-06-27
-------------------------------
Add support for user groups
Add groups to plugin system
Add organization and groups support to Radius single sign-on
Add support for Duo authentication with Radius single sign-on
Cache push authentication for single sign-on connections
Accept IPv6 client connections by default
Improvements to Duo single sign-on
Improvements to plugin system
Version 1.23.1005.91 2016-06-13
-------------------------------
Add support for OneLogin API v1
Fix disabled user check with legacy OneLogin API
Version 1.23.1002.28 2016-06-10
-------------------------------
Improvements to plugin system
Version 1.23.997.12 2016-06-05
------------------------------
Changes to plugin system
Version 1.23.996.29 2016-06-04
------------------------------
Add additional plugin functionality
Fix issue with reverse proxy
Version 1.23.993.6 2016-06-01
-----------------------------
Fix issue with command line tools
Version 1.23.992.76 2016-05-31
------------------------------
Add SSO plugin support
Version 1.23.987.18 2016-05-26
------------------------------
Plugin system
Improve user search
Version 1.22.986.28 2016-05-25
------------------------------
Fix issue with user creation
Version 1.22.986.23 2016-05-25
------------------------------
Add client-to-client only user setting
Add support for secondary MongoDB server
Version 1.22.984.30 2016-05-23
------------------------------
Add Chromebook hostname to server settings
Improve replicated servers
Performance improvements for high demand clusters
Version 1.22.980.85 2016-05-19
------------------------------
Performance improvements for replicated servers
Support multiple routing tables with VPC route advertisement
Fix issue with host CPU and memory usage on some platforms
Version 1.22.977.72 2016-05-16
------------------------------
Fix issue with ip pool resulting in address shortage
Improve task system
Improve cluster monitoring metrics
Version 1.22.977.55 2016-05-16
------------------------------
Add open file count to monitoring
Fix dependency issue
Version 1.22.977.25 2016-05-16
------------------------------
Fix issue with user creation
Version 1.22.977.9 2016-05-16
-----------------------------
Add monitoring with InfluxDB
Add support for Redis
Prometheus and Datadog support removed
Version 1.21.967.90 2016-05-06
------------------------------
Fix redirection issue with single sign-on
Version 1.21.954.48 2016-04-23
------------------------------
Increase open file ulimit in service
Version 1.21.953.42 2016-04-22
------------------------------
Improve route advertisement configuration
Interface improvements
Version 1.21.947.73 2016-04-16
------------------------------
Improve network link routes
Fix issue with restricted routes
Version 1.21.946.40 2016-04-15
------------------------------
Improve port forwarding
Version 1.21.946.24 2016-04-15
------------------------------
Add nat interface option to routes
Fix issue with port fowarding
Version 1.21.945.14 2016-04-14
------------------------------
Reduce cpu usage for large servers
Version 1.21.942.24 2016-04-11
------------------------------
Fix issue with Lets Encrypt
Version 1.21.941.90 2016-04-10
------------------------------
Fix url redirection when not using port 443
Version 1.21.941.39 2016-04-10
------------------------------
Redesigned web server
Fix issues with ipv6 servers
Version 1.21.940.94 2016-04-09
------------------------------
Improve web server
Version 1.21.940.40 2016-04-09
------------------------------
Improve web server performance
Add reverse proxy support
Fix issue with non-responsive web server
Version 1.21.939.33 2016-04-08
------------------------------
Improve web server restart
Version 1.21.938.80 2016-04-07
------------------------------
Fix startup issues
Version 1.21.938.43 2016-04-07
------------------------------
Fix issue with setup server
Version 1.21.938.10 2016-04-07
------------------------------
Fix issues with VPC route advertisement
Version 1.21.938.4 2016-04-07
-----------------------------
Add restricted routing
Auto restart non-responsive web server
Add Lets Encrypt intermediate certificates
Improve issues with assigning client ip address
Fix ssl issues
Version 1.21.928.27 2016-03-28
------------------------------
Fix issue with task
Version 1.21.926.53 2016-03-26
------------------------------
Fix issue with VPC route advertisement
Version 1.21.924.38 2016-03-24
------------------------------
Add single sign-on with Slack
Version 1.20.923.9 2016-03-23
-----------------------------
Fix issue with creating users
Version 1.20.922.99 2016-03-22
------------------------------
Improve security in initial setup process
Improve database setup and upgrade process
Fix issue with database upgrades
Version 1.20.917.37 2016-03-17
------------------------------
Add aws vpc integration
Remove Duo SSO administrator user
Fix setup server port on database upgrades
Version 1.19.913.28 2016-03-13
------------------------------
Fix issue with debug server
Version 1.19.912.44 2016-03-12
------------------------------
Add support for LetsEncrypt
Redirect http to https on web console
Move server port option to settings in web console
Change default web console port to 443
Fix issue with finding network interface for route
Fix issue with profile sync
Version 1.18.908.31 2016-03-08
------------------------------
Add support for mongodb ssl when using dns or monitoring
Fix issue with replicated servers route clean up
Fix SSL issue with some browsers
Version 1.18.906.35 2016-03-06
------------------------------
Add server link routes
Fix configuration issue with virtual network route
Version 1.18.903.84 2016-03-03
------------------------------
Fix server route display issue
Version 1.18.902.99 2016-03-02
------------------------------
Improve Okta authentication
Version 1.18.902.26 2016-03-02
------------------------------
Add new route interface
Improve upgrade process
Improve server management
Fix uri on profile view page
Fix connection issue with linked servers
Version 1.17.895.42 2016-02-24
------------------------------
Route clients across replicated servers
Add import uri to profile view page
Add reset-version command
Interface improvements
Fix issue with bridge mode assigning addresses out of range
Fix display issue in web console
Fix issue with service restart
Version 1.16.884.17 2016-02-13
------------------------------
Interface improvements
Fix issue with Cent OS package
Version 1.16.881.14 2016-02-10
------------------------------
Trim long user names in web console
Fix issue with emailing profiles
Version 1.16.879.94 2016-02-08
------------------------------
Bridged mode improvements
Logging improvements
Version 1.16.872.77 2016-02-01
------------------------------
Fix disconnect issue with Duo and Okta Push
Version 1.16.871.82 2016-01-31
------------------------------
Fix issue with user search
Version 1.16.869.90 2016-01-29
------------------------------
Add option to disable user pins
Version 1.16.867.0 2016-01-27
-----------------------------
Add radius support
Version 1.15.862.92 2016-01-22
------------------------------
User search improvements
Fix issue with user audits
Version 1.15.857.70 2016-01-17
------------------------------
Fix issue with iptables error
Version 1.15.856.94 2016-01-16
------------------------------
Add port forwarding
Add system log view
Interface improvements
Version 1.14.845.99 2016-01-05
------------------------------
Add user search operators
Version 1.14.842.79 2016-01-02
------------------------------
Add multiple administrators
Compress static web files with gzip
Disabled profile download for disabled users
Version 1.13.836.1 2015-12-27
-----------------------------
Add user disconnect audit event
Version 1.13.832.99 2015-12-23
------------------------------
Add user pins
Add support for monitoring with Prometheus and Datadog
Version 1.12.828.76 2015-12-19
------------------------------
Stability improvements
Version 1.12.827.85 2015-12-18
------------------------------
Fix key import on iOS
Version 1.12.827.72 2015-12-18
------------------------------
Fix issue with tcp servers not starting
Version 1.12.827.16 2015-12-18
------------------------------
Improve client connections
Version 1.12.826.5 2015-12-17
-----------------------------
Stability improvements
Version 1.12.825.85 2015-12-16
------------------------------
Changes to default settings
Version 1.12.825.77 2015-12-16
------------------------------
Improve server stability
Version 1.12.825.71 2015-12-16
------------------------------
Fix timezone issue
Version 1.12.825.62 2015-12-16
------------------------------
Add auth token to organizations
Improve stability under high server loads
Fix issue with inaccurate timestamps leading to client and server timeouts
Fix issue with gateway redirect on iOS
Fix display issue with host graphs
Fix display error with server and host uptime
Version 1.11.813.26 2015-12-04
------------------------------
Add administrator auditing
Fix issue with key archive
Version 1.11.811.59 2015-12-02
------------------------------
Add auditing
Add MongoDB read preference to conf
Version 1.10.808.53 2015-11-29
------------------------------
Interface improvements
Version 1.10.808.29 2015-11-29
------------------------------
Fix memory usage
Version 1.10.807.67 2015-11-28
------------------------------
Add additional advanced settings
Fix display issue with sso logos
Version 1.10.807.63 2015-11-28
------------------------------
Fix issue with bulk add users
Version 1.10.807.55 2015-11-28
------------------------------
Add demo mode
Version 1.10.806.90 2015-11-27
------------------------------
Add support for dns forwarding
Version 1.9.805.7 2015-11-26
----------------------------
Fix issue with Enterprise dns server
Version 1.9.804.88 2015-11-25
-----------------------------
Disable Enterprise dns server
Version 1.9.804.68 2015-11-25
-----------------------------
Fix issue with Enterprise login
Version 1.9.803.37 2015-11-24
-----------------------------
Add reauth check for Okta on vpn connections
Add OneLogin support with reauth check on vpn connections
Version 1.9.800.2 2015-11-21
----------------------------
Add additional configuration options
Version 1.9.798.90 2015-11-19
-----------------------------
Fix display issue in dialog input
Version 1.9.798.13 2015-11-19
-----------------------------
Fix issue with debian package output
Version 1.9.793.22 2015-11-14
-----------------------------
Add support for Duo phone callback
Version 1.9.793.2 2015-11-14
----------------------------
Add option to skip SAML Duo auth when not available
Fix issue with adding user with add in queue
Version 1.9.792.39 2015-11-13
-----------------------------
Improve initial setup
Version 1.9.792.33 2015-11-13
-----------------------------
Fix issue with upstart script
Version 1.9.792.17 2015-11-13
-----------------------------
Add support for Okta Push
Improvements to single sign-on
Version 1.9.790.54 2015-11-11
-----------------------------
Fix users online count in hosts section
Improve logging for single sign-on
Version 1.9.789.46 2015-11-10
-----------------------------
Add support for SAML
Fix issue with Duo clients timing out durning authentication
Add icons for user authentication type
Version 1.8.787.62 2015-11-08
-----------------------------
Add bypass secondary authentication to user settings
Fix display issue with network link ping settings
Version 1.8.785.65 2015-11-06
-----------------------------
Fix mobile connection issues with multi device enabled
Version 1.8.783.26 2015-11-04
-----------------------------
Change subscription features
Version 1.8.783.8 2015-11-04
----------------------------
Add command line options