WordPress 4.4.34.
Some checks failed
Coding Standards / JavaScript coding standards (push) Has been cancelled
JavaScript Tests / QUnit Tests (push) Has been cancelled
PHPUnit Tests / PHP 5.3 (push) Has been cancelled
PHPUnit Tests / PHP 5.4 (push) Has been cancelled
PHPUnit Tests / PHP 5.5 (push) Has been cancelled
PHPUnit Tests / PHP 5.6 (push) Has been cancelled
PHPUnit Tests / PHP 7.0 (push) Has been cancelled
Test Build Processes / Core running from build (push) Has been cancelled
Coding Standards / Slack Notifications (push) Has been cancelled
Coding Standards / Failed workflow tasks (push) Has been cancelled
JavaScript Tests / Slack Notifications (push) Has been cancelled
JavaScript Tests / Failed workflow tasks (push) Has been cancelled
PHPUnit Tests / Slack Notifications (push) Has been cancelled
PHPUnit Tests / Failed workflow tasks (push) Has been cancelled
Test Build Processes / Slack Notifications (push) Has been cancelled
Test Build Processes / Failed workflow tasks (push) Has been cancelled

git-svn-id: https://develop.svn.wordpress.org/branches/4.4@60461 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov
2025-07-15 13:10:11 +00:00
parent d53b91e6a1
commit 0b46ca457c
4 changed files with 23 additions and 3 deletions

2
package-lock.json generated
View File

@@ -1,6 +1,6 @@
{
"name": "WordPress",
"version": "4.4.33",
"version": "4.4.34",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@@ -1,6 +1,6 @@
{
"name": "WordPress",
"version": "4.4.33",
"version": "4.4.34",
"description": "WordPress is web software you can use to create a beautiful website or blog.",
"repository": {
"type": "svn",

View File

@@ -50,6 +50,26 @@ include( ABSPATH . 'wp-admin/admin-header.php' );
<div class="changelog point-releases">
<h3><?php _e( 'Maintenance and Security Releases' ); ?> </h3>
<p>
<?php
printf(
/* translators: %s: WordPress version number */
__( '<strong>Version %s</strong> addressed one security issue.' ),
'4.4.34'
);
?>
<?php
printf(
/* translators: %s: HelpHub URL */
__( 'For more information, see <a href="%s">the release notes</a>.' ),
sprintf(
/* translators: %s: WordPress version */
esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ),
sanitize_title( '4.4.34' )
)
);
?>
</p>
<p>
<?php
printf(

View File

@@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.4.33-src';
$wp_version = '4.4.34-src';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.