Commit Graph

603 Commits

Author SHA1 Message Date
James Phillips 76c25dcd59
Updates the change log. 2017-12-14 13:56:26 -08:00
James Phillips c20c6727b7
Updates the change log. 2017-12-13 20:56:31 -08:00
James Phillips 3f06776281
Updates the change log. 2017-12-13 14:16:09 -08:00
James Phillips 57a9ff06ba
Updates the change log. 2017-12-13 11:26:09 -08:00
James Phillips b1e45a8e89
Updates the change log. 2017-12-07 16:45:21 -08:00
James Phillips 185f971a0b
Updates the change log. 2017-12-05 20:33:14 -08:00
James Phillips a3f9603d19
Updates the change log. 2017-11-29 10:39:13 -08:00
James Phillips 9f2989424e
Updated memberlist to fix negative RTT measurements.
Fixes #3704
2017-11-21 01:37:49 -08:00
James Phillips 59effe8a1a
Puts the tree into 1.0.2 dev mode. 2017-11-20 14:46:12 -08:00
James Phillips 649cb66725
Puts the tree into 1.0.1 release mode. 2017-11-20 13:55:07 -08:00
James Phillips d9eca7f821
Updates the change log. 2017-11-20 08:55:18 -08:00
James Phillips 80a619a4e7
Update CHANGELOG.md 2017-11-16 11:16:22 -08:00
James Phillips a1110516da
Updates the change log.g 2017-11-10 13:52:32 -08:00
James Phillips 6649c8090a
Updates the change log. 2017-11-10 12:54:43 -08:00
James Phillips b8cc86da0a
Updates the change log. 2017-11-10 12:28:36 -08:00
James Phillips ec24e9f5fc
Updates the change log. 2017-11-10 09:45:49 -08:00
James Phillips 938f092cc9
Update CHANGELOG.md 2017-11-08 23:25:27 -08:00
James Phillips a4cfcac4de
Update CHANGELOG.md 2017-11-08 20:06:16 -08:00
James Phillips b77c7a1c19
Updates the change log. 2017-11-07 18:29:17 -08:00
James Phillips f9a46a83fd
Adds doc links to the change log. 2017-11-07 18:25:16 -08:00
James Phillips 1b6a2856db
Updates the change log. 2017-11-07 18:24:06 -08:00
James Phillips 26a00952a7
Updates the change log. 2017-11-07 18:15:35 -08:00
James Phillips ec1e73b555
Updates the change log. 2017-11-07 16:35:36 -08:00
James Phillips c6c7b8fa6b
Update CHANGELOG.md 2017-11-07 15:08:39 -08:00
Jason Martin 31cdb66990
Update CHANGELOG, as GH-3343 references RFC1464 not 1434. 2017-11-03 07:29:39 -07:00
James Phillips 701ee7567a
Updates the change log. 2017-10-31 17:07:20 -07:00
James Phillips 81922441c7
Updates the change log. 2017-10-31 15:32:22 -07:00
James Phillips 4092d1e906
Updates the change log. 2017-10-31 15:07:47 -07:00
James Phillips d1ead2c48d
Updates the change log. 2017-10-31 13:21:25 -07:00
Frank Schroeder 610f3c86a0
Update CHANGELOG.md 2017-10-26 19:59:57 +02:00
Frank Schroeder d1923a20a7
Update CHANGELOG.md 2017-10-26 19:58:38 +02:00
James Phillips a3f6e16573 Update CHANGELOG.md 2017-10-23 22:54:37 -07:00
James Phillips 7fdd016bd6 Update CHANGELOG.md 2017-10-23 22:53:29 -07:00
James Phillips 9580f75ee9 Update CHANGELOG.md 2017-10-23 08:58:49 -07:00
Frank Schroeder b8501a999b
Update CHANGELOG.md 2017-10-23 16:44:32 +02:00
James Phillips fb465707df Update CHANGELOG.md 2017-10-21 20:03:58 -07:00
preetapan 6d34bc3e7d Update CHANGELOG.md 2017-10-21 21:30:04 -05:00
preetapan f1ec6191ae Update CHANGELOG.md 2017-10-21 21:28:58 -05:00
preetapan 41343cddaf Update CHANGELOG.md 2017-10-21 21:08:34 -05:00
preetapan e03fce5bcd Update CHANGELOG.md 2017-10-21 21:07:30 -05:00
James Phillips e8e4e5f867
Updates the change log. 2017-10-20 16:51:43 -07:00
Preetha Appan c6c5cd5b48 Update CHANGELOG.md 2017-10-20 10:18:19 -05:00
Preetha Appan 77cd2e7e6e Update CHANGELOG.md 2017-10-19 12:59:12 -05:00
James Phillips cafd20d3f0
Updates the change log. 2017-10-18 11:32:53 -07:00
James Phillips 73481c6474
Puts the tree in 1.0 final release mode. 2017-10-16 09:16:52 -07:00
James Phillips f25c66dfd9 Fixes an XSS issue with unescaped node names. (#3578)
* Fixes an XSS issue with node names in the tomography graph.

* Updates built-in static web assets.

* Updates the change log.
2017-10-16 09:12:36 -07:00
James Phillips 204e6bac18
Adds a 1.0 section to the upgrade guide and cleans up the change log. 2017-10-13 16:46:36 -07:00
James Phillips 323b74d727
Updates the change log. 2017-10-11 11:59:35 -07:00
James Phillips aaf6b17a4d
Updates the change log. 2017-10-11 07:45:42 -07:00
Frank Schröder 94f58199b1 agent: add option to discard health output (#3562)
* agent: add option to discard health output

In high volatile environments consul will have checks with "noisy"
output which changes every time even though the status does not change.
Since the output is stored in the raft log every health check update
unblocks a blocking call on health checks since the raft index has
changed even though the status of the health checks may not have changed
at all. By discarding the output of the health checks the users can
choose a different tradeoff. Less visibility on why a check failed in
exchange for a reduced change rate on the raft log.

* agent: discard output also when adding a check

* agent: add test for discard check output

* agent: update docs

* go vet

* Adds discard_check_output to reloadable config table.

* Updates the change log.
2017-10-10 17:04:52 -07:00