Skip to content

Commit

Permalink
Merge branch 'main' into SPMVP-6920-fix-wordpress-blocked-by-waf
Browse files Browse the repository at this point in the history
  • Loading branch information
Lyrisbee committed Dec 1, 2023
2 parents c0dec9c + c71ed37 commit 2c74f80
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
## 1.x

- 1.0.1 (2023-11-27)
- TLS certificate verification is now disabled
- API redirection is now disabled

- 1.0.0 (2023-11-17)
- Initial release
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

## Version

1.0.0
1.0.1

### Supported Laravel Version

Expand Down
2 changes: 2 additions & 0 deletions src/Requests/Request.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ protected function request(
$response = $this
->app
->http
->withoutVerifying()
->withoutRedirecting()
->withUserAgent($this->app->userAgent())
->withBasicAuth($this->app->username(), $this->app->password())
->{$method}($this->getUrl($path), $options);
Expand Down

0 comments on commit 2c74f80

Please sign in to comment.