ChangeLog 4.0 KB

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