ChangeLog 4.7 KB

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