mirror of https://github.com/status-im/consul.git
Update CHANGELOG style
This commit is contained in:
parent
728ff28c1c
commit
c260f97d0c
35
CHANGELOG.md
35
CHANGELOG.md
|
@ -3,61 +3,44 @@
|
||||||
FEATURES:
|
FEATURES:
|
||||||
|
|
||||||
* Adding Web UI for Consul. This is enabled by providing the `-ui-dir` flag
|
* Adding Web UI for Consul. This is enabled by providing the `-ui-dir` flag
|
||||||
with the path to the web directory. The UI is visited at the standard HTTP
|
with the path to the web directory. The UI is visited at the standard HTTP
|
||||||
address (Defaults to http://127.0.0.1:8500/). There is a demo
|
address (Defaults to http://127.0.0.1:8500/). There is a demo
|
||||||
[available here](http://demo.consul.io).
|
[available here](http://demo.consul.io).
|
||||||
|
|
||||||
* Adding new read consistency modes. `?consistent` can be used for strongly
|
* Adding new read consistency modes. `?consistent` can be used for strongly
|
||||||
consistent reads without caveats. `?stale` can be used for stale reads to
|
consistent reads without caveats. `?stale` can be used for stale reads to
|
||||||
allow for higher throughput and read scalability. [GH-68]
|
allow for higher throughput and read scalability. [GH-68]
|
||||||
|
|
||||||
* /v1/health/service/ endpoint can take an optional `?passing` flag
|
* /v1/health/service/ endpoint can take an optional `?passing` flag
|
||||||
to filter to only nodes with passing results. [GH-57]
|
to filter to only nodes with passing results. [GH-57]
|
||||||
|
|
||||||
* The KV endpoint suports listing keys with the `?keys` query parameter,
|
* The KV endpoint suports listing keys with the `?keys` query parameter,
|
||||||
and limited up to a seperator using `?seperator=`.
|
and limited up to a seperator using `?seperator=`.
|
||||||
|
|
||||||
IMPROVEMENTS:
|
IMPROVEMENTS:
|
||||||
|
|
||||||
* Health check output goes into seperate `Output` field instead
|
* Health check output goes into seperate `Output` field instead
|
||||||
of overriding `Notes`. [GH-59]
|
of overriding `Notes`. [GH-59]
|
||||||
|
|
||||||
* Adding a minimum check interval to prevent checks with extremely
|
* Adding a minimum check interval to prevent checks with extremely
|
||||||
low intervals fork bombing. [GH-64]
|
low intervals fork bombing. [GH-64]
|
||||||
|
|
||||||
* Raft peer set cleared on leave. [GH-69]
|
* Raft peer set cleared on leave. [GH-69]
|
||||||
|
|
||||||
* Case insensitive parsing checks. [GH-78]
|
* Case insensitive parsing checks. [GH-78]
|
||||||
|
|
||||||
* Increase limit of DB size and Raft log on 64bit systems. [GH-81]
|
* Increase limit of DB size and Raft log on 64bit systems. [GH-81]
|
||||||
|
|
||||||
* Output of health checks limited to 4K. [GH-83]
|
* Output of health checks limited to 4K. [GH-83]
|
||||||
|
|
||||||
* More warnings if GOMAXPROCS == 1 [GH-87]
|
* More warnings if GOMAXPROCS == 1 [GH-87]
|
||||||
|
|
||||||
* Added runtime information to `consul info`
|
* Added runtime information to `consul info`
|
||||||
|
|
||||||
BUG FIXES:
|
BUG FIXES:
|
||||||
|
|
||||||
* Fixed 404 on /v1/agent/service/deregister and
|
* Fixed 404 on /v1/agent/service/deregister and
|
||||||
/v1/agent/check/deregister. [GH-95]
|
/v1/agent/check/deregister. [GH-95]
|
||||||
|
|
||||||
* Fixed JSON parsing for /v1/agent/check/register [GH-60]
|
* Fixed JSON parsing for /v1/agent/check/register [GH-60]
|
||||||
|
|
||||||
* DNS parser can handler period in a tag name. [GH-39]
|
* DNS parser can handler period in a tag name. [GH-39]
|
||||||
|
|
||||||
* "application/json" content-type is sent on HTTP requests. [GH-45]
|
* "application/json" content-type is sent on HTTP requests. [GH-45]
|
||||||
|
|
||||||
* Work around for LMDB delete issue. [GH-85]
|
* Work around for LMDB delete issue. [GH-85]
|
||||||
|
|
||||||
* Fixed tag gossip propogation for rapid restart. [GH-86]
|
* Fixed tag gossip propogation for rapid restart. [GH-86]
|
||||||
|
|
||||||
MISC:
|
MISC:
|
||||||
|
|
||||||
* More conservative timing values for Raft
|
* More conservative timing values for Raft
|
||||||
|
|
||||||
* Provide a warning if attempting to commit a very large Raft entry
|
* Provide a warning if attempting to commit a very large Raft entry
|
||||||
|
|
||||||
* Improved timeliness of registration when server is in bootstrap mode. [GH-72]
|
* Improved timeliness of registration when server is in bootstrap mode. [GH-72]
|
||||||
|
|
||||||
## 0.1.0 (April 17, 2014)
|
## 0.1.0 (April 17, 2014)
|
||||||
|
|
Loading…
Reference in New Issue