James Phillips
e432477bcc
Updates the change log.
2017-12-07 16:45:21 -08:00
James Phillips
23e5dba7d8
Updates the change log.
2017-12-05 20:33:14 -08:00
James Phillips
9e9690f0be
Updates the change log.
2017-11-29 10:39:13 -08:00
James Phillips
68b698993f
Updated memberlist to fix negative RTT measurements.
...
Fixes #3704
2017-11-21 01:37:49 -08:00
James Phillips
a928c88704
Puts the tree into 1.0.2 dev mode.
2017-11-20 14:46:12 -08:00
James Phillips
462876e521
Puts the tree into 1.0.1 release mode.
2017-11-20 13:55:07 -08:00
James Phillips
3b73a2d119
Updates the change log.
2017-11-20 08:55:18 -08:00
James Phillips
119b7a7afe
Update CHANGELOG.md
2017-11-16 11:16:22 -08:00
James Phillips
c4e6a312e6
Updates the change log.g
2017-11-10 13:52:32 -08:00
James Phillips
75d656a3c2
Updates the change log.
2017-11-10 12:54:43 -08:00
James Phillips
cb0eb97a47
Updates the change log.
2017-11-10 12:28:36 -08:00
James Phillips
0759df74e0
Updates the change log.
2017-11-10 09:45:49 -08:00
James Phillips
707d68ba92
Update CHANGELOG.md
2017-11-08 23:25:27 -08:00
James Phillips
df446f6d81
Update CHANGELOG.md
2017-11-08 20:06:16 -08:00
James Phillips
4cf01bef1b
Updates the change log.
2017-11-07 18:29:17 -08:00
James Phillips
5369f97a46
Adds doc links to the change log.
2017-11-07 18:25:16 -08:00
James Phillips
190f71176d
Updates the change log.
2017-11-07 18:24:06 -08:00
James Phillips
c85c2269d3
Updates the change log.
2017-11-07 18:15:35 -08:00
James Phillips
e2367de05d
Updates the change log.
2017-11-07 16:35:36 -08:00
James Phillips
22ec30df9b
Update CHANGELOG.md
2017-11-07 15:08:39 -08:00
Jason Martin
7346311020
Update CHANGELOG, as GH-3343 references RFC1464 not 1434.
2017-11-03 07:29:39 -07:00
James Phillips
d55ddd1580
Updates the change log.
2017-10-31 17:07:20 -07:00
James Phillips
80ddc085c9
Updates the change log.
2017-10-31 15:32:22 -07:00
James Phillips
b8622f2970
Updates the change log.
2017-10-31 15:07:47 -07:00
James Phillips
7432fd6d50
Updates the change log.
2017-10-31 13:21:25 -07:00
Frank Schroeder
b6ca9d25ca
Update CHANGELOG.md
2017-10-26 19:59:57 +02:00
Frank Schroeder
b96d4f5af4
Update CHANGELOG.md
2017-10-26 19:58:38 +02:00
James Phillips
cf0336228b
Update CHANGELOG.md
2017-10-23 22:54:37 -07:00
James Phillips
d82cfc3b81
Update CHANGELOG.md
2017-10-23 22:53:29 -07:00
James Phillips
d8bb6074e4
Update CHANGELOG.md
2017-10-23 08:58:49 -07:00
Frank Schroeder
9d733d8860
Update CHANGELOG.md
2017-10-23 16:44:32 +02:00
James Phillips
e38d53f3c2
Update CHANGELOG.md
2017-10-21 20:03:58 -07:00
preetapan
164baa853e
Update CHANGELOG.md
2017-10-21 21:30:04 -05:00
preetapan
75b02e3baf
Update CHANGELOG.md
2017-10-21 21:28:58 -05:00
preetapan
669c109d27
Update CHANGELOG.md
2017-10-21 21:08:34 -05:00
preetapan
3ef628387a
Update CHANGELOG.md
2017-10-21 21:07:30 -05:00
James Phillips
1fc174ff8c
Updates the change log.
2017-10-20 16:51:43 -07:00
Preetha Appan
32b23575f0
Update CHANGELOG.md
2017-10-20 10:18:19 -05:00
Preetha Appan
bb23d44469
Update CHANGELOG.md
2017-10-19 12:59:12 -05:00
James Phillips
e6a4efa67b
Updates the change log.
2017-10-18 11:32:53 -07:00
James Phillips
8a50327a96
Puts the tree in 1.0 final release mode.
2017-10-16 09:16:52 -07:00
James Phillips
39f2359804
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
eb916860ca
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
7ec211dcfd
Updates the change log.
2017-10-11 11:59:35 -07:00
James Phillips
144a938bcc
Updates the change log.
2017-10-11 07:45:42 -07:00
Frank Schröder
9b2e3c2091
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
preetapan
f6066f8305
Fixes agent error handling when check definition is invalid. Distingu… ( #3560 )
...
* Fixes agent error handling when check definition is invalid. Distinguishes between empty checks vs invalid checks
* Made CheckTypes return Checks from service definition struct rather than a new copy, and other changes from code review. This also errors when json payload contains empty structs
* Simplify and improve validate method, and make sure that CheckTypes always returns a new copy of validated check definitions
* Tweaks some small style things and error messages.
* Updates the change log.
2017-10-10 16:54:06 -07:00
James Phillips
cf21e0bcf5
Updates the change log.
2017-10-10 15:24:10 -07:00
James Phillips
dff7aab526
Updates the change log.
2017-10-06 14:17:21 -07:00
Preetha Appan
e677d309f9
Updating CHANGELOG.md
2017-10-06 16:10:35 -05:00