diff --git a/.github/ISSUE_TEMPLATE b/.github/ISSUE_TEMPLATE index f6706f740..8d1087acb 100644 --- a/.github/ISSUE_TEMPLATE +++ b/.github/ISSUE_TEMPLATE @@ -12,6 +12,8 @@ Want to suggest a feature? Check out the roadmap for how feature development hap Oh! It's worth noting WP-CLI represents a collection of sub-projects, each with their own issue tracker. One of these may be a better destination: +* `wp ability *` https://github.com/wp-cli/ability-command +* `wp block *` https://github.com/wp-cli/block-command * `wp (cache|transient) *` https://github.com/wp-cli/cache-command * `wp checksum` https://github.com/wp-cli/checksum-command * `wp config *` https://github.com/wp-cli/config-command @@ -22,8 +24,10 @@ Oh! It's worth noting WP-CLI represents a collection of sub-projects, each with * `wp (eval|eval-file)` https://github.com/wp-cli/eval-command * `wp export` https://github.com/wp-cli/export-command * `wp (option|post|comment|user|term|site) *` https://github.com/wp-cli/entity-command +* `wp i18n *` https://github.com/wp-cli/i18n-command * `wp import` https://github.com/wp-cli/import-command * `wp language` https://github.com/wp-cli/language-command +* `wp maintenance-mode *` https://github.com/wp-cli/maintenance-mode-command * `wp media *` https://github.com/wp-cli/media-command * `wp package *` https://github.com/wp-cli/package-command * `wp (plugin|theme) *` https://github.com/wp-cli/extension-command diff --git a/composer.json b/composer.json index 414244d1f..d3d7894de 100644 --- a/composer.json +++ b/composer.json @@ -9,6 +9,8 @@ "license": "MIT", "require": { "php": ">=7.2.24", + "wp-cli/ability-command": "^1", + "wp-cli/block-command": "^1", "wp-cli/cache-command": "^2", "wp-cli/checksum-command": "^2.1", "wp-cli/config-command": "^2.1", diff --git a/composer.lock b/composer.lock index ddefce970..ad57e0750 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "322813f04aae26030dd869146aa38f3a", + "content-hash": "e80cc2bb1e43fd4585938fac48b65be7", "packages": [ { "name": "composer/ca-bundle", @@ -2670,6 +2670,144 @@ ], "time": "2024-11-10T20:33:58+00:00" }, + { + "name": "wp-cli/ability-command", + "version": "dev-main", + "source": { + "type": "git", + "url": "https://github.com/wp-cli/ability-command.git", + "reference": "4a6552fad619be502d768348a60595f9d4570b31" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/wp-cli/ability-command/zipball/4a6552fad619be502d768348a60595f9d4570b31", + "reference": "4a6552fad619be502d768348a60595f9d4570b31", + "shasum": "" + }, + "require": { + "wp-cli/wp-cli": "^2.12" + }, + "require-dev": { + "wp-cli/wp-cli-tests": "^5" + }, + "default-branch": true, + "type": "wp-cli-package", + "extra": { + "bundled": true, + "commands": [ + "ability", + "ability list", + "ability get", + "ability run", + "ability exists", + "ability can-run", + "ability validate", + "ability category", + "ability category list", + "ability category get", + "ability category exists" + ], + "branch-alias": { + "dev-main": "1.x-dev" + } + }, + "autoload": { + "files": [ + "ability-command.php" + ], + "psr-4": { + "WP_CLI\\Ability\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Lists, inspects, and executes abilities registered via the WordPress Abilities API.", + "homepage": "https://github.com/wp-cli/ability-command", + "support": { + "issues": "https://github.com/wp-cli/ability-command/issues", + "source": "https://github.com/wp-cli/ability-command/tree/main" + }, + "time": "2025-12-11T18:23:26+00:00" + }, + { + "name": "wp-cli/block-command", + "version": "dev-main", + "source": { + "type": "git", + "url": "https://github.com/wp-cli/block-command.git", + "reference": "46cc3f1aec3c23a0fdd20aad38ef463218999ad5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/wp-cli/block-command/zipball/46cc3f1aec3c23a0fdd20aad38ef463218999ad5", + "reference": "46cc3f1aec3c23a0fdd20aad38ef463218999ad5", + "shasum": "" + }, + "require": { + "wp-cli/wp-cli": "^2.12" + }, + "require-dev": { + "wp-cli/extension-command": "^2", + "wp-cli/wp-cli-tests": "^5" + }, + "default-branch": true, + "type": "wp-cli-package", + "extra": { + "bundled": true, + "commands": [ + "block", + "block type", + "block type list", + "block type get", + "block pattern", + "block pattern list", + "block pattern get", + "block pattern-category", + "block pattern-category list", + "block pattern-category get", + "block style", + "block style list", + "block style get", + "block binding", + "block binding list", + "block binding get", + "block template", + "block template list", + "block template get", + "block template export", + "block synced-pattern", + "block synced-pattern list", + "block synced-pattern get", + "block synced-pattern create", + "block synced-pattern update", + "block synced-pattern delete" + ], + "branch-alias": { + "dev-main": "1.x-dev" + } + }, + "autoload": { + "files": [ + "block-command.php" + ], + "psr-4": { + "WP_CLI\\Block\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Manages block types, patterns, styles, bindings, and templates.", + "homepage": "https://github.com/wp-cli/block-command", + "support": { + "issues": "https://github.com/wp-cli/block-command/issues", + "source": "https://github.com/wp-cli/block-command/tree/main" + }, + "time": "2025-12-11T20:01:16+00:00" + }, { "name": "wp-cli/cache-command", "version": "v2.2.1", @@ -4633,12 +4771,12 @@ "source": { "type": "git", "url": "https://github.com/wp-cli/wp-cli.git", - "reference": "ebbc66a3dbacc5e5dda6d918194a1051fef6b4ce" + "reference": "87066409a26073f730f3de8316cb1f98195c46c6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/wp-cli/wp-cli/zipball/ebbc66a3dbacc5e5dda6d918194a1051fef6b4ce", - "reference": "ebbc66a3dbacc5e5dda6d918194a1051fef6b4ce", + "url": "https://api.github.com/repos/wp-cli/wp-cli/zipball/87066409a26073f730f3de8316cb1f98195c46c6", + "reference": "87066409a26073f730f3de8316cb1f98195c46c6", "shasum": "" }, "require": { @@ -4696,7 +4834,7 @@ "issues": "https://github.com/wp-cli/wp-cli/issues", "source": "https://github.com/wp-cli/wp-cli" }, - "time": "2025-12-11T14:48:41+00:00" + "time": "2025-12-11T18:24:17+00:00" }, { "name": "wp-cli/wp-config-transformer", @@ -6478,12 +6616,12 @@ "source": { "type": "git", "url": "https://github.com/Roave/SecurityAdvisories.git", - "reference": "75d4ccd9c135c4ac904cd4211a43e51d12feb1ef" + "reference": "415fded4fc00cd3df267d36e384e3e7454b39c40" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Roave/SecurityAdvisories/zipball/75d4ccd9c135c4ac904cd4211a43e51d12feb1ef", - "reference": "75d4ccd9c135c4ac904cd4211a43e51d12feb1ef", + "url": "https://api.github.com/repos/Roave/SecurityAdvisories/zipball/415fded4fc00cd3df267d36e384e3e7454b39c40", + "reference": "415fded4fc00cd3df267d36e384e3e7454b39c40", "shasum": "" }, "conflict": { @@ -6536,7 +6674,7 @@ "automattic/jetpack": "<9.8", "awesome-support/awesome-support": "<=6.0.7", "aws/aws-sdk-php": "<3.288.1", - "azuracast/azuracast": "<0.18.3", + "azuracast/azuracast": "<=0.23.1", "b13/seo_basics": "<0.8.2", "backdrop/backdrop": "<=1.32", "backpack/crud": "<3.4.9", @@ -6817,7 +6955,7 @@ "ibexa/http-cache": ">=4.6,<4.6.14", "ibexa/post-install": "<1.0.16|>=4.6,<4.6.14", "ibexa/solr": ">=4.5,<4.5.4", - "ibexa/user": ">=4,<4.4.3|>=5,<5.0.3", + "ibexa/user": ">=4,<4.4.3|>=5,<5.0.4", "icecoder/icecoder": "<=8.1", "idno/known": "<=1.3.1", "ilicmiljan/secure-props": ">=1.2,<1.2.2", @@ -7472,7 +7610,7 @@ "type": "tidelift" } ], - "time": "2025-12-09T18:07:05+00:00" + "time": "2025-12-11T17:09:09+00:00" }, { "name": "sebastian/code-unit-reverse-lookup",