Skip to content

Commit

Permalink
Merge branch 'develop' into quicker-close
Browse files Browse the repository at this point in the history
  • Loading branch information
crstauf committed Aug 19, 2024
2 parents 76263c1 + 64f1467 commit 4ad82fa
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 24 deletions.
12 changes: 5 additions & 7 deletions .github/workflows/acceptance-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,21 +45,19 @@ jobs:
# https://make.wordpress.org/core/handbook/references/php-compatibility-and-wordpress-versions/
matrix:
wp:
# Latest three stable:
# Three most recent versions of WordPress
- '6.6'
- '6.5'
- '6.4'
php:
- '8.2'
# Most recent version of PHP supported by all of the above, plus 7.4
- '8.3'
- '7.4'
include:
# Latest stable on PHP 8.3:
- wp: '6.6'
php: '8.3'
# Latest stable on PHP 8.4:
# Latest WordPress on PHP 8.4
- wp: '6.6'
php: '8.4'
# Oldest supported on PHP 7.4:
# Oldest supported WordPress
- wp: '5.8'
php: '7.4'
fail-fast: false
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/coding-standards.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
strategy:
matrix:
php:
- '8.2'
- '8.3'
- '7.4'
fail-fast: false
with:
Expand Down
12 changes: 5 additions & 7 deletions .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,21 +46,19 @@ jobs:
# https://make.wordpress.org/core/handbook/references/php-compatibility-and-wordpress-versions/
matrix:
wp:
# Latest three stable:
# Three most recent versions of WordPress
- '6.6'
- '6.5'
- '6.4'
php:
- '8.2'
# Most recent version of PHP supported by all of the above, plus 7.4
- '8.3'
- '7.4'
include:
# Latest stable on PHP 8.3:
- wp: '6.6'
php: '8.3'
# Latest stable on PHP 8.4:
# Latest WordPress on PHP 8.4
- wp: '6.6'
php: '8.4'
# Oldest supported on PHP 7.4:
# Oldest supported WordPress
- wp: '5.8'
php: '7.4'
fail-fast: false
Expand Down
2 changes: 1 addition & 1 deletion dispatchers/Html.php
Original file line number Diff line number Diff line change
Expand Up @@ -436,7 +436,7 @@ protected function before_output() {
echo '<div id="qm-title" class="qm-resizer">';
echo '<h1 class="qm-title-heading">' . esc_html__( 'Query Monitor', 'query-monitor' ) . '</h1>';
echo '<div class="qm-title-heading">';
echo '<select>';
echo '<select id="qm-title-heading-select">';

printf(
'<option value="%1$s">%2$s</option>',
Expand Down
10 changes: 6 additions & 4 deletions docs/privacy.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,10 @@ Please note that in a future version of Query Monitor, opt-in features may be in

## querymonitor.com website privacy statement

* The querymonitor.com website makes no use of cookies and collects no data from visitors.
* The querymonitor.com website is operated by [John Blackbourn](/about/).
* The querymonitor.com website is hosted on [Netlify](https://www.netlify.com/).
The querymonitor.com website:

This privacy statement is subject to change and was last updated on June 28, 2024.
* Makes no use of cookies and collects no client-side data from visitors. Anonymous analytics are collected server-side.
* Is operated by [John Blackbourn](/about/).
* Is hosted on [Netlify](https://www.netlify.com/).

This privacy statement is subject to change and was last updated on July 29, 2024.
4 changes: 0 additions & 4 deletions output/html/http.php
Original file line number Diff line number Diff line change
Expand Up @@ -131,10 +131,6 @@ public function output() {
}
}

if ( empty( parse_url( $row['url'], PHP_URL_QUERY ) ) ) {
$url = trim( $url, '?' );
}

$component = $row['component'];

$stack = array();
Expand Down

0 comments on commit 4ad82fa

Please sign in to comment.