Skip to content

Commit 7846dfe

Browse files
committed
Merge branch 'develop' into deferred-translations
2 parents 59d7848 + 9144f49 commit 7846dfe

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

classes/Backtrace.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -425,7 +425,7 @@ public function filter_trace( array $frame ) {
425425
/**
426426
* Filters which namespaces to ignore when constructing user-facing call stacks.
427427
*
428-
* @since 3.18.1
428+
* @since 3.19.0
429429
*
430430
* @param array<string, bool> $ignore_namespace Array of namespace names to ignore. The array keys are namespace names to ignore,
431431
* the array values are whether to ignore the namespace (usually true).

collectors/http.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -386,7 +386,7 @@ public function process() {
386386
/**
387387
* Log a Guzzle HTTP request.
388388
*
389-
* @since 3.18.1
389+
* @since 3.19.0
390390
*
391391
* @param \Psr\Http\Message\RequestInterface $request The Guzzle request object.
392392
* @param \Psr\Http\Message\ResponseInterface|null $response The Guzzle response object, or null if an exception occurred.
@@ -470,7 +470,7 @@ public function log_guzzle_request( $request, $response, $exception, string $url
470470
* $stack->push( QM_Collector_HTTP::guzzle_middleware() );
471471
* $client = new Client( [ 'handler' => $stack ] );
472472
*
473-
* @since 3.18.1
473+
* @since 3.19.0
474474
*
475475
* @return callable Guzzle middleware callable.
476476
*/

docs/wordpress-debugging/guzzle-http-requests.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Debugging Guzzle HTTP Requests
22

33
::: tip New
4-
This feature is new in Query Monitor 3.18.1
4+
This feature is new in Query Monitor 3.19.0
55
:::
66

77
Query Monitor can log HTTP requests made with the [Guzzle HTTP client library](https://docs.guzzlephp.org/), a popular PHP HTTP client used by many WordPress plugins and applications. Since Guzzle bypasses WordPress's HTTP API, these requests don't normally appear in Query Monitor's HTTP panel. The Guzzle middleware solves this problem.

0 commit comments

Comments
 (0)