Version Description
Download this release
Release Info
Developer | gutenbergplugin |
Plugin | Gutenberg |
Version | 12.5.2 |
Comparing to | |
See all releases |
Code changes from version 12.5.1 to 12.5.2
- build/block-library/blocks/latest-posts.php +1 -1
- changelog.txt +15 -2
- gutenberg.php +3 -3
- readme.txt +2 -2
build/block-library/blocks/latest-posts.php
CHANGED
@@ -143,7 +143,7 @@ function gutenberg_render_block_core_latest_posts( $attributes ) {
|
|
143 |
|
144 |
$list_items_markup .= sprintf(
|
145 |
'<div class="wp-block-latest-posts__post-excerpt">%1$s</div>',
|
146 |
-
|
147 |
);
|
148 |
}
|
149 |
|
143 |
|
144 |
$list_items_markup .= sprintf(
|
145 |
'<div class="wp-block-latest-posts__post-excerpt">%1$s</div>',
|
146 |
+
$trimmed_excerpt
|
147 |
);
|
148 |
}
|
149 |
|
changelog.txt
CHANGED
@@ -1,11 +1,24 @@
|
|
1 |
== Changelog ==
|
2 |
|
3 |
-
= 12.5.
|
4 |
|
|
|
|
|
5 |
### Bug Fixes
|
6 |
|
7 |
-
####
|
|
|
|
|
8 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9 |
- Fix a WSOD in the site editor which occurred when an entity could be undefined (https://github.com/WordPress/gutenberg/pull/38503)
|
10 |
|
11 |
|
1 |
== Changelog ==
|
2 |
|
3 |
+
= 12.5.2 =
|
4 |
|
5 |
+
|
6 |
+
|
7 |
### Bug Fixes
|
8 |
|
9 |
+
#### Block Library
|
10 |
+
- Fix latest posts excerpt escaping. ([38517](https://github.com/WordPress/gutenberg/pull/38517))
|
11 |
+
|
12 |
|
13 |
+
|
14 |
+
|
15 |
+
|
16 |
+
= 12.5.1 =
|
17 |
+
|
18 |
+
### Bug Fixes
|
19 |
+
|
20 |
+
#### Site Editor
|
21 |
+
|
22 |
- Fix a WSOD in the site editor which occurred when an entity could be undefined (https://github.com/WordPress/gutenberg/pull/38503)
|
23 |
|
24 |
|
gutenberg.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* Description: Printing since 1440. This is the development plugin for the new block editor in core.
|
6 |
* Requires at least: 5.7
|
7 |
* Requires PHP: 5.6
|
8 |
-
* Version: 12.5.
|
9 |
* Author: Gutenberg Team
|
10 |
* Text Domain: gutenberg
|
11 |
*
|
@@ -13,8 +13,8 @@
|
|
13 |
*/
|
14 |
|
15 |
### BEGIN AUTO-GENERATED DEFINES
|
16 |
-
define( 'GUTENBERG_VERSION', '12.5.
|
17 |
-
define( 'GUTENBERG_GIT_COMMIT', '
|
18 |
### END AUTO-GENERATED DEFINES
|
19 |
|
20 |
gutenberg_pre_init();
|
5 |
* Description: Printing since 1440. This is the development plugin for the new block editor in core.
|
6 |
* Requires at least: 5.7
|
7 |
* Requires PHP: 5.6
|
8 |
+
* Version: 12.5.2
|
9 |
* Author: Gutenberg Team
|
10 |
* Text Domain: gutenberg
|
11 |
*
|
13 |
*/
|
14 |
|
15 |
### BEGIN AUTO-GENERATED DEFINES
|
16 |
+
define( 'GUTENBERG_VERSION', '12.5.2' );
|
17 |
+
define( 'GUTENBERG_GIT_COMMIT', 'ffc48315e99974cdefd0a0ba730505808d47902c' );
|
18 |
### END AUTO-GENERATED DEFINES
|
19 |
|
20 |
gutenberg_pre_init();
|
readme.txt
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
=== Gutenberg ===
|
2 |
Contributors: matveb, joen, karmatosed
|
3 |
Tested up to: 5.9
|
4 |
-
Stable tag: 12.5.
|
5 |
License: GPLv2 or later
|
6 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
7 |
|
@@ -56,4 +56,4 @@ The four phases of the project are Editing, Customization, Collaboration, and Mu
|
|
56 |
|
57 |
== Changelog ==
|
58 |
|
59 |
-
To read the changelog for Gutenberg 12.5.
|
1 |
=== Gutenberg ===
|
2 |
Contributors: matveb, joen, karmatosed
|
3 |
Tested up to: 5.9
|
4 |
+
Stable tag: 12.5.1
|
5 |
License: GPLv2 or later
|
6 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
7 |
|
56 |
|
57 |
== Changelog ==
|
58 |
|
59 |
+
To read the changelog for Gutenberg 12.5.2, please navigate to the <a href="https://github.com/WordPress/gutenberg/releases/tag/v12.5.2">release page</a>.
|