Releases: bojand/ghz
Releases · bojand/ghz
v0.59.0
v0.58.0
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
v0.57.0
v0.56.0
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
Changelog
v0.55.0 - 2020-06-01
Build
- 0bf1bf5 fix step name
Documentation
- 7a8d2fb fix installation docs
Commits
- cc19f0b Merge pull request #194 from chenrui333/go-1.14
- 66cbda8 Merge pull request #193 from chenrui333/patch-1
- fe8a8e6 chore(deps): bump go to v1.14
- 0edbd52 add release flow for ghz-web
- c62c49f use runner.LoadConfig
- f4b2141 Improve config file support and add tests (#192)
- 977b41a Refresh certificates
- 7a8d2fb fix installation docs
- 0bf1bf5 fix step name
v0.54.1
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