Skip to content

v0.14.0

Compare
Choose a tag to compare
@jeremyandrews jeremyandrews released this 23 Sep 13:56
· 441 commits to main since this release

0.14.0 September 15, 2021

  • #361 convert README.md (and enhance) into The Goose Book
  • #356 API change: make GooseAttack.execute async, main() function signature changed to:
    #[tokio::main]
    fn main() -> Result<(), GooseError> {
  • #355 API change: add the possibility to attach custom session data GooseUserData to each GooseUser
  • #355 API change: change GooseTask signature to take a mutable reference of GooseUser:
    async fn example_task_function(user: &mut GooseUser) -> GooseTaskResult {
  • #358 API change: update GooseTaskSet::set_wait_time() to accept std::time::Duration instead of usize allowing more granularity
  • #355 remove Clone trait from GooseUser and GooseAttack
  • #359 use request name when displaying errors to avoid having a large volume of distinct error for the same endpoint when using path parameters
  • #360 updated tungstenite dependency to 0.15