Skip to content

Releases: tsenart/vegeta

v7.0.0

18 May 14:21
Compare
Choose a tag to compare

Changelog

add59f4 Fix ldflags definition in .goreleaser.yml
471eeda Remove unecessary release.sh
21d989c Retrieve Go version from the runtime
36f99e4 Vendor dependencies with dep
d464802 Sign releases
a9ac487 Release v7.0.0
fa07f86 Use GoReleaser for releases
7ea8409 Print version, commit, Go version and date in -version output
c743295 TestProxyOption
6d87d90 Merge pull request #234 from chrismoos/proxy_option
beea5c7 s/NilErrorOnClose/NonNilErrorsOnClose/
9b3f61d Merge pull request #277 from TrevinTeacutter/master
2da25b2 Capture response body in Results
da7a2c6 Implement JSON and CSV Result decoders
ed86504 Factor out round robin decoding logic from Decoder
5cff1c0 Added test for nil Metrics.Errors slice
a744dc7 Addedd support for h2c requests (HTTP/2 without TLS) (#261)
cd8b31b Updated readme (#284)
42cddd2 Add jplot integration usage example to the README (#280)
478e54b Prevent null values from being reported in json
f30b7da README: Use SVG badge [ci skip] (#258)
876d3f2 [trivial] Typo in test failure message (#259)
e02ecc7 Add option to override HTTP Proxy on Attacker.

Mark responses as success in no redirect following mode

19 Mar 13:59
Compare
Choose a tag to compare

2017-03-19: v6.3.0

  • Mark responses as success in no redirect following mode (#222)

Allow any upper-case ASCII word to be an HTTP method, Metrics computation bug fixes

04 Mar 20:00
Compare
Choose a tag to compare

2017-03-04: v6.2.0
Allow any upper-case ASCII word to be an HTTP method (#217)
Correctly compute Metrics.Rate with sub-second duration results (#208)

Respect case sensitivity in target file header names

26 Aug 17:51
Compare
Choose a tag to compare

This is a bug fix release that makes Vegeta respect case sensitivity in target file header names. Thanks to @shevanid for reporting and @chriskirkland for the fix.

HTTP2 support

03 Apr 19:36
Compare
Choose a tag to compare

This release adds HTTP2 support to Vegeta. A new boolean flag -http2 in the attack command has been defined which enables users to disable HTTP2 requests.

Infinite attacks, client certificates and more.

27 Nov 19:49
Compare
Choose a tag to compare

CHANGELOG

  • Insecure attack flag (#160)
  • Client certificates (#156)
  • Infinite attacks (#155)
  • Allow empty lines between targets (#147)

Client certificates, infinite attacks and more.

17 Nov 15:24
Compare
Choose a tag to compare
Add support for TLS client certs

Fixes #63

Bounded memory streaming reporters and dumpers

19 Sep 12:57
Compare
Choose a tag to compare

This release makes the reporters and dumpers work in bounded memory over result streams which addresses #132.

Fix DELETE method support in targets

04 Sep 10:07
Compare
Choose a tag to compare

This is a bug fix release that fixes support for the DELETE HTTP method in targets.
Thanks to @shriiitk for reporting #134

Increase precision of quantile estimation

12 Aug 11:13
Compare
Choose a tag to compare

This release fixes #129 which reported that quantile estimation in reports looked wrong for some data sets. The issue was the streaming quantile algorithm used wasn't tuned appropriately. However, after considering the problem for a while, it became clear that using such an algorithm is not necessary since we have all the data ready anyways. Therefore, I implemented R's 8th type of batch quantile estimation which is approximately median-unbiased regardless of the data distribution.