Skip to content

Commit 82f34f1

Browse files
committed
Merge branch 'hotfix/27.1.1' of https://github.com/Yoast/wordpress-seo into trunk
2 parents 89f435b + f0a8f57 commit 82f34f1

File tree

5 files changed

+17
-7
lines changed

5 files changed

+17
-7
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@
7676
"webpack-bundle-analyzer": "^4.9.1"
7777
},
7878
"yoast": {
79-
"pluginVersion": "27.1-RC6"
79+
"pluginVersion": "27.1.1-RC1"
8080
},
8181
"version": "0.0.0"
8282
}

readme.txt

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ License: GPLv3
55
License URI: http://www.gnu.org/licenses/gpl.html
66
Tags: SEO, XML sitemap, Content analysis, Readability, Schema
77
Tested up to: 6.9
8-
Stable tag: 27.0
8+
Stable tag: 27.1
99
Requires PHP: 7.4
1010

1111
Improve your SEO with real-time feedback, schema, and clear guidance. Upgrade for AI tools, Google Docs integration, and 24/7 support, no hidden fees.
@@ -303,19 +303,29 @@ Your question has most likely been answered on our help center: [yoast.com/help/
303303

304304
== Changelog ==
305305

306+
= 27.1.1 =
307+
308+
Release date: 2026-03-03
309+
310+
#### Bugfixes
311+
312+
* Fixes a bug where Schema aggregator endpoints were returning a fatal error when trying to access response pages other than the first one by using slash syntax.
313+
306314
= 27.1 =
307315

308316
Release date: 2026-03-03
309317

318+
New: Introducing the Schema Aggregation feature. Futureproof your website for an agentic future. [Read the full release post here](https://yoa.st/55i).
319+
310320
#### Enhancements
311321

322+
* Introduces the Schema aggregation feature. Thanks to Syde for helping us with testing it!
312323
* Introduces a more robust HTML processing and highlighting approach for the *transition words* assessment.
313-
* Introduces the Schema aggregation feature.
314324

315325
#### Bugfixes
316326

317327
* Fixes a bug where sentences containing transition words failed to be highlighted in _transition words_ assessment when they contained elements excluded from the analysis such as `<code>`.
318-
* Fixes a bug where Slovak two-part transition words wasn't recognized when running the readability analysis.
328+
* Fixes a bug where Slovak two-part transition words weren't recognized when running the readability analysis.
319329

320330
= 27.0 =
321331

src/schema-aggregator/user-interface/site-schema-aggregator-route.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ public function aggregate_site_schema( WP_REST_Request $request ) {
202202
*
203203
* @return bool True if the page is valid, false otherwise.
204204
*/
205-
private function validate_page( string $page ): bool {
205+
public function validate_page( string $page ): bool {
206206
return \is_numeric( $page ) && $page > 0 && $page < \PHP_INT_MAX;
207207
}
208208
}

wp-seo-main.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* {@internal Nobody should be able to overrule the real version number as this can cause
1616
* serious issues with the options, so no if ( ! defined() ).}}
1717
*/
18-
define( 'WPSEO_VERSION', '27.1-RC6' );
18+
define( 'WPSEO_VERSION', '27.1.1-RC1' );
1919

2020

2121
if ( ! defined( 'WPSEO_PATH' ) ) {

wp-seo.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*
99
* @wordpress-plugin
1010
* Plugin Name: Yoast SEO
11-
* Version: 27.1-RC6
11+
* Version: 27.1.1-RC1
1212
* Plugin URI: https://yoa.st/1uj
1313
* Description: The first true all-in-one SEO solution for WordPress, including on-page content analysis, XML sitemaps and much more.
1414
* Author: Team Yoast

0 commit comments

Comments
 (0)