CHANGELOG 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. v0.4.3
  2. * Avoid panic() on truncated or unexpected log data (#834, #833)
  3. * Fix missing stats field (#807)
  4. * Lengthen default peer removal delay to 30mins (#835)
  5. * Reduce logging on heartbeat timeouts (#836)
  6. v0.4.2
  7. * Improvements to the clustering documents
  8. * Set content-type properly on errors (#469)
  9. * Standbys re-join if they should be part of the cluster (#810, #815, #818)
  10. v0.4.1
  11. * Re-introduce DELETE on the machines endpoint
  12. * Document the machines endpoint
  13. v0.4.0
  14. * Introduced standby mode
  15. * Added HEAD requests
  16. * Set logs NOCOW flag when BTRFS is detected to avoid fsync overhead
  17. * Fix all known data races, and pass Go race detector (TODO: re-run race detector)
  18. * Fixed timeouts when using HTTPS
  19. * Improved snapshot stability
  20. * Migration of machine names to new IPs
  21. * Updated peer discovery ordering
  22. v0.3.0
  23. * Add Compare-and-Delete support.
  24. * Added prevNode to response objects.
  25. * Added Discovery API.
  26. * Add tracing and debug endpoints (Documentation/debugging.md).
  27. * Improved logging of cluster events.
  28. * go get github.com/coreos/etcd works.
  29. * info file is no longer used.
  30. * Snapshots are on by default.
  31. * Statistics APIs documented.
  32. v0.2.0
  33. * Support directory creation and removal.
  34. * Add Compare-and-Swap (CAS) support.
  35. * Support recursive GETs.
  36. * Support fully consistent GETs.
  37. * Allow clients to watch specific paths.
  38. * Allow clients to watch for key expiration.
  39. * Unique key generation.
  40. * Support hidden paths.
  41. * Refactor low-level data store.
  42. * Modularize store, server and API code.
  43. * Integrate Gorilla Web Toolkit.
  44. * Add tiered configuration (command line args, env variables, config file).
  45. * Add peer protocol versioning.
  46. * Add rolling upgrade support for future versions.
  47. * Sync key expiration across cluster.
  48. * Significantly improve test coverage.
  49. * Improve migration testing.
  50. * Configurable snapshot count.
  51. * Reduce TCP connection count.
  52. * Fix TCP connection leak.
  53. * Bug Fixes: https://github.com/coreos/etcd/issues?milestone=1&state=closed
  54. Contributors:
  55. * Xiang Li (@xiangli-cmu)
  56. * Ben Johnson (@benbjohnson)
  57. * Brandon Philips (@philips)
  58. * Yifan (@yifan-gu)
  59. * Rob Szumski
  60. * Hongchao Deng (@fengjingchao)
  61. * Kelsey Hightower (@kelseyhightower)
  62. * Adrián (@adrianlzt)
  63. * Antonio Terreno (@aterreno)