-
Notifications
You must be signed in to change notification settings - Fork 5
/
versions.yml
1060 lines (1059 loc) · 23.4 KB
/
versions.yml
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
version: 0.38.2
time: 2024/11/26 11:56
author: Josep Llaneras
email: [email protected]
urgency: low
stability: unstable
description:
- Emit connection state update after state tasks are completed
---
version: 0.38.1
time: 2024/11/25 14:00
author: Alexandru Cheltuitor
email: [email protected]
urgency: low
stability: unstable
description:
- Update how time is calculated in logging module.
---
version: 0.38.0
time: 2024/11/19 13:00
author: Alexandru Cheltuitor
email: [email protected]
urgency: low
stability: unstable
description:
- Drop Ubuntu 20.04 support.
---
version: 0.37.2
time: 2024/11/14 16:33
author: Luke Titley
email: [email protected]
urgency: low
stability: unstable
description:
- Added semgrep scanning to CI.
---
version: 0.37.1
time: 2024/11/08 16:00
author: Alexandru Cheltuitor
email: [email protected]
urgency: low
stability: unstable
description:
- Refactor custom DNS.
---
version: 0.37.0
time: 2024/11/05 12:00
author: Alexandru Cheltuitor
email: [email protected]
urgency: low
stability: unstable
description:
- Introduce custom DNS.
---
version: 0.36.6
time: 2024/10/30 14:50
author: Luke Titley
email: [email protected]
urgency: low
stability: unstable
description:
- Automatically generate the changelog files for debian and fedora.
---
version: 0.36.5
time: 2024/10/30 07:00
author: Josep Llaneras
email: [email protected]
urgency: low
stability: unstable
description:
- Switch to /vpn/v2 API.
- Use versioned API endpoints.
---
version: 0.36.4
time: 2024/10/09 14:50
author: Luke Titley
email: [email protected]
urgency: low
stability: unstable
description:
- Automatically generate the changelog files for debian and fedora.
---
version: 0.36.3
time: 2024/10/09 10:00
author: Luke Titley
email: [email protected]
urgency: low
stability: unstable
description:
- Fix for certificate based authentication for openvpn, feature flag was out of date.
---
version: 0.36.2
time: 2024/10/08 15:00
author: Josep Llaneras
email: [email protected]
urgency: low
stability: unstable
description:
- Fix certificate expired regression
---
version: 0.36.1
time: 2024/10/04 10:00
author: Luke Titley
email: [email protected]
urgency: low
stability: unstable
description:
- Enable certificate based authentication for openvpn.
---
version: 0.35.8
time: 2024/10/03 10:00
author: Alexandru Cheltuitor
email: [email protected]
urgency: low
stability: unstable
description:
- Improve logic on when to update location details.
- Add tests.
---
version: 0.35.7
time: 2024/10/02 15:00
author: Luke Titley
email: [email protected]
urgency: low
stability: unstable
description:
- Use a 'before_send' callback in sentry to sanitize events in sentry
---
version: 0.35.6
time: 2024/10/02 13:00
author: Alexandru Cheltuitor
email: [email protected]
urgency: low
stability: unstable
description:
- Update location object after successfully connecting to VPN server via local agent.
---
version: 0.35.5
time: 2024/09/27 11:00
author: Josep Llaneras
email: [email protected]
urgency: medium
stability: unstable
description:
- Fix regression sending errors to sentry.
---
version: 0.35.4
time: 2024/09/24 12:00
author: Luke Titley
email: [email protected]
urgency: medium
stability: unstable
description:
- Fix to rpm package.spec, added accidentally removed Obsoletes statement.
---
version: 0.35.3
time: 2024/09/24 12:00
author: Luke Titley
email: [email protected]
urgency: medium
stability: unstable
description:
- Send all errors to sentry, but swallow api errors.
---
version: 0.35.2
time: 2024/09/23 12:00
author: Alexandru Cheltuitor
email: [email protected]
urgency: medium
stability: unstable
description:
- Merge logger package into this one.
---
version: 0.35.1
time: 2024/09/23 11:00
author: Josep Llaneras
email: [email protected]
urgency: medium
stability: unstable
description:
- Fix refregresion (logout user on 401 API error).
---
version: 0.35.0
time: 2024/09/09 11:00
author: Alexandru Cheltuitor
email: [email protected]
urgency: medium
stability: unstable
description:
- Catch and send LA errors to sentry.
---
version: 0.34.0
time: 2024/09/13 16:00
author: Josep Llaneras
email: [email protected]
urgency: medium
stability: unstable
description:
- Import refreshers from app.
---
version: 0.33.12
time: 2024/09/06 11:00
author: Alexandru Cheltuitor
email: [email protected]
urgency: medium
stability: unstable
description:
- Ensure there is a way to disable IPv6.
---
version: 0.33.11
time: 2024/09/02 14:00
author: Alexandru Cheltuitor
email: [email protected]
urgency: medium
stability: unstable
description:
- Change IPv6 default value and move out of the features dict.
---
version: 0.33.10
time: 2024/08/30 16:00
author: Alexandru Cheltuitor
email: [email protected]
urgency: medium
stability: unstable
description:
- Properly configure OpenVPN with IPv6 value.
---
version: 0.33.9
time: 2024/08/29 16:00
author: Alexandru Cheltuitor
email: [email protected]
urgency: medium
stability: unstable
description:
- Pass IPv6 value.
---
version: 0.33.8
time: 2024/08/28 12:00
author: Luke Titley
email: [email protected]
urgency: medium
stability: unstable
description:
- Put changes to fetching with timestamp (If-Modified-Since), behind a feature flag.
---
version: 0.33.7
time: 2024/08/28 11:00
author: Luke Titley
email: [email protected]
urgency: medium
stability: unstable
description:
- Fixes support for 'If-Modified-Since', expiration times.
---
version: 0.33.6
time: 2024/08/27 16:00
author: Luke Titley
email: [email protected]
urgency: medium
stability: unstable
description:
- Fixes support for 'If-Modified-Since' header in server list requests.
---
version: 0.33.5
time: 2024/08/26 16:00
author: Luke Titley
email: [email protected]
urgency: medium
stability: unstable
description:
- This adds support for 'If-Modified-Since' header in server list requests.
---
version: 0.33.4
time: 2024/08/22 16:00
author: Luke Titley
email: [email protected]
urgency: medium
stability: unstable
description:
- Make sure features cant be request after connection as well.
---
version: 0.33.3
time: 2024/08/22 11:30
author: Josep Llaneras
email: [email protected]
urgency: medium
stability: unstable
description:
- Expose property in VPNConnection to know if features can be applied on active connections.
---
version: 0.33.2
time: 2024/08/21 16:00
author: Luke Titley
email: [email protected]
urgency: medium
stability: unstable
description:
- Tier 0 level users can't control the features they have. So don't send any feature requests for them.
---
version: 0.33.1
time: 2024/08/21 15:00
author: Josep Llaneras
email: [email protected]
urgency: medium
stability: unstable
description:
- Fix crash after logout
---
version: 0.33.0
time: 2024/08/20 16:00
author: Josep Llaneras
email: [email protected]
urgency: medium
stability: unstable
description:
- Get rid of VPNConnectorWrapper.
---
version: 0.32.2
time: 2024/08/20 12:00
author: Josep Llaneras
email: [email protected]
urgency: medium
stability: unstable
description:
- Enable wireguard feature flag by default.
---
version: 0.32.1
time: 2024/08/12 14:00
author: Josep Llaneras
email: [email protected]
urgency: medium
stability: unstable
description:
- Handle UnicodeDecodeError when loading persisted VPN connection.
---
version: 0.32.0
time: 2024/08/12 09:00
author: Josep Llaneras
email: [email protected]
urgency: medium
stability: unstable
description:
- Update connection features via local agent if available.
---
version: 0.31.0
time: 2024/08/08 11:00
author: Luke Titley
email: [email protected]
urgency: medium
stability: unstable
description:
- Disconnect and notify the user when the maximum number of sessions is reached.
---
version: 0.30.0
time: 2024/07/26 15:00
author: Alexandru Cheltuitor
email: [email protected]
urgency: medium
stability: unstable
description:
- Handle ExpiredCertificate events.
---
version: 0.29.4
time: 2024/07/17 15:00
author: Alexandru Cheltuitor
email: [email protected]
urgency: medium
stability: unstable
description:
- Update default feature flags and update feature flags interface.
---
version: 0.29.3
time: 2024/07/17 13:00
author: Josep Llaneras
email: [email protected]
urgency: medium
stability: unstable
description:
- Update credentials in the background
---
version: 0.29.2
time: 2024/07/12 15:00
author: Josep Llaneras
email: [email protected]
urgency: medium
stability: unstable
description:
- Fix crash initializing VPN connector.
---
version: 0.29.1
time: 2024/07/12 15:00
author: Josep Llaneras
email: [email protected]
urgency: medium
stability: unstable
description:
- Update VPN credentials when an active VPN connection is found at startup.
---
version: 0.29.0
time: 2024/07/10 15:00
author: Josep Llaneras
email: [email protected]
urgency: medium
stability: unstable
description:
- Merge connection and kill switch packages into this one.
---
version: 0.28.1
time: 2024/07/11 12:00
author: Alexandru Cheltuitor
email: [email protected]
urgency: medium
stability: unstable
description:
- Improve testing to capture when default value is being passed.
---
version: 0.28.0
time: 2024/07/10 12:00
author: Alexandru Cheltuitor
email: [email protected]
urgency: medium
stability: unstable
description:
- Implement and expose feature flags.
---
version: 0.27.3
time: 2024/07/09 15:34
author: Luke Titley
email: [email protected]
urgency: medium
stability: unstable
description:
- Move local agent management into wireguard backend.
---
version: 0.27.2
time: 2024/07/09 09:00
author: Josep Llaneras
email: [email protected]
urgency: medium
stability: unstable
description:
- Send CPU architecture following semver's specs.
---
version: 0.27.1
time: 2024/07/2 13:00
author: Luke Titley
email: [email protected]
urgency: medium
stability: unstable
description:
- Switched over to async local agent api.
---
version: 0.27.0
time: 2024/07/1 10:00
author: Alexandru Cheltuitor
email: [email protected]
urgency: medium
stability: unstable
description:
- Attempt to use external local agent package, otherwise fallback to existent one.
---
version: 0.26.4
time: 2024/06/24 17:00
author: Luke Titley
email: [email protected]
urgency: medium
stability: unstable
description:
- Add the architecture in the appversion field for ProtonSSO.
---
version: 0.26.3
time: 2024/06/17 17:00
author: Luke Titley
email: [email protected]
urgency: medium
stability: unstable
description:
- Switch over to automatically generated changelogs for debian and rpm.
---
version: 0.26.2
time: 2024/06/10 11:43
author: Josep Llaneras
email: [email protected]
urgency: medium
stability: unstable
description:
- Fix sentry error sanitization crash.
---
version: 0.26.1
time: 2024/06/04 13:03
author: Josep Llaneras
email: [email protected]
urgency: medium
stability: unstable
description:
- Fix certificate duration regression.
---
version: 0.26.0
time: 2024/05/30 09:37
author: Josep Llaneras
email: [email protected]
urgency: medium
stability: unstable
description:
- Send wireguard certificate to server via local agent.
---
version: 0.25.1
time: 2024/05/24 14:55
author: Josep Llaneras
email: [email protected]
urgency: medium
stability: unstable
description:
- Increase certificate duration.
---
version: 0.25.0
time: 2024/05/23 10:00
author: Luke Titley
email: [email protected]
urgency: medium
stability: unstable
description:
- Refactor of Settings to ensure settings are only saved when they are changed.
---
version: 0.24.5
time: 2024/05/08 10:00
author: Alexandru Cheltuitor
email: [email protected]
urgency: medium
stability: unstable
description:
- Stop raising exceptions when getting wireguard certificate and it is expired.
---
version: 0.24.4
time: 2024/05/07 10:00
author: Luke Titley
email: [email protected]
urgency: medium
stability: unstable
description:
- Filter OSError not just FileNotFound error in sentry.
---
version: 0.24.3
time: 2024/05/03 10:00
author: Luke Titley
email: [email protected]
urgency: medium
stability: unstable
description:
- Set the sentry user id based on a hash of /etc/machine-id.
---
version: 0.24.2
time: 2024/05/02 15:00
author: Alexandru Cheltuitor
email: [email protected]
urgency: medium
stability: unstable
description:
- Fix deprecation warning when calculatin WireGuard certificate validity period.
---
version: 0.24.1
time: 2024/04/30 15:58
author: Josep Llaneras
email: [email protected]
urgency: medium
stability: unstable
description:
- Fix error saving cache file when parent directory does not exist.
---
version: 0.24.0
time: 2024/04/30 16:00
author: Luke Titley
email: [email protected]
urgency: medium
stability: unstable
description:
- Only initialize sentry on first enable.
- Forward SSL_CERT_FILE environment variable to sentry.
---
version: 0.23.1
time: 2024/04/23 16:00
author: Luke Titley
email: [email protected]
urgency: medium
stability: unstable
description:
- Added missing pip dependencies.
---
version: 0.23.0
time: 2024/04/22 14:00
author: Luke Titley
email: [email protected]
urgency: medium
stability: unstable
description:
- Merged proton-vpn-api-session package into this one.
---
version: 0.22.5
time: 2024/04/18 16:00
author: Luke Titley
email: [email protected]
urgency: medium
stability: unstable
description:
- Pass requested features through to session login and two factor submit.
---
version: 0.22.4
time: 2024/04/16 15:00
author: Alexandru Cheltuitor
email: [email protected]
urgency: medium
stability: unstable
description:
- Provide method to update certificate.
---
version: 0.22.3
time: 2024/04/10 09:07
author: Luke Titley
email: [email protected]
urgency: medium
stability: unstable
description:
- Ensure that crash reporting state is preserved between restarts.
---
version: 0.22.2
time: 2024/04/10 09:07
author: Luke Titley
email: [email protected]
urgency: medium
stability: unstable
description:
- Explicitly state the sentry integrations we want. Dont include the ExceptHookIntegration.
---
version: 0.22.1
time: 2024/04/10 09:07
author: Luke Titley
email: [email protected]
urgency: medium
stability: unstable
description:
- Change url for sentry, dont send server_name, use older sentry api.
---
version: 0.22.0
time: 2024/04/05 09:07
author: Luke Titley
email: [email protected]
urgency: medium
stability: unstable
description:
- Add mechanism to send errors anonymously to sentry.
---
version: 0.21.2
time: 2024/04/04 09:07
author: Alexandru Cheltuitor
email: [email protected]
urgency: medium
stability: unstable
description:
- Return list of protocol plugins for a specific backend instead of returning a list
of protocols names.
---
version: 0.21.1
time: 2024/03/01 09:07
author: Alexandru Cheltuitor
email: [email protected]
urgency: medium
stability: unstable
description:
- Add WireGuard ports.
---
version: 0.21.0
time: 2024/02/16 09:07
author: Josep Llaneras
email: [email protected]
urgency: medium
stability: unstable
description:
- Apply kill switch setting immediately.
---
version: 0.20.4
time: 2024/02/14 14:57
author: Josep Llaneras
email: [email protected]
urgency: medium
stability: unstable
description:
- Initialize VPNConnector with settings.
---
version: 0.20.3
time: 2023/12/13 11:33
author: Josep Llaneras
email: [email protected]
urgency: medium
stability: unstable
description:
- Make VPN connection API async.
---
version: 0.20.2
time: 2023/11/08 08:51
author: Josep Llaneras
email: [email protected]
urgency: medium
stability: unstable
description:
- Make API async and avoid thread-safety issues in asyncio code.
- Move bug report submission to proton-vpn-session.
---
version: 0.20.1
time: 2023/10/10 10:00
author: Alexandru Cheltuitor
email: [email protected]
urgency: medium
stability: unstable
description:
- Update dependencies.
---
version: 0.20.0
time: 2023/09/15 10:00
author: Alexandru Cheltuitor
email: [email protected]
urgency: medium
stability: unstable
description:
- Expose properties which allow to access account related data.
---
version: 0.19.0
time: 2023/09/04 10:00
author: Alexandru Cheltuitor
email: [email protected]
urgency: medium
stability: unstable
description:
- Add kill switch to settings and add dependency for base kill switch package.
---
version: 0.18.0
time: 2023/07/19 10:00
author: Alexandru Cheltuitor
email: [email protected]
urgency: medium
stability: unstable
description:
- Rename setting random_nat to moderate_nat to conform to API specs.
---
version: 0.17.0
time: 2023/07/07 15:00
author: Alexandru Cheltuitor
email: [email protected]
urgency: medium
stability: unstable
description:
- Enable NetShield by default on paid plans.
---
version: 0.16.0
time: 2023/07/05 13:00
author: Alexandru Cheltuitor
email: [email protected]
urgency: medium
stability: unstable
description:
- Add protocol entry to settings.
---
version: 0.15.0
time: 2023/07/03 15:00
author: Alexandru Cheltuitor
email: [email protected]
urgency: medium
stability: unstable
description:
- Implement save method for settings.
---
version: 0.14.0
time: 2023/06/20 16:00
author: Alexandru Cheltuitor
email: [email protected]
urgency: medium
stability: unstable
description:
- Remove split tunneling and ipv6 options from settings.
---
version: 0.13.0
time: 2023/06/14 15:21
author: Josep Llaneras
email: [email protected]
urgency: medium
stability: unstable
description:
- Expose server loads update.
---
version: 0.12.1
time: 2023/06/08 09:57
author: Josep Llaneras
email: [email protected]
urgency: medium
stability: unstable
description:
- Fix settings defaults.
---
version: 0.12.0
time: 2023/06/06 15:27
author: Josep Llaneras
email: [email protected]
urgency: medium
stability: unstable
description:
- Pass X-PM-netzone header when retrieving /vpn/logicals and /vpn/loads.
---
version: 0.11.0
time: 2023/06/02 12:00
author: Alexandru Cheltuitor
email: [email protected]
urgency: medium
stability: unstable
description:
- Ensure general settings are taken into account when establishing a vpn connection.
---
version: 0.10.3
time: 2023/05/26 16:00
author: Alexandru Cheltuitor
email: [email protected]
urgency: medium
stability: unstable
description:
- Specify exit IP of physical server.
---
version: 0.10.2
time: 2023/04/24 16:00
author: Alexandru Cheltuitor
email: [email protected]
urgency: medium
stability: unstable
description:
- Fix issue where multiple attachments were overwritten when submitting a bug report.
---
version: 0.10.1
time: 2023/04/03 13:54
author: Josep Llaneras
email: [email protected]
urgency: medium
stability: unstable
description:
- Adapt to VPN connection refactoring.
---
version: 0.10.0
time: 2023/02/28 09:00
author: Alexandru Cheltuitor
email: [email protected]
urgency: medium
stability: unstable
description:
- Implement new appversion format.
---
version: 0.9.0
time: 2023/02/14 11:00
author: Alexandru Cheltuitor
email: [email protected]
urgency: medium
stability: unstable
description:
- Use standardized paths for cache and settings.
---
version: 0.8.2
time: 2023/02/07 15:00
author: Alexandru Cheltuitor
email: [email protected]
urgency: medium
stability: unstable
description:
- Do not raise exception during logout if there is an active connection.
---
version: 0.8.1
time: 2023/01/20 14:12
author: Josep Llaneras
email: [email protected]
urgency: medium
stability: unstable
description:
- Send bug report using proton-core.
---
version: 0.8.0
time: 2023/01/17 11:00
author: Alexandru Cheltuitor
email: [email protected]
urgency: medium
stability: unstable
description:
- 'Feature: Report a bug.'
---
version: 0.7.0
time: 2023/01/13 17:38
author: Josep Llaneras
email: [email protected]
urgency: medium
stability: unstable
description:
- Move get_vpn_server to VPNConnectionHolder.
---
version: 0.6.0
time: 2023/01/12 10:31
author: Josep Llaneras
email: [email protected]
urgency: medium
stability: unstable
description:
- Expose methods to load api data from the cache stored in disk.
---
version: 0.5.0
time: 2022/12/05 17:39
author: Josep Llaneras
email: [email protected]
urgency: medium
stability: unstable
description:
- Persist VPN server to disk.
---
version: 0.4.0
time: 2022/11/29 16:00
author: Alexandru Cheltuitor
email: [email protected]
urgency: medium
stability: unstable
description:
- Decoupled VPNServers and ClientConfig.
- All methods that return a server will now return a LogicalServer instead of VPNServer.
---
version: 0.3.1
time: 2022/11/25 16:44
author: Josep Llaneras
email: [email protected]
urgency: medium
stability: unstable
description:
- Check if there is an active connection before logging out.
---
version: 0.3.0
time: 2022/11/17 16:00
author: Alexandru Cheltuitor
email: [email protected]
urgency: medium
stability: unstable
description:
- Fetch and cache clientconfig data from API.
---
version: 0.2.7
time: 2022/11/15 17:47
author: Josep Llaneras
email: [email protected]
urgency: medium
stability: unstable
description:
- Allow cancelling a VPN connection before it is established.
---
version: 0.2.6
time: 2022/11/15 15:07
author: Josep Llaneras
email: [email protected]
urgency: medium
stability: unstable
description:
- Check connection status before connecting/disconnecting.
---
version: 0.2.5
time: 2022/11/11 16:00
author: Alexandru Cheltuitor
email: [email protected]
urgency: medium
stability: unstable
description:
- Add Proton VPN logging library.
---
version: 0.2.4
time: 2022/11/09 16:20
author: Josep Llaneras
email: [email protected]
urgency: medium
stability: unstable
description:
- Lazy load the currently active Proton VPN connection, if existing.
---
version: 0.2.3
time: 2022/11/08 10:00
author: Alexandru Cheltuitor
email: [email protected]
urgency: medium
stability: unstable
description:
- Ensure that appversion and user-agent are passed when making API calls.
---
version: 0.2.2
time: 2022/11/04 10:00
author: Alexandru Cheltuitor
email: [email protected]
urgency: medium
stability: unstable
description:
- Ensure that before establishing a new connection, the previous connection is disconnected,
if there is one.
---
version: 0.2.1
time: 2022/09/26 15:49
author: Josep Llaneras