Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Tags: tsenart/vegeta

Tags

v12.12.0

Toggle v12.12.0's commit message

Verified

This commit was signed with the committer’s verified signature.
tsenart Tomás Senart
lib,cmd: add Dan as contributor for -connect-to

Previous commit didn't use Co-authored-by properly.

Co-authored-by: Dan Kegel <dank@kegel.com>

v12.11.3

Toggle v12.11.3's commit message

Verified

This commit was signed with the committer’s verified signature.
tsenart Tomás Senart
lib: use fixed IP selection function

Last release introduced a fixed firstOfEachIPFamily function, but didn't
integrate it.

v12.11.2

Toggle v12.11.2's commit message

Verified

This commit was signed with the committer’s verified signature.
tsenart Tomás Senart
lib: fix IP selection in DNS caching

Fixes #677

v12.11.1

Toggle v12.11.1's commit message

Verified

This commit was signed with the committer’s verified signature.
tsenart Tomás Senart
attack: support IPv6 only in DNSCaching

The previous code had a bug that assumed we could always find an IPv4
first.

Fixes #649

v12.11.0

Toggle v12.11.0's commit message

Verified

This tag was signed with the committer’s verified signature.
tsenart Tomás Senart
Signed-off-by: Tomás Senart <tsenart@gmail.com>

v12.10.0

Toggle v12.10.0's commit message

Verified

This tag was signed with the committer’s verified signature.
tsenart Tomás Senart
Signed-off-by: Tomás Senart <tsenart@gmail.com>

v12.9.0

Toggle v12.9.0's commit message

Verified

This tag was signed with the committer’s verified signature.
tsenart Tomás Senart
Signed-off-by: Tomás Senart <tsenart@gmail.com>

v12.8.4

Toggle v12.8.4's commit message

Unverified

No user is associated with the committer email.
Update year range in LICENSE

v12.8.3

Toggle v12.8.3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
results: Fix Headers encoding (#507)

* Revert "results: Faster JSON encoding and decoding (#506)"

This reverts commit 3629602.

* results: Fix headers encoding

v12.8.2

Toggle v12.8.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
results: Faster JSON encoding and decoding (#506)

* Add .idea to .gitignore

* results: Faster JSON encoding and decoding

This commit improves the performance of JSON encoding and decoding of
`Results`. Additionally, it fixes a regression introduced in #474 that
didn't produce valid JSON for HTTP headers. A test is added that
validates the JSON encoding matches the one produced by the
`encoding/json`.

```
name                            old time/op    new time/op    delta
ResultEncodings/json-encode-16     690ns ±12%     297ns ± 0%   -56.94%
(p=0.000 n=9+9)
ResultEncodings/json-decode-16    1.05µs ± 1%    0.03µs ± 1%   -97.47%
(p=0.000 n=10+8)

name                            old alloc/op   new alloc/op   delta
ResultEncodings/json-encode-16      804B ±87%        0B       -100.00%
(p=0.000 n=9+10)
ResultEncodings/json-decode-16      310B ± 0%        0B       -100.00%
(p=0.000 n=10+10)

name                            old allocs/op  new allocs/op  delta
ResultEncodings/json-encode-16      4.00 ± 0%      0.00       -100.00%
(p=0.000 n=10+10)
ResultEncodings/json-decode-16      4.00 ± 0%      0.00       -100.00%
(p=0.000 n=10+10)
```