Skip to content

Commit 087737a

Browse files
Merge release/4.7 (4.7-RC1) back into trunk
2 parents dedbd4e + e5c5d6f commit 087737a

3 files changed

Lines changed: 23 additions & 19 deletions

File tree

changelog.md

Lines changed: 20 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,26 @@ Requires PHP: 7.4
77
Changelog
88
=========
99

10+
## 4.7
11+
12+
Release date: 2026-06-30
13+
14+
#### Enhancements
15+
16+
* Adds a link to the existing duplicate in the Rewrite & Republish admin notices, so you can open it directly instead of hunting for it in the post list. Props to [@johnbillion](https://github.com/johnbillion).
17+
18+
#### Bugfixes
19+
20+
* Fixes a bug where a published post could be overwritten by a user without permission to edit it, when that user scheduled a Rewrite & Republish copy of the post for future publication.
21+
* Fixes a bug where a PHP deprecation notice appeared in the block editor, when a user opened a Rewrite & Republish copy of a post they were not allowed to edit.
22+
* Fixes a bug where the _Copy to a new draft_ and _Rewrite & Republish_ links broke the layout of the Classic Editor Publish meta box on WordPress 7.0.
23+
24+
#### Other
25+
26+
* Improves the security of the welcome notice dismissal by requiring a valid nonce and the `manage_options` capability.
27+
* Improves the security of the scheduled republish notice in the Classic editor by escaping the post title and permalink before output.
28+
* Sets the _WordPress tested up to_ version to 7.0.
29+
1030
## 4.6
1131

1232
Release date: 2026-03-09
@@ -43,21 +63,5 @@ Introduces smoother post duplication, more reliable rewrite workflows, and bette
4363
* Improves discoverability of security policy in Packagist.
4464
* Users requiring this package via [WP]Packagist can now use the `composer/installers` v2.
4565

46-
## 4.5
47-
48-
Release date: 2022-06-28
49-
50-
#### Enhancements
51-
52-
* Improves the impact of the plugin on the performance of the site by avoiding useless calls on the `gettext` filter.
53-
54-
#### Bugfixes
55-
56-
* Fixes a bug where a section in the Classic Editor's submitbox would be displayed with incorrect margins.
57-
58-
#### Other
59-
60-
* Sets the WordPress tested up to version to 6.0.
61-
6266
### Earlier versions
6367
For the changelog of earlier versions, please refer to [the changelog on yoast.com](https://yoa.st/duplicate-post-changelog).

duplicate-post.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* Plugin Name: Yoast Duplicate Post
1010
* Plugin URI: https://yoast.com/wordpress/plugins/duplicate-post/
1111
* Description: The go-to tool for cloning posts and pages, including the powerful Rewrite & Republish feature.
12-
* Version: 4.6
12+
* Version: 4.7-RC1
1313
* Author: Enrico Battocchi & Team Yoast
1414
* Author URI: https://yoa.st/team-yoast-duplicate
1515
* Text Domain: duplicate-post
@@ -47,7 +47,7 @@
4747
define( 'DUPLICATE_POST_PATH', plugin_dir_path( __FILE__ ) );
4848
}
4949

50-
define( 'DUPLICATE_POST_CURRENT_VERSION', '4.6' );
50+
define( 'DUPLICATE_POST_CURRENT_VERSION', '4.7-RC1' );
5151

5252
$duplicate_post_autoload_file = DUPLICATE_POST_PATH . 'vendor/autoload.php';
5353

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,6 @@
5151
"@wordpress/plugins": "^2.23.0"
5252
},
5353
"yoast": {
54-
"pluginVersion": "4.6"
54+
"pluginVersion": "4.7-RC1"
5555
}
5656
}

0 commit comments

Comments
 (0)