Files
wordpress/wp-includes/version.php
ellatrix 907f74d027 Editor: Bump pinned hash for the Gutenberg repository.
This updates the pinned hash from the `gutenberg` from `487a096a9782ba6110a7686d7b4b2d0c55ed1b06` to `2ee7ede6be6d4e55d5c7047394c5c4e0ea8d521d`.

The following changes are included:

- RTC: Backport race condition fix (https://github.com/WordPress/gutenberg/pull/76649)
- Fix navigation block rendering unit test (https://github.com/WordPress/gutenberg/pull/76685)
- Hide Additional CSS controls when block is inside contentOnly editing mode (https://github.com/WordPress/gutenberg/pull/76512)
- RTC: Increase polling intervals, increase polling on primary room only (https://github.com/WordPress/gutenberg/pull/76704)
- Navigation: Avoid List View changing position when navigation block saves (https://github.com/WordPress/gutenberg/pull/76659)
- Fix navigation block unit test and e2e test (https://github.com/WordPress/gutenberg/pull/76692)
- Fix locked content when switching to a different template without exiting 'Edit pattern' (https://github.com/WordPress/gutenberg/pull/76710)
- Metabox: Fix checkbox style in sidebar (https://github.com/WordPress/gutenberg/pull/76718)
- Stop keeping stale controlled blocks after reset (https://github.com/WordPress/gutenberg/pull/76591)
- Gate client-side media processing as plugin-only (https://github.com/WordPress/gutenberg/pull/76700)

A full list of changes can be found on GitHub: 487a096a97…2ee7ede6be6d4e55d5c7047394c5c4e0ea8d521d.

Log created with:

git log --reverse --format="- %s" 487a096a9782ba6110a7686d7b4b2d0c55ed1b06..2ee7ede6be6d4e55d5c7047394c5c4e0ea8d521d | sed 's|#\([0-9][0-9]*\)|https://github.com/WordPress/gutenberg/pull/\1|g; /github\.com\/WordPress\/gutenberg\/pull/!d' | pbcopy

See #64595.
Built from https://develop.svn.wordpress.org/trunk@62076


git-svn-id: http://core.svn.wordpress.org/trunk@61358 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2026-03-20 15:35:02 +00:00

58 lines
1.1 KiB
PHP

<?php
/**
* WordPress Version
*
* Contains version information for the current WordPress release.
*
* @package WordPress
* @since 1.2.0
*/
/**
* The WordPress version string.
*
* Holds the current version number for WordPress core. Used to bust caches
* and to enable development mode for scripts when running from the /src directory.
*
* @global string $wp_version
*/
$wp_version = '7.0-beta5-62076';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
*
* @global int $wp_db_version
*/
$wp_db_version = 61833;
/**
* Holds the TinyMCE version.
*
* @global string $tinymce_version
*/
$tinymce_version = '49110-20250317';
/**
* Holds the minimum required PHP version.
*
* @global string $required_php_version
*/
$required_php_version = '7.4';
/**
* Holds the names of required PHP extensions.
*
* @global string[] $required_php_extensions
*/
$required_php_extensions = array(
'json',
'hash',
);
/**
* Holds the minimum required MySQL version.
*
* @global string $required_mysql_version
*/
$required_mysql_version = '5.5.5';