ChangeLog 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. - NCD: add Foreach clause
  2. - NCD: implement _caller in spawn(), add spawn::join()
  3. - NCD: add explode()
  4. - NCD: add hard_reboot() and hard_poweroff()
  5. - NCD: add file_stat() and file_lstat()
  6. - NCD: fix regex_replace() semantics. It was very broken because it did a complete replacement pass for every regex on the list, so it would match parts that have already been replaced, producing unexpected results.
  7. - NCD: small performance improvement
  8. Version 1.999.121:
  9. - NCD: improve error handling semantics; see http://code.google.com/p/badvpn/source/detail?r=1376
  10. - NCD: fix assertion failure in sys.evdev() if a device error occurs (e.g. device unplugged) while an event is being processed. Similar fix in some other modules, but these may not be reproducable.
  11. - NCD: some more performance improvements
  12. - NCD: some performance improvements (~30% faster interpretation of cpu-bound code)
  13. - NCD: implemented If..elif..else clause.
  14. - NCD: net.backend.wpa_supplicant: fix to work with wpa_supplicant>=1.0
  15. Version 1.999.115:
  16. - NCD: Many improvements; new statements, including call(), alias(), foreach(), choose().
  17. Version 1.999.113:
  18. - NCD: when starting child processes, make sure that file descriptors for standard
  19. streams are always open in the child, by opening /dev/null if they are not.
  20. - Improve build system to allow selective building of components.
  21. By default, everything is built, unless -DBUILD_NOTHING_BY_DEFAULT=1 is given.
  22. Individual components can then be enabled or disabled using -DBUILD_COMPONENT=1
  23. and -DBUILD_COMPONENT=0.
  24. - When starting any BadVPN program, make sure that file descriptors for standard
  25. streams are always open in the child, by opening /dev/null if they are not.
  26. - NCD: net.backend.wpa_supplicant(): add 'bssid' and 'ssid' variables to allow
  27. determining what wireless network wpa_supplicant connected to.
  28. - NCD: net.backend.wpa_supplicant(): do not require the user to start wpa_supplicant via
  29. stdbuf, but do it automatically.
  30. Version 1.999.111:
  31. - Improved protocol such that peers can use SSL when comminicating via the server. This
  32. improves security, as compromising the server will not allow the attacker to see secret
  33. data shared by peers (in particular, encryption keys and OTP seeds when in UDP mode).
  34. Compatibility is preserved if an only if the following conditions are met:
  35. - The server is using the latest version.
  36. - If the network is using SSL, all clients using the new version are using the
  37. "--allow-peer-talk-without-ssl" command line option.
  38. Be aware, however, that using the "--allow-peer-talk-without-ssl" option negates the
  39. security benefits of the new SSL support - not only between pairs of peers where one
  40. peer is using the old version, but also between pairs where both peers are capable
  41. of SSL. This is because the server can re-initialize the pair, telling them not to use
  42. SSL.
  43. Version 1.999.107:
  44. - Added Windows IOCP support, removing the limitation on ~64 connections. This is important
  45. for tun2socks, which may have to handle several hundred connections.
  46. Version 1.999.105.2:
  47. - Fixed an assertion failure in tun2socks related to sending data to SOCKS.
  48. Version 1.999.101.3:
  49. - Fixed UDP transport on Windows 7 which didn't work (was only tested on XP).
  50. Version 1.999.101:
  51. - Fixed a protocol issue present in versions <=1.999.100.3. Compatibility is preserved in
  52. case of a new server and old clients, but it is not possible to connect to an old server
  53. with a new client.