Skip to content

Commit 3fe6682

Browse files
Merge pull request tag1consulting#389 from jeremyandrews/v0.15.1
release 0.15.1
2 parents 0f119e7 + afec6b6 commit 3fe6682

File tree

8 files changed

+10
-9
lines changed

8 files changed

+10
-9
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
## 0.15.1-dev
3+
## 0.15.1 November 19, 2021
44
- [#374](https://github.com/tag1consulting/goose/pull/374) renamed `simple-with-session.rs` to `session.rs` and `simple-closure.rs` to `closure.rs` to avoid confusion with the `simple.rs` example as they all do different things
55
- [#385](https://github.com/tag1consulting/goose/pull/385) properly configure `--running-metrics VALUE` when set manually
66
- [#382](https://github.com/tag1consulting/goose/pull/382) set client timeout to 60 seconds by default, used for all requests made; introduce `--timeout VALUE` where VALUE is seconds as integer or a float; timeout can be configured programatically using `GooseDefault::Timeout`

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "goose"
3-
version = "0.15.1-dev"
3+
version = "0.15.1"
44
authors = ["Jeremy Andrews <jeremy@tag1consulting.com>"]
55
edition = "2018"
66
description = "A load testing framework inspired by Locust."

src/docs/goose-book/src/controller/telnet.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Trying 127.0.0.1...
1111
Connected to localhost.
1212
Escape character is '^]'.
1313
goose> ?
14-
goose 0.15.0 controller commands:
14+
goose 0.15.1 controller commands:
1515
help (?) this help
1616
exit (quit) exit controller
1717
start start an idle load test

src/docs/goose-book/src/getting-started/common.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -78,12 +78,13 @@ cargo run --release -- -t 30m
7878

7979
By default, Goose displays [text-formatted metrics](metrics.md) when a load test finishes. It can also optionally write an HTML-formatted report if you enable the `--report-file <NAME>` run-time option, where `<NAME>` is an absolute or relative path to the report file to generate. Any file that already exists at the specified path will be overwritten.
8080

81-
HTML report includes some graphs that rely on [eCharts JavaScript library](https://echarts.apache.org). HTML report loads the library via CDN, which means that the graphs won't be loaded correctly if the CDN is not accessible.
81+
The HTML report includes some graphs that rely on the [eCharts JavaScript library](https://echarts.apache.org). The HTML report loads the library via CDN, which means that the graphs won't be loaded correctly if the CDN is not accessible.
82+
83+
![Requests per second graph](rps.png)
8284

8385
### Example
8486
_Write an HTML-formatted report to `report.html` when the load test finishes._
8587

8688
```bash
8789
cargo run --release -- --report-file report.html
8890
```
89-

src/docs/goose-book/src/getting-started/creating.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ At this point it's possible to compile all dependencies, though the resulting bi
2121
```bash
2222
$ cargo run
2323
Updating crates.io index
24-
Downloaded goose v0.15.0
24+
Downloaded goose v0.15.1
2525
...
26-
Compiling goose v0.15.0
26+
Compiling goose v0.15.1
2727
Compiling loadtest v0.1.0 (/home/jandrews/devel/rust/loadtest)
2828
Finished dev [unoptimized + debuginfo] target(s) in 52.97s
2929
Running `target/debug/loadtest`

src/docs/goose-book/src/getting-started/metrics.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ All 1024 users hatched.
9999
Running: 2021-08-12 10:55:42 - 2021-08-12 11:05:09 (duration: 00:10:00)
100100
Stopping: 2021-08-12 11:05:09 - 2021-08-12 11:05:11 (duration: 00:00:02)
101101

102-
goose v0.15.0
102+
goose v0.15.1
103103
------------------------------------------------------------------------------
104104
```
105105

Loading

src/goose.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2039,7 +2039,7 @@ impl GooseUser {
20392039
/// [`reqwest::Client`](https://docs.rs/reqwest/*/reqwest/struct.Client.html):
20402040
/// - reports itself as the
20412041
/// [`user_agent`](https://docs.rs/reqwest/*/reqwest/struct.ClientBuilder.html#method.user_agent)
2042-
/// requesting web pages (ie `goose/0.15.0`);
2042+
/// requesting web pages (ie `goose/0.15.1`);
20432043
/// - [stores cookies](https://docs.rs/reqwest/*/reqwest/struct.ClientBuilder.html#method.cookie_store),
20442044
/// generally necessary if you aim to simulate logged in users;
20452045
/// - enables

0 commit comments

Comments
 (0)