NEWS 6.7 KB

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