From 84823ce95e7fa0d2f30ed01d27819350a4c5e059 Mon Sep 17 00:00:00 2001 From: Marian <42134098+IanDelMar@users.noreply.github.com> Date: Wed, 16 Jul 2025 03:59:50 +0200 Subject: [PATCH] Generate stubs for WordPress 6.8.2 --- source/composer.json | 2 +- wordpress-stubs.php | 14 ++++++++++++++ 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/source/composer.json b/source/composer.json index ee83c736..5052df3b 100644 --- a/source/composer.json +++ b/source/composer.json @@ -7,7 +7,7 @@ "ext-mbstring": "*", "ext-openssl": "*", "ext-sodium": "*", - "johnpbloch/wordpress": "6.8.1" + "johnpbloch/wordpress": "6.8.2" }, "minimum-stability": "stable", "config": { diff --git a/wordpress-stubs.php b/wordpress-stubs.php index 59a54c13..1faea84f 100644 --- a/wordpress-stubs.php +++ b/wordpress-stubs.php @@ -91996,6 +91996,17 @@ function upgrade_650() function upgrade_670() { } + /** + * Executes changes made in WordPress 6.8.2. + * + * @ignore + * @since 6.8.2 + * + * @global int $wp_current_db_version The old (current) database version. + */ + function upgrade_682() + { + } /** * Executes network-level upgrade routines. * @@ -101980,6 +101991,7 @@ function wp_list_comments($args = array(), $comments = \null) * @since 4.6.0 Introduced the 'action' argument. * @since 4.9.6 Introduced the 'cookies' default comment field. * @since 5.5.0 Introduced the 'class_container' argument. + * @since 6.8.2 Introduced the 'novalidate' argument. * * @param array $args { * Optional. Default arguments and form fields to override. @@ -102001,6 +102013,7 @@ function wp_list_comments($args = array(), $comments = \null) * Default 'Your email address will not be published.'. * @type string $comment_notes_after HTML element for a message displayed after the textarea field. * @type string $action The comment form element action attribute. Default '/wp-comments-post.php'. + * @type bool $novalidate Whether the novalidate attribute is added to the comment form. Default false. * @type string $id_form The comment form element id attribute. Default 'commentform'. * @type string $id_submit The comment submit element id attribute. Default 'submit'. * @type string $class_container The comment form container class attribute. Default 'comment-respond'. @@ -102039,6 +102052,7 @@ function wp_list_comments($args = array(), $comments = \null) * comment_notes_before?: string, * comment_notes_after?: string, * action?: string, + * novalidate?: bool, * id_form?: string, * id_submit?: string, * class_container?: string,