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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633
|
version: 4.16.0
time: 2026/02/27 10:10
author: Pep Llaneras
email: josep.llaneras@proton.ch
urgency: low
stability: unstable
description:
- "feat: distinguish secure core servers"
---
version: 4.15.2
time: 2026/02/17 10:43
author: Elena Svilpe
email: elena.svilpe@proton.ch
urgency: low
stability: unstable
description:
- "fix: fix app version break clause"
---
version: 4.15.1
time: 2026/02/10 12:01
author: Elena Svilpe
email: elena.svilpe@proton.ch
urgency: low
stability: unstable
description:
- "chore: feature flag cleanup"
---
version: 4.15.0
time: 2025/12/30 14:00
author: Pep Llaneras
email: josep.llaneras@proton.ch
urgency: low
stability: unstable
description:
- "feat: Preprocess country/city features"
---
version: 4.14.3
time: 2025/12/12 13:45
author: Alexandru Cheltuitor
email: alexandru.cheltuitor@proton.ch
urgency: low
stability: unstable
description:
- "feat: add cities to country dataclass"
---
version: 4.14.2
time: 2025/12/09 09:43
author: Richard Paterson
email: richard.paterson@proton.ch
urgency: low
stability: unstable
description:
- "feat: Add composable filters to ServerList"
---
version: 4.14.1
time: 2025/12/03 13:34
author: Luke Titley
email: luke.titley@proton.ch
urgency: low
stability: unstable
description:
- "chore: Only allow v2 endpoint if params exist"
---
version: 4.14.0
time: 2025/11/17 16:18
author: Pep Llaneras
email: josep.llaneras@proton.ch
urgency: low
stability: unstable
description:
- "feat: merge network manager backend"
---
version: 4.13.2
time: 2025/11/04 10:27
author: Richard Paterson
email: richard.paterson@proton.ch
urgency: low
stability: unstable
description:
- "feat: Ensure server specification is case insensitive"
---
version: 4.13.1
time: 2025/10/29 16:57
author: Pep Llaneras
email: josep.llaneras@proton.ch
urgency: low
stability: unstable
description:
- "fix: Fix fedora 43 upgrade process"
---
version: 4.13.0
time: 2025/10/27 10:13
author: Luke Titley
email: luke.titley@proton.ch
urgency: low
stability: unstable
description:
- "feat: Added 'supports_fido2 method to api'"
---
version: 4.12.2
time: 2025/10/23 13:08
author: Richard Paterson
email: richard.paterson@proton.ch
urgency: low
stability: unstable
description:
- "feat: Add test from pep440 to semver conversion"
---
version: 4.12.1
time: 2025/10/23 10:40
author: Pep Llaneras
email: josep.llaneras@proton.ch
urgency: low
stability: unstable
description:
- |-
chore: change versioning strategy to support the CLI
This package has taken over responsibility for the api versioning logic
(previously in the application). This necessitates bumping the version to match
what was previously sent (by the application).
---
version: 0.48.2
time: 2025/10/22 15:33
author: Luke Titley
email: luke.titley@proton.ch
urgency: low
stability: unstable
description:
- "fix: [VPNLINUX-1415] Support for Fedora 43, fix for debian 11/12"
---
version: 0.48.1
time: 2025/10/15 16:21
author: Luke Titley
email: luke.titley@proton.ch
urgency: low
stability: unstable
description:
- "fix: [VPNLINUX-1415] Support for Fedora 43"
---
version: 0.48.0
time: 2025/09/24 14:05
author: Pep Llaneras
email: josep.llaneras@proton.ch
urgency: low
stability: unstable
description:
- "feat: handle U2F key PIN"
---
version: 0.47.1
time: 2025/09/24 13:00
author: Alexandru Cheltuitor
email: alexandru.cheltuitor@proton.ch
urgency: low
stability: unstable
description:
- "fix: update spec file."
---
version: 0.47.0
time: 2025/09/24 10:54
author: Alexandru Cheltuitor
email: alexandru.cheltuitor@proton.ch
urgency: low
stability: unstable
description:
- "fix: remove proton-vpn-lib dependency"
---
version: 0.46.3
time: 2025/09/24 07:55
author: Luke Titley
email: luke.titley@proton.ch
urgency: low
stability: unstable
description:
- "fix: Dont error twice with 2fa hard-jailing"
---
version: 0.46.2
time: 2025/09/17 16:14
author: Luke Titley
email: luke.titley@proton.ch
urgency: low
stability: unstable
description:
- "feat: Support 2fa hard-jailing"
---
version: 0.46.1
time: 2025/09/15 15:00
author: Alexandru Cheltuitor
email: alexandru.cheltuitor@proton.ch
urgency: low
stability: unstable
description:
- "fix: ensure dependency breaks b0 versions of the app"
---
version: 0.46.0
time: 2025/09/11 14:48
author: Pep Llaneras
email: josep.llaneras@proton.ch
urgency: low
stability: unstable
description:
- "feat: add security key support for 2FA"
---
version: 0.45.14
time: 2025/09/09 09:24
author: Richard Paterson
email: richard.paterson@proton.ch
urgency: low
stability: unstable
description:
- "feat: Add fastest server in city"
---
version: 0.45.13
time: 2025/09/03 16:35
author: Luke Titley
email: luke.titley@proton.ch
urgency: low
stability: unstable
description:
- "fix: Replace .config with .get_config"
---
version: 0.45.12
time: 2025/08/29 12:02
author: Richard Paterson
email: richard.paterson@proton.ch
urgency: low
stability: unstable
description:
- "feat: add synchronous path to updating client config, feature flags and certificate caches for CLI"
---
version: 0.45.11
time: 2025/08/14 12:39
author: Alexandru Cheltuitor
email: alexandru.cheltuitor@proton.ch
urgency: low
stability: unstable
description:
- "fix: ensure default data is loaded if dict value is invalid"
---
version: 0.45.10
time: 2025/08/14 10:51
author: Richard Paterson
email: richard.paterson@proton.ch
urgency: low
stability: unstable
description:
- "feat: add synchronous path to updating serverlist cache for CLI"
---
version: 0.45.9
time: 2025/08/13 11:15
author: Alexandru Cheltuitor
email: alexandru.cheltuitor@proton.ch
urgency: low
stability: unstable
description:
- "fix: add properties for easier access"
---
version: 0.45.8
time: 2025/08/08 12:20
author: Alexandru Cheltuitor
email: alexandru.cheltuitor@proton.ch
urgency: low
stability: unstable
description:
- "fix: fix logic when loading st persisted settings"
---
version: 0.45.7
time: 2025/08/07 15:13
author: Alexandru Cheltuitor
email: alexandru.cheltuitor@proton.ch
urgency: low
stability: unstable
description:
- "fix: persist st settings per mode"
---
version: 0.45.6
time: 2025/08/06 11:51
author: Alexandru Cheltuitor
email: alexandru.cheltuitor@proton.ch
urgency: low
stability: unstable
description:
- "Update version breaks clause"
---
version: 0.45.5
time: 2025/08/05 10:04
author: Alexandru Cheltuitor
email: alexandru.cheltuitor@proton.ch
urgency: low
stability: unstable
description:
- "fix: fix pf not being properly written to file"
---
version: 0.45.4
time: 2025/07/31 09:44
author: Pep Llaneras
email: josep.llaneras@proton.ch
urgency: low
stability: unstable
description:
- "fix: treat split tunneling errors as non-fatal"
---
version: 0.45.3
time: 2025/07/09 15:42
author: Luke Titley
email: luke.titley@proton.ch
urgency: low
stability: unstable
description:
- "fix: Always return a default set of FeatureFlags if none have been got yet"
---
version: 0.45.2
time: 2025/07/08 10:03
author: Pep Llaneras
email: josep.llaneras@proton.ch
urgency: low
stability: unstable
description:
- "fix: enable split tunneling if FF is enabled and tier is not free"
---
version: 0.45.1
time: 2025/07/07 10:11
author: Pep Llaneras
email: josep.llaneras@proton.ch
urgency: low
stability: unstable
description:
- "fix: do not nullify connection features"
---
version: 0.45.0
time: 2025/07/03 15:00
author: Josep Llaneras
email: josep.llaneras@proton.ch
urgency: low
stability: unstable
description:
- "feat: add split tunneling feature"
---
version: 0.44.5
time: 2025/06/16 15:54
author: Alexandru Cheltuitor
email: alexandru.cheltuitor@proton.ch
urgency: low
stability: unstable
description:
- "fix: correct bug in settings generation from dict"
---
version: 0.44.4
time: 2025/06/16 09:22
author: Luke Titley
email: luke.titley@proton.ch
urgency: low
stability: unstable
description:
- "fix: location Lat and Long can be None (for now)"
---
version: 0.44.3
time: 2025/06/13 11:00
author: Alexandru Cheltuitor
email: alexandru.cheltuitor@proton.ch
urgency: low
stability: unstable
description:
- Update settings data structure.
---
version: 0.44.2
time: 2025/06/12 13:00
author: Alexandru Cheltuitor
email: alexandru.cheltuitor@proton.ch
urgency: low
stability: unstable
description:
- Fix semgrep warning.
---
version: 0.44.1
time: 2025/06/12 12:38
author: Luke Titley
email: luke.titley@proton.ch
urgency: low
stability: unstable
description:
- "fix: Fixes to issues reported by qa"
---
version: 0.44.0
time: 2025/06/12 10:00
author: Alexandru Cheltuitor
email: alexandru.cheltuitor@proton.ch
urgency: low
stability: unstable
description:
- Expose split tunneling API.
---
version: 0.43.0
time: 2025/06/11 16:17
author: Luke Titley
email: luke.titley@proton.ch
urgency: low
stability: unstable
description:
- Integration of v2/status endpoint
---
version: 0.42.5
time: 2025/04/30 14:16
author: Luke Titley
email: luke.titley@proton.ch
urgency: low
stability: unstable
description:
- Filter out email addresses and gpg id
---
version: 0.42.4
time: 2025/04/04 13:00
author: Alexandru Cheltuitor
email: alexandru.cheltuitor@proton.ch
urgency: low
stability: unstable
description:
- Swallow and re-schedule server refresh when we receive HTTP code 429.
---
version: 0.42.3
time: 2025/02/24 12:00
author: Alexandru Cheltuitor
email: alexandru.cheltuitor@proton.ch
urgency: low
stability: unstable
description:
- Expose method to get DNS IPs based on provided IP version.
---
version: 0.42.2
time: 2025/02/20 10:41
author: Pep Llaneras
email: josep.llaneras@proton.ch
urgency: low
stability: unstable
description:
- Always load feature flag cache/defaults
---
version: 0.42.1
time: 2025/02/17 14:50
author: Luke Titley
email: luke.titley@proton.ch
urgency: low
stability: unstable
description:
- Add a breaks/conflicts clause for python3-proton-vpn-network-manager < 0.12.10
---
version: 0.42.0
time: 2025/02/14 16:17
author: Luke Titley
email: luke.titley@proton.ch
urgency: low
stability: unstable
description:
- Fix Certificate Expired error when requesting certificate in pem format.
---
version: 0.41.5
time: 2025/02/07 14:46
author: Luke Titley
email: luke.titley@proton.ch
urgency: low
stability: unstable
description:
- Switch DisplayPortForwarding env var to Feature Flag
---
version: 0.41.4
time: 2025/02/06 11:35
author: Luke Titley
email: luke.titley@proton.ch
urgency: low
stability: unstable
description:
- Added local agent to OpenVPN, minor bug fix
---
version: 0.41.3
time: 2025/02/05 09:50
author: Luke Titley
email: luke.titley@proton.ch
urgency: low
stability: unstable
description:
- Added local agent to OpenVPN
---
version: 0.41.2
time: 2025/01/29 13:00
author: Alexandru Cheltuitor
email: alexandru.cheltuitor@proton.ch
urgency: low
stability: unstable
description:
- Manage file containing forwarded port.
---
version: 0.41.0
time: 2025/01/27 20:11
author: Luke Titley
email: luke.titley@proton.ch
urgency: low
stability: unstable
description:
- Encrypt openvpn certificate private key
---
version: 0.40.2
time: 2025/01/23 15:13
author: Josep Llaneras
email: josep.llaneras@proton.ch
urgency: low
stability: unstable
description:
- Notify connecting/disconnecting state early
---
version: 0.40.1
time: 2025/01/21 17:54
author: Josep Llaneras
email: josep.llaneras@proton.ch
urgency: low
stability: unstable
description:
- Notify subscribers when state context changes
---
version: 0.39.2
time: 2025/01/17 16:20
author: Luke Titley
email: luke.titley@proton.ch
urgency: low
stability: unstable
description:
- Fix sentry event username masking
---
version: 0.39.1
time: 2024/12/31 15:00
author: Alexandru Cheltuitor
email: alexandru.cheltuitor@proton.ch
urgency: low
stability: unstable
description:
- Cleanup old feature flags.
---
version: 0.39.0
time: 2024/12/17 13:00
author: Alexandru Cheltuitor
email: alexandru.cheltuitor@proton.ch
urgency: low
stability: unstable
description:
- Update event context so that it passes a forwarded port.
---
version: 0.38.6
time: 2024/12/16 10:00
author: Alexandru Cheltuitor
email: alexandru.cheltuitor@proton.ch
urgency: low
stability: unstable
description:
- Ensure default settings use feature flags even after login the next time they are fetched.
---
version: 0.38.5
time: 2024/12/11 16:00
author: Alexandru Cheltuitor
email: alexandru.cheltuitor@proton.ch
urgency: low
stability: unstable
description:
- Switch default protocol to WireGuard if feature flag is present.
---
version: 0.38.4
time: 2024/12/09 12:00
author: Alexandru Cheltuitor
email: alexandru.cheltuitor@proton.ch
urgency: low
stability: unstable
description:
- Ensure no crash occurs if cache files are non-decodable.
- Set default expiration time for features flags to expired, so that they're fetched from the API and cached as soon as possible.
---
version: 0.38.2
time: 2024/11/26 11:56
author: Josep Llaneras
email: josep.llaneras@proton.ch
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: alexandru.cheltuitor@proton.ch
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: alexandru.cheltuitor@proton.ch
urgency: low
stability: unstable
description:
- Drop Ubuntu 20.04 support.
---
version: 0.37.2
time: 2024/11/14 16:33
author: Luke Titley
email: luke.titley@proton.ch
urgency: low
stability: unstable
description:
- Added semgrep scanning to CI.
---
version: 0.37.1
time: 2024/11/08 16:00
author: Alexandru Cheltuitor
email: alexandru.cheltuitor@proton.ch
urgency: low
stability: unstable
description:
- Refactor custom DNS.
---
version: 0.37.0
time: 2024/11/05 12:00
author: Alexandru Cheltuitor
email: alexandru.cheltuitor@proton.ch
urgency: low
stability: unstable
description:
- Introduce custom DNS.
---
version: 0.36.6
time: 2024/10/30 14:50
author: Luke Titley
email: luke.titley@proton.ch
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: josep.llaneras@proton.ch
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: luke.titley@proton.ch
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: luke.titley@proton.ch
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: josep.llaneras@proton.ch
urgency: low
stability: unstable
description:
- Fix certificate expired regression
---
version: 0.36.1
time: 2024/10/04 10:00
author: Luke Titley
email: luke.titley@proton.ch
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: alexandru.cheltuitor@proton.ch
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: luke.titley@proton.ch
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: alexandru.cheltuitor@proton.ch
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: josep.llaneras@proton.ch
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: luke.titley@proton.ch
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: luke.titley@proton.ch
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: alexandru.cheltuitor@proton.ch
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: josep.llaneras@proton.ch
urgency: medium
stability: unstable
description:
- Fix refregresion (logout user on 401 API error).
---
version: 0.35.0
time: 2024/09/13 17:00
author: Alexandru Cheltuitor
email: alexandru.cheltuitor@proton.ch
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: josep.llaneras@proton.ch
urgency: medium
stability: unstable
description:
- Import refreshers from app.
---
version: 0.33.12
time: 2024/09/06 11:00
author: Alexandru Cheltuitor
email: alexandru.cheltuitor@proton.ch
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: alexandru.cheltuitor@proton.ch
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: alexandru.cheltuitor@proton.ch
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: alexandru.cheltuitor@proton.ch
urgency: medium
stability: unstable
description:
- Pass IPv6 value.
---
version: 0.33.8
time: 2024/08/28 12:00
author: Luke Titley
email: luke.titley@proton.ch
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: luke.titley@proton.ch
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: luke.titley@proton.ch
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: luke.titley@proton.ch
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: luke.titley@proton.ch
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: josep.llaneras@proton.ch
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: luke.titley@proton.ch
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: josep.llaneras@proton.ch
urgency: medium
stability: unstable
description:
- Fix crash after logout
---
version: 0.33.0
time: 2024/08/20 16:00
author: Josep Llaneras
email: josep.llaneras@proton.ch
urgency: medium
stability: unstable
description:
- Get rid of VPNConnectorWrapper.
---
version: 0.32.2
time: 2024/08/20 12:00
author: Josep Llaneras
email: josep.llaneras@proton.ch
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: josep.llaneras@proton.ch
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: josep.llaneras@proton.ch
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: luke.titley@proton.ch
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: alexandru.cheltuitor@proton.ch
urgency: medium
stability: unstable
description:
- Handle ExpiredCertificate events.
---
version: 0.29.4
time: 2024/07/17 15:00
author: Alexandru Cheltuitor
email: alexandru.cheltuitor@proton.ch
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: josep.llaneras@proton.ch
urgency: medium
stability: unstable
description:
- Update credentials in the background
---
version: 0.29.2
time: 2024/07/12 15:00
author: Josep Llaneras
email: josep.llaneras@proton.ch
urgency: medium
stability: unstable
description:
- Fix crash initializing VPN connector.
---
version: 0.29.1
time: 2024/07/12 15:00
author: Josep Llaneras
email: josep.llaneras@proton.ch
urgency: medium
stability: unstable
description:
- Update VPN credentials when an active VPN connection is found at startup.
---
version: 0.29.0
time: 2024/07/11 15:00
author: Josep Llaneras
email: josep.llaneras@proton.ch
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: alexandru.cheltuitor@proton.ch
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: alexandru.cheltuitor@proton.ch
urgency: medium
stability: unstable
description:
- Implement and expose feature flags.
---
version: 0.27.3
time: 2024/07/09 15:34
author: Luke Titley
email: luke.titley@proton.ch
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: josep.llaneras@proton.ch
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: luke.titley@proton.ch
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: alexandru.cheltuitor@proton.ch
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: luke.titley@proton.ch
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: luke.titley@proton.ch
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: josep.llaneras@proton.ch
urgency: medium
stability: unstable
description:
- Fix sentry error sanitization crash.
---
version: 0.26.1
time: 2024/06/04 13:03
author: Josep Llaneras
email: josep.llaneras@proton.ch
urgency: medium
stability: unstable
description:
- Fix certificate duration regression.
---
version: 0.26.0
time: 2024/05/30 09:37
author: Josep Llaneras
email: josep.llaneras@proton.ch
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: josep.llaneras@proton.ch
urgency: medium
stability: unstable
description:
- Increase certificate duration.
---
version: 0.25.0
time: 2024/05/23 10:00
author: Luke Titley
email: luke.titley@proton.ch
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: alexandru.cheltuitor@proton.ch
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: luke.titley@proton.ch
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: luke.titley@proton.ch
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: alexandru.cheltuitor@proton.ch
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: josep.llaneras@proton.ch
urgency: medium
stability: unstable
description:
- Fix error saving cache file when parent directory does not exist.
---
version: 0.24.0
time: 2024/04/30 14:00
author: Luke Titley
email: luke.titley@proton.ch
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: luke.titley@proton.ch
urgency: medium
stability: unstable
description:
- Added missing pip dependencies.
---
version: 0.23.0
time: 2024/04/22 14:00
author: Luke Titley
email: luke.titley@proton.ch
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: luke.titley@proton.ch
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: alexandru.cheltuitor@proton.ch
urgency: medium
stability: unstable
description:
- Provide method to update certificate.
---
version: 0.22.3
time: 2024/04/10 09:07
author: Luke Titley
email: luke.titley@proton.ch
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: luke.titley@proton.ch
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: luke.titley@proton.ch
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: luke.titley@proton.ch
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: alexandru.cheltuitor@proton.ch
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: alexandru.cheltuitor@proton.ch
urgency: medium
stability: unstable
description:
- Add WireGuard ports.
---
version: 0.21.0
time: 2024/02/16 09:07
author: Josep Llaneras
email: josep.llaneras@proton.ch
urgency: medium
stability: unstable
description:
- Apply kill switch setting immediately.
---
version: 0.20.4
time: 2024/02/14 14:57
author: Josep Llaneras
email: josep.llaneras@proton.ch
urgency: medium
stability: unstable
description:
- Initialize VPNConnector with settings.
---
version: 0.20.3
time: 2023/12/13 11:33
author: Josep Llaneras
email: josep.llaneras@proton.ch
urgency: medium
stability: unstable
description:
- Make VPN connection API async.
---
version: 0.20.2
time: 2023/11/08 08:51
author: Josep Llaneras
email: josep.llaneras@proton.ch
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: alexandru.cheltuitor@proton.ch
urgency: medium
stability: unstable
description:
- Update dependencies.
---
version: 0.20.0
time: 2023/09/15 10:00
author: Alexandru Cheltuitor
email: alexandru.cheltuitor@proton.ch
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: alexandru.cheltuitor@proton.ch
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: alexandru.cheltuitor@proton.ch
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: alexandru.cheltuitor@proton.ch
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: alexandru.cheltuitor@proton.ch
urgency: medium
stability: unstable
description:
- Add protocol entry to settings.
---
version: 0.15.0
time: 2023/07/03 15:00
author: Alexandru Cheltuitor
email: alexandru.cheltuitor@proton.ch
urgency: medium
stability: unstable
description:
- Implement save method for settings.
---
version: 0.14.0
time: 2023/06/20 16:00
author: Alexandru Cheltuitor
email: alexandru.cheltuitor@proton.ch
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: josep.llaneras@proton.ch
urgency: medium
stability: unstable
description:
- Expose server loads update.
---
version: 0.12.1
time: 2023/06/08 09:57
author: Josep Llaneras
email: josep.llaneras@proton.ch
urgency: medium
stability: unstable
description:
- Fix settings defaults.
---
version: 0.12.0
time: 2023/06/06 15:27
author: Josep Llaneras
email: josep.llaneras@proton.ch
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: alexandru.cheltuitor@proton.ch
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: alexandru.cheltuitor@proton.ch
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: alexandru.cheltuitor@proton.ch
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: josep.llaneras@proton.ch
urgency: medium
stability: unstable
description:
- Adapt to VPN connection refactoring.
---
version: 0.10.0
time: 2023/02/28 09:00
author: Alexandru Cheltuitor
email: alexandru.cheltuitor@proton.ch
urgency: medium
stability: unstable
description:
- Implement new appversion format.
---
version: 0.9.0
time: 2023/02/14 11:00
author: Alexandru Cheltuitor
email: alexandru.cheltuitor@proton.ch
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: alexandru.cheltuitor@proton.ch
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: josep.llaneras@proton.ch
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: alexandru.cheltuitor@proton.ch
urgency: medium
stability: unstable
description:
- 'Feature: Report a bug.'
---
version: 0.7.0
time: 2023/01/13 17:38
author: Josep Llaneras
email: josep.llaneras@proton.ch
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: josep.llaneras@proton.ch
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: josep.llaneras@proton.ch
urgency: medium
stability: unstable
description:
- Persist VPN server to disk.
---
version: 0.4.0
time: 2022/11/29 16:00
author: Alexandru Cheltuitor
email: alexandru.cheltuitor@proton.ch
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: josep.llaneras@proton.ch
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: alexandru.cheltuitor@proton.ch
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: josep.llaneras@proton.ch
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: josep.llaneras@proton.ch
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: alexandru.cheltuitor@proton.ch
urgency: medium
stability: unstable
description:
- Add Proton VPN logging library.
---
version: 0.2.4
time: 2022/11/09 16:20
author: Josep Llaneras
email: josep.llaneras@proton.ch
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: alexandru.cheltuitor@proton.ch
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: alexandru.cheltuitor@proton.ch
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
email: josep.llaneras@proton.ch
urgency: medium
stability: unstable
description:
- Delete cache at logout.
---
version: 0.2.0
time: 2022/09/22 09:05
author: Josep Llaneras
email: josep.llaneras@proton.ch
urgency: medium
stability: unstable
description:
- Add method to obtain the user's tier.
---
version: 0.1.0
time: 2022/09/20 09:30
author: Alexandru Cheltuitor
email: alexandru.cheltuitor@proton.ch
urgency: medium
stability: UNRELEASED
description:
- Add logging.
---
version: 0.0.4
time: 2022/09/19 08:30
author: Josep Llaneras
email: josep.llaneras@proton.ch
urgency: medium
stability: UNRELEASED
description:
- Cache VPN connection.
---
version: 0.0.3
time: 2022/09/08 07:30
author: Josep Llaneras
email: josep.llaneras@proton.ch
urgency: medium
stability: UNRELEASED
description:
- VPN servers retrieval.
---
version: 0.0.2
time: 2022/05/25 15:38
author: Proton Technologies AG
email: opensource@proton.me
urgency: medium
stability: UNRELEASED
description:
- Fixing and simplifying 2FA logic.
---
version: 0.0.1
time: 2022/03/14 15:38
author: Proton Technologies AG
email: opensource@proton.me
urgency: medium
stability: UNRELEASED
description:
- First release.
|