Skip to content

Releases: bojand/ghz

v0.59.0

30 Aug 00:27
b879715
Compare
Choose a tag to compare

Changelog

v0.59.0 - 2020-08-29

  • Merge pull request #221 from bojand/file_config_option. Addresses #219.

v0.58.0

24 Aug 01:20
062100d
Compare
Choose a tag to compare

Changelog

v0.58.0 - 2020-08-23

Summary

Adds template functions:

newUUID - Generates a new UUID for each invocation.

randomString - Generates a new random string for each incovation. Accepts a length parameter. If the argument is <= 0 then a ranom string is generated with a random length between length of 2 and 16.

Example usage with data:

-d '{"order_id":"{{newUUID}}", "item_id":"{{newUUID}}", "sku":"{{randomString 8 }}", "product_name":"{{ranomdString 0}}"}'

Would result in data with JSON representation:

{
  "order_id": "3974e7b3-5946-4df5-bed3-8c3dc9a0be19",
  "item_id": "cd9c2604-cd9b-43a8-9cbb-d1ad26ca93a4",
  "sku": "HlFTAxcm",
  "product_name": "xg3NEC"
}

Also adds WithTemplateFuncs() API option.

Addresses #213.

Commits

  • 062100d Merge pull request #218 from bojand/template_funcs
  • 8e46da1 Merge pull request #207 from bojand/dependabot/npm_and_yarn/web/ui/elliptic-6.5.3
  • 55b1c88 Merge pull request #210 from bojand/dependabot/npm_and_yarn/www/website/prismjs-1.21.0

v0.57.0

23 Aug 17:08
4e9c2f7
Compare
Choose a tag to compare

Changelog

v0.57.0 - 2020-08-23

Build

  • e3b505b update www package lockfile

Documentation

  • 8b62b11 fix options reference menu
  • 12d617e improve options reference

Commits

v0.56.0

27 Jul 00:02
9e4f6e4
Compare
Choose a tag to compare

Changelog

v0.56.0 - 2020-07-26

Build

  • ca1fb7f CGO_ENABLED=0 in build in makefile

Commits

  • 9e4f6e4 Merge pull request #201 from sujitdmello/master
  • ce7c393 Merge pull request #204 from bojand/dependabot/npm_and_yarn/www/website/lodash-4.17.19
  • 4ed0485 Merge pull request #205 from bojand/dependabot/npm_and_yarn/web/ui/lodash-4.17.19
  • f266ef0 Updated skipFirst option with = sign
  • 65decb9 Merge pull request #6 from michaelperel/miperel/options_tests
  • b99d0f4 updated to reflect int instead of uint
  • f0cb23d Merge pull request #5 from sujitdmello/skipFirstOption
  • 40d44c6 added options tests
  • 63c4738 Added options test and docs
  • 29532c1 Merge pull request #4 from michaelperel/miperel/skip-tests
  • aa09aab added test for skipping first N
  • 59a9aa2 build(deps): bump lodash from 4.17.15 to 4.17.19 in /web/ui
  • 9e66441 build(deps): bump lodash from 4.17.15 to 4.17.19 in /www/website
  • 5f4db19 Merge pull request #3 from michaelperel/master
  • a7c754b bumped golangci-lint version, added results of go mod tidy
  • 60c0c10 Delete go.sum
  • 2ee90df Merge pull request #2 from sujitdmello/skipFirstOption
  • 7906e7c Added check for invalid skipFirst value
  • 4cea308 Merge pull request #1 from sujitdmello/skipFirstOption
  • d58bcb9 Fixed typo
  • a7d5a8f Addressed Michaels comments
  • 7782ba1 Added the skipFirst option for warmup delays
  • 02c0138 Refresh certificates
  • 67350de Merge pull request #195 from bojand/dependabot/npm_and_yarn/www/website/websocket-extensions-0.1.4
  • acfa77c build(deps): bump websocket-extensions in /www/website
  • ca1fb7f CGO_ENABLED=0 in build in makefile

v0.55.0

01 Jun 21:59
cc19f0b
Compare
Choose a tag to compare

Changelog

v0.55.0 - 2020-06-01

Build

Documentation

Commits

v0.54.1

15 May 01:11
Compare
Choose a tag to compare

Changelog

v0.54.1 - 2020-05-14

Build

  • a4212d2 update_brew_formula depends on github_release
  • 3264a5f fix workflow syntax and use RELEASE_VERSION env var
  • 9b12143 fix brew build step
  • 2082a8c fix brew build step
  • 6fab32c add brew update step to release workflow
  • 4370a0d git getch all

Documentation

  • 4869d9f update installation instructions

Commits

  • a4212d2 update_brew_formula depends on github_release
  • 3264a5f fix workflow syntax and use RELEASE_VERSION env var
  • 9b12143 fix brew build step
  • 2082a8c fix brew build step
  • 6fab32c add brew update step to release workflow
  • 4869d9f update installation instructions
  • 4370a0d git getch all

v0.54.0

13 May 12:04
Compare
Choose a tag to compare

Changelog

v0.54.0 - 2020-05-13

Fix

  • b2f6ed2 use proper conversion factor for converting ns to s in chart functions. Fixes #181.

Build

Commits

  • 9e1d06f update statik generated files
  • 5424700 update dependencies
  • b2f6ed2 use proper conversion factor for converting ns to s in chart functions

v0.53.0

13 May 01:09
Compare
Choose a tag to compare

Changelog

v0.53.0 - 2020-05-12

  • Increase maximum send and receive size. Fixes #183.
  • Cross compile ghz-web with CGO_ENABLED=1. Fixes #137 .

v0.53.0-beta4

11 May 01:09
Compare
Choose a tag to compare

Changelog

v0.53.0-beta4 - 2020-05-10

Build

  • 89a5a3a try to set release version so it works on windowns

Commits

  • 89a5a3a try to set release version so it works on windowns

v0.52.0

27 Apr 01:11
Compare
Choose a tag to compare

Changelog

8c22e51 Add WithConfig options for runner (#178)
3e5c8f2 Add tests for well known types and documentation (#180)
df97e47 fix: do not make call required in runner.Config after refactor
bc07136 toc for examples in docs