NEWS 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192
  1. etcd v3.2.4 (2017-07-19)
  2. - do not block on active client stream when stopping server
  3. - fix gRPC proxy Snapshot RPC error handling
  4. etcd v3.2.3 (2017-07-14)
  5. - let clients establish unlimited streams
  6. - add docker tags for minor versions
  7. e.g. docker pull quay.io/coreos/etcd:v3.2 to fetch latest v3.2 versions
  8. etcd v3.1.10 (2017-07-14)
  9. - use Go 1.8.3 to fix panic on net/http.CloseNotify
  10. - add docker tags for minor versions
  11. e.g. docker pull quay.io/coreos/etcd:v3.1 to fetch latest v3.1 versions
  12. etcd v3.2.2 (2017-07-07)
  13. - rate-limit lease revoke on expiration
  14. - extend leases on promote to avoid queueing effect on lease expiration
  15. - use user-provided listen address to connect to gRPC gateway
  16. - net.Listener rewrites IPv4 0.0.0.0 to IPv6 [::], breaking IPv6 disabled hosts
  17. - only v3.2.0, v3.2.1 are affected
  18. - accept connection with matched IP SAN but no DNS match
  19. - don't check DNS entries in certs if there's a matching IP
  20. - fix 'tools/benchmark' watch command
  21. etcd v3.2.1 (2017-06-23)
  22. - fix backend database in-memory index corruption issue on restore (only 3.2.0 is affected)
  23. - fix gRPC gateway Txn marshaling issue
  24. - fix backend database size debugging metrics
  25. etcd v3.2.0 (2017-06-09)
  26. - improved backend read concurrency
  27. - embedded etcd
  28. - Etcd.Peers field is now []*peerListener
  29. - RPCs
  30. - add Election, Lock service
  31. - native client etcdserver/api/v3client
  32. - client "embedded" in the server
  33. - v3 client
  34. - LeaseTimeToLive returns TTL=-1 resp on lease not found
  35. - clientv3.NewFromConfigFile is moved to clientv3/yaml.NewConfig
  36. - STM prefetching
  37. - add namespace feature
  38. - concurrency package's elections updated to match RPC interfaces
  39. - let client dial endpoints not in the balancer
  40. - add ErrOldCluster with server version checking
  41. - translate WithPrefix() into WithFromKey() for empty key
  42. - v3 etcdctl
  43. - add check perf command
  44. - add --from-key flag to role grant-permission command
  45. - lock command takes an optional command to execute
  46. - etcd flags
  47. - add --enable-v2 flag to configure v2 backend (enabled by default)
  48. - add --auth-token flag
  49. - gRPC proxy
  50. - proxy endpoint discovery
  51. - namespaces
  52. - coalesce lease requests
  53. - gateway
  54. - support DNS SRV priority
  55. - auth
  56. - support Watch API
  57. - JWT tokens
  58. - logging, monitoring
  59. - server warns large snapshot operations
  60. - add 'etcd_debugging_server_lease_expired_total' metrics
  61. - security
  62. - deny incoming peer certs with wrong IP SAN
  63. - resolve TLS DNSNames when SAN checking
  64. - reload TLS certificates on every client connection
  65. - release
  66. - annotate acbuild with supports-systemd-notify
  67. - add nsswitch.conf to Docker container image
  68. - add ppc64le, arm64(experimental) builds
  69. - Go 1.8.3
  70. - gRPC v1.2.1
  71. - grpc-gateway to v1.2.0
  72. - v2
  73. - allow snapshot over 512MB
  74. etcd v3.1.9 (2017-06-09)
  75. - allow v2 snapshot over 512MB
  76. etcd v3.1.8 (2017-05-19)
  77. etcd v3.1.7 (2017-04-28)
  78. etcd v3.1.6 (2017-04-19)
  79. - remove auth check in Status API
  80. - fill in Auth API response header
  81. etcd v3.1.5 (2017-03-27)
  82. - add '/etc/nsswitch.conf' file to alpine-based Docker image
  83. - fix raft memory leak issue
  84. - fix Windows file path issues
  85. etcd v3.1.4 (2017-03-22)
  86. etcd v3.1.3 (2017-03-10)
  87. - use machine default host when advertise URLs are default
  88. values(localhost:2379,2380) AND if listen URL is 0.0.0.0
  89. - fix 'etcd gateway' schema handling in DNS discovery
  90. - fix sd_notify behaviors in gateway, grpc-proxy
  91. etcd v3.1.2 (2017-02-24)
  92. - use IPv4 default host, by default (when IPv4 and IPv6 are available)
  93. - fix 'etcd gateway' with multiple endpoints
  94. etcd v3.1.1 (2017-02-17)
  95. etcd v2.3.8 (2017-02-17)
  96. etcd v3.1.0 (2017-01-20)
  97. - faster linearizable reads (implements Raft read-index)
  98. - automatic leadership transfer when leader steps down
  99. - etcd uses default route IP if advertise URL is not given
  100. - cluster rejects removing members if quorum will be lost
  101. - SRV records (e.g., infra1.example.com) must match the discovery domain
  102. (i.e., example.com) if no custom certificate authority is given
  103. - TLSConfig ServerName is ignored with user-provided certificates
  104. for backwards compatibility; to be deprecated in 3.2
  105. - discovery now has upper limit for waiting on retries
  106. - etcd flags
  107. - --strict-reconfig-check flag is set by default
  108. - add --log-output flag
  109. - add --metrics flag
  110. - v3 authentication API is now stable
  111. - v3 client
  112. - add SetEndpoints method; update endpoints at runtime
  113. - add Sync method; auto-update endpoints at runtime
  114. - add Lease TimeToLive API; fetch lease information
  115. - replace Config.Logger field with global logger
  116. - Get API responses are sorted in ascending order by default
  117. - v3 etcdctl
  118. - add lease timetolive command
  119. - add --print-value-only flag to get command
  120. - add --dest-prefix flag to make-mirror command
  121. - command get responses are sorted in ascending order by default
  122. - recipes now conform to sessions defined in clientv3/concurrency
  123. - ACI has symlinks to /usr/local/bin/etcd*
  124. - warn on binding listeners through domain names; to be deprecated in 3.2
  125. - experimental gRPC proxy feature
  126. etcd v3.0.16 (2017-01-13)
  127. etcd v3.0.15 (2016-11-11)
  128. - fix cancel watch request with wrong range end
  129. etcd v3.0.14 (2016-11-04)
  130. - v3 etcdctl migrate command now supports --no-ttl flag to discard keys on transform
  131. etcd v3.0.13 (2016-10-24)
  132. etcd v3.0.12 (2016-10-07)
  133. etcd v3.0.11 (2016-10-07)
  134. - server returns previous key-value (optional)
  135. - clientv3 WithPrevKV option
  136. - v3 etcdctl put,watch,del --prev-kv flag
  137. etcd v3.0.10 (2016-09-23)
  138. etcd v3.0.9 (2016-09-15)
  139. - warn on domain names on listen URLs (v3.2 will reject domain names)
  140. etcd v3.0.8 (2016-09-09)
  141. - allow only IP addresses in listen URLs (domain names are rejected)
  142. etcd v3.0.7 (2016-08-31)
  143. - SRV records only allow A records (RFC 2052)
  144. etcd v3.0.6 (2016-08-19)
  145. etcd v3.0.5 (2016-08-19)
  146. - SRV records (e.g., infra1.example.com) must match the discovery domain
  147. (i.e., example.com) if no custom certificate authority is given
  148. etcd v3.0.4 (2016-07-27)
  149. - v2 auth can now use common name from TLS certificate when --client-cert-auth is enabled
  150. - v2 etcdctl ls command now supports --output=json
  151. - Add /var/lib/etcd directory to etcd official Docker image
  152. etcd v3.0.3 (2016-07-15)
  153. - Revert Dockerfile to use CMD, instead of ENTRYPOINT, to support etcdctl run
  154. - Docker commands for v3.0.2 won't work without specifying executable binary paths
  155. - v3 etcdctl default endpoints are now 127.0.0.1:2379
  156. etcd v3.0.2 (2016-07-08)
  157. - Dockerfile uses ENTRYPOINT, instead of CMD, to run etcd without binary path specified
  158. etcd v3.0.1 (2016-07-01)
  159. etcd v3.0.0 (2016-06-30)