ChangeLog 3.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. Changes in version 0.0.12 - 2021-12-31:
  2. - Fix the long standing distinguishers associated with agl's Elligator2
  3. implementation (Thanks to Loup Vaillant).
  4. - Replace the extra25519 import with an internal package.
  5. - Update the Azure TLS certificate digest (Thanks to Philipp Winter).
  6. - Make the -unsafeLogging command line switch work.
  7. - Bump the version of the utls fork, add the Chrome 83 fingerprint.
  8. Changes in version 0.0.11 - 2019-06-21:
  9. - Update my e-mail address.
  10. - Change the obfs4 behavior for handling handshake failure to be more
  11. uniform. Thanks to Sergey Frolov for assistance.
  12. - Bump the version of the utls fork.
  13. Changes in version 0.0.10 - 2019-04-12:
  14. - Disable behavior distinctive to crypto/tls when using utls.
  15. - Bump the version of the utls fork.
  16. Changes in version 0.0.9 - 2019-02-05:
  17. - Various meek_lite code cleanups and bug fixes.
  18. - Bug 29077: uTLS for ClientHello camouflage (meek_lite).
  19. - More fixes to HTTP Basic auth.
  20. - (meek_lite) Pin the certificate chain public keys for the default
  21. Tor Browser Azure bridge (meek_lite).
  22. Changes in version 0.0.8 - 2019-01-20:
  23. - Bug 24793: Send the correct authorization HTTP header for basic auth.
  24. - (meek_lite) Explicitly set Content-Length to zero when there is no data
  25. to send.
  26. - Added optional support for building as a Go 1.11 module. Patch by mvdan.
  27. - Change the canonical upstream repo location to gitlab.
  28. Changes in version 0.0.7 - 2016-11-15:
  29. - Support configuring the obfs4 IAT parameter as the sole
  30. ServerTransportOption on bridges, and correctly checkpoint the argument
  31. to the state file.
  32. - Correctly use the derived epoch hour when generating the server obfs4
  33. ntor handshake response to be more tollerant of clock skew.
  34. - Reuse the read buffer when consuming obfs4 frames over the network to
  35. reduce memory consumption. Patch by oxtoacart.
  36. Changes in version 0.0.6 - 2016-01-25:
  37. - Delay transport factory initialization till after logging has been
  38. initialized.
  39. - Add a meek client implementation (WARNING: Does not support using a
  40. helper to normalize TLS signatures). The brave people that want to use
  41. it can do so as the "meek_lite" transport, with identical bridge lines
  42. to the real meek-client.
  43. Changes in version 0.0.5 - 2015-04-15:
  44. - Go vet/fmt fixes, and misc. code cleanups. Patches by mvdan.
  45. - Changed the go.net import path to the new location (golang.org/x/net).
  46. - Added limited support for detecting if the parent process crashes.
  47. - Support for tor feature #15335 (stdin based termination notification).
  48. - Moved the leveled logging wrappers into common/log so they are usable
  49. in transport implementations.
  50. - Added a DEBUG log level.
  51. - Use a bundled SOCKS 5 server instead of goptlib's SocksListener.
  52. Changes in version 0.0.4 - 2015-02-17
  53. - Improve the runtime performance of the obfs4 handshake tests.
  54. - Changed the go.crypto import path to the new location (golang.org/x/crypto).
  55. - Added client only support for ScrambleSuit.
  56. Changes in version 0.0.3 - 2014-10-01
  57. - Change the obfs4 bridge line format to use a "cert" argument instead of the
  58. previous "node-id" and "public-key" arguments. The "cert" consists of the
  59. Base64 encoded concatenation of the node ID and public key, with the
  60. trailing padding removed. Old style separated bridge lines are still valid,
  61. but the newer representation is slightly more compact.
  62. Changes in version 0.0.2 - 2014-09-26
  63. - Write an example client bridge line suitable for use with the running obfs4
  64. server instance to "obfs4_bridgeline.txt" for the convenience of bridge
  65. operators.
  66. - Add a man page for obfs4proxy.
  67. Changes in version 0.0.1 - 2014-09-03
  68. - Initial release.