CI run: https://github.com/WordPress/wordpress-develop/pull/11059. See #64595. --- I've included a log of the Gutenberg changes with the following command: git log --reverse --format="- %s" 23b566c72e9c4a36219ef5d6e62890f05551f6cb..022d8dd3d461f91b15c1f0410649d3ebb027207f | sed 's|#\([0-9][0-9]*\)|https://github.com/WordPress/gutenberg/pull/\1|g; /github\.com\/WordPress\/gutenberg\/pull/!d' | pbcopy - Pattern Editing: Fix nested patterns/sections (https://github.com/WordPress/gutenberg/pull/75772) - QuickEdit: rename status label and remove extra labels in popup (https://github.com/WordPress/gutenberg/pull/75824) - Fix block editing modes not recomputing when isolated editor value changes (https://github.com/WordPress/gutenberg/pull/75821) - Synced patterns: Fix block editing mode of synced pattern content when nested in an unsynced pattern (https://github.com/WordPress/gutenberg/pull/75818) - Block Support: Fix custom CSS not saved when style schema is not defined (https://github.com/WordPress/gutenberg/pull/75797) - Gallery: Fixes keyboard focus escaping the lightbox overlay when navigating a gallery with Tab/Shift+Tab. (https://github.com/WordPress/gutenberg/pull/75852) - Navigation Overlay Close: Set Close as default text, rather than using a placeholder (https://github.com/WordPress/gutenberg/pull/75692) - RTC: Fix entity save call / initial persistence. (https://github.com/WordPress/gutenberg/pull/75841) - Real-time collaboration: Improve collaboration within the same rich text (https://github.com/WordPress/gutenberg/pull/75703) - Client Side Media: Add device/browser capability detection (https://github.com/WordPress/gutenberg/pull/75863) - Navigation editing: simplify edit/view buttons (https://github.com/WordPress/gutenberg/pull/75819) - Add core/icon block to theme.json schema (https://github.com/WordPress/gutenberg/pull/75813) - Fix error when undoing newly added pattern (https://github.com/WordPress/gutenberg/pull/75850) - Page List Item: Replace RawHTML with dangerouslySetInnerHTML for label and title (https://github.com/WordPress/gutenberg/pull/75890) - REST API: Make filter_wp_unique_filename() static to match core, plus avoid duplicate routes (https://github.com/WordPress/gutenberg/pull/75782) - RichText: useAnchor: Fix TypeError in virtual element (https://github.com/WordPress/gutenberg/pull/75900) - DataViews: Remove menu divider again. (https://github.com/WordPress/gutenberg/pull/75908) - Theme: Add build plugins to inject design token fallbacks (https://github.com/WordPress/gutenberg/pull/75901) - Theme: Remove global stylesheet (https://github.com/WordPress/gutenberg/pull/75879) - Real-time collaboration: Remove ghost awareness state explicitly when refreshing (https://github.com/WordPress/gutenberg/pull/75883) - Real-time collaboration: Expand mergeCrdtBlocks() automated testing (https://github.com/WordPress/gutenberg/pull/75923) - Fix client-side media file naming (https://github.com/WordPress/gutenberg/pull/75817) - Add: Connectors screen (https://github.com/WordPress/gutenberg/pull/75833) - Merge document meta into state map (https://github.com/WordPress/gutenberg/pull/75830) - Move WordPress meta key from sync package to core-data (https://github.com/WordPress/gutenberg/pull/75846) - Bugfix: Fix casing of getPersistedCRDTDoc (https://github.com/WordPress/gutenberg/pull/75922) - Add debug logging to SyncManager (https://github.com/WordPress/gutenberg/pull/75924) - DataForm: fix label colors (https://github.com/WordPress/gutenberg/pull/75730) - DataViews: minimize padding for primary action buttons (https://github.com/WordPress/gutenberg/pull/75721) (https://github.com/WordPress/gutenberg/pull/75947) - Connectors: Add `_ai_` prefix to connector setting names and fix naming inconsistencies (https://github.com/WordPress/gutenberg/pull/75948) - Connectors: Unhook Core callbacks in Gutenberg coexistence (https://github.com/WordPress/gutenberg/pull/75935) - Unsynced patterns: Rename 'Disconnect pattern' to 'Detach pattern' in context menu (https://github.com/WordPress/gutenberg/pull/75807) - Editor: Remove View dropdown and pinned items from revisions header (https://github.com/WordPress/gutenberg/pull/75951) - Fix: Template revisions infinite spinner (https://github.com/WordPress/gutenberg/pull/75953) - Backport: Avoid flickering while refreshing (https://github.com/WordPress/gutenberg/pull/74572) (https://github.com/WordPress/gutenberg/pull/75952) - Add wp_ prefix to real time collaberation option. (https://github.com/WordPress/gutenberg/pull/75837) Built from https://develop.svn.wordpress.org/trunk@61750 git-svn-id: http://core.svn.wordpress.org/trunk@61056 1a063a9b-81f0-0310-95a4-ce76da25c4cd
58 lines
1.1 KiB
PHP
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-beta1-61750';
|
|
|
|
/**
|
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
|
*
|
|
* @global int $wp_db_version
|
|
*/
|
|
$wp_db_version = 61696;
|
|
|
|
/**
|
|
* 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';
|