ChangeLog 3.6 KB

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