After a bit of unexpected delay, a new release of WP-CLIWP-CLI WP-CLI is the Command Line Interface for WordPress, used to do administrative and development tasks in a programmatic way. The project page is http://wp-cli.org/ https://make.wordpress.org/cli/ is available as of today: WP-CLI v2.8.0. For this release, we had 66 contributors collaborate to get 277 pull requests merged.
As always, big thanks to the WP-CLI sponsors that make the continued maintenance possible.
This is a small release with the main purpose of polishing PHPPHP PHP (recursive acronym for PHP: Hypertext Preprocessor) is a widely-used open source general-purpose scripting language that is especially suited for web development and can be embedded into HTML. https://www.php.net/manual/en/index.php 8.1/8.2 support. Nevertheless, apart from the flurry of bugs that were fixed, we also have a few new features that I’ll want to highlight. As always, you can also skip directly to the detailed changelog if you prefer.
Bundled with Requests v2
The last component that needed updating for full PHP 8.1 was the bundled Requests library. With the move to v2 of Requests, adding support for PHP 8.1 seems to be complete, an.d PHP 8.2 is starting to look good as well.
Note that the way the dependencies interact between WP-CLI and WordPress CoreCore Core is the set of software required to run WordPress. The Core Development Team builds WordPress. (which has no proper dependency management that could help out here) makes for a somewhat hacky solution at this time. We’re looking into something more robust for a future release, but until then make sure you submit issues when you encounter edge cases that the current approach does not yet take into account.
Improve support for caching solutions
There is a new command wp cache supports <feature> to detect cache features like add_multiple. Furthermore, we have a new command wp cache flush-group that allows you to flush at the group level. Also, WP-CLI now produces warning when you use wp transient list when an object cache is active. Finally, WP-CLI now recognizes Object Cache Pro as a caching solution.
$ wp cache supports add_multiple
$ echo $?
0
$ wp cache flush-group my_group
Success: Cache group 'my_group' was flushed.
Fetch URLs of entities
For the posts, terms and comments, you can now retrieve their canonical URLURL A specific web address of a website or web page on the Internet, such as a website’s URL www.wordpress.org via the --field=url argument. As an example, you can retrieve the URL of the post with ID 123 via the following command:
$ wp post get 123 --field=url
https://example.com/hello-world-the-sequel/
Skip config changes on multisiteMultisite Multisite is a WordPress feature which allows users to create a network of sites on a single WordPress installation. Available since WordPress version 3.0, Multisite is a continuation of WPMU or WordPress Multiuser project. WordPress MultiUser project was discontinued and its features were included into WordPress core. Advanced Administration Handbook -> Create A Network. conversion
In case you’re working on a read-only filesystem or are forced to push file changes through VCS, you can now skip the automatic config file changes that wp core multisite-convert does. All you need to do is add the --skip-config flag, and the command will not only obey that choice, but also conveniently print the changes you need to make to the config file manually. This behavior was already included with wp core multisite-install, but now the conversion command knows this trick too.
$ wp core multisite-convert --skip-config
Set up multisite database tables.
Addition of multisite constants to 'wp-config.php' skipped. You need to add them manually:
define( 'WP_ALLOW_MULTISITE', true );
define( 'MULTISITE', true );
define( 'SUBDOMAIN_INSTALL', {$subdomain_export} );
\$base = '/';
define( 'DOMAIN_CURRENT_SITE', 'example.com' );
define( 'PATH_CURRENT_SITE', '/' );
define( 'SITE_ID_CURRENT_SITE', 1 );
define( 'BLOG_ID_CURRENT_SITE', 1 );
Success: Network installed. Don't forget to set up rewrite rules (and a .htaccess file, if using Apache).
Verify checksums for the root folder
The wp core verify-checksums now has a new --include-root flag that makes it scan and verify the root folder as well (the one that ABSPATH points to).
$ wp core verify-checksums --include-root
Warning: File should not exist: dump.sql
Warning: File should not exist: backdoor.php
Configure autoloading behavior for options
Two new commands wp option get-autoload and wp option set-autoload have been added to change the autoloading behavior for an existing option. This was not easily possible with wp option update as that only allowed the autoloading to change when the value changed as well.
$ wp option add foo bar
Success: Added 'foo' option.
$ wp option get-autoload foo
yes
$ wp option set-autoload foo no
Success: Updated autoload value for 'foo' option.
$ wp option set-autoload foo no
Success: Autoload value passed for 'foo' option is unchanged.
New flags for password reset
The command wp user reset-password now has two new flags. The first one is --show-password, and it will immediately show the new password as it is being reset. The second one is --porcelain, and it will show only the password and nothing else as output of the command. The latter one is useful for scripting purposes.
$ wp user reset-password admin --skip-email --show-password
Reset password for admin.
Password: bt6Hy!9*P0A1
Success: Password reset for 1 user.
$ wp user reset-password admin --skip-email --porcelain
yV6BP*!d70wg
Include ad-hoc code instead of evaluating it
If you’re using the wp eval-file command, it will read the file you point it to and run it through the PHP eval logic. This has a few drawbacks, though. One one hand, directives like declare(strict_types=1) will throw errors. On the other, it is not possible to use XDebug to debug such an evaluated piece of code.
To counter this, the wp eval-file command now has a new --use-include flag that makes it include the file you’re pointing to, instead of running it through eval. Note that this does not work with STDIN as input, so the - file argument can not be used at the same time as the --use-include flag.
Detailed change log
To avoid too much noise in the list above, the following types of pull requests have been omitted:
- PRs that only bumped dependencies to their latest version.
- PRs that only fixed a typo in the documentation.
- PRs that add an
allow-pluginsrule to Composer. - PRs that add a Composer script.
wp-cli/wp-cli-bundle
- Adapt tests for Requests [#540]
- Skip
update-framework.ymlworkflow on forks [#537] - Add a workflow to keep
wp-cli/wp-cliup to date [#507] - Move the new README into its proper location [#478]
- Add a new bundle-specific README [#476]
- Use Composer 2.2 LTS for PHP < 7.2 [#472]
- Detect if running Phar via CLICLI Command Line Interface. Terminal (Bash) in Mac, Command Prompt in Windows, or WP-CLI for WordPress. SAPI [#465]
- Use
ramsey/composer-installinDeploymentworkflow [#463]
wp-cli/wp-cli
- Harden loading of upgrader [#5791]
- Ignore Requests deprecations in error handling for now [#5790]
- Fallback to hardcoded folder when
WPINCnot defined [#5786] - Add
RequestsLibrary::get_bundled_certificate_path()method [#5785] - Conditionally adapt to Core Requests library [#5783]
- Add bootstrap step to extract default CA certificate [#5781]
- Revert “Extract cacert from Phar for cURL” [#5780]
- Use
wp_cache_flush_runtimeif supported. [#5778] - Extract
cacertfrom Phar for cURL [#5777] - Fix some PHP 8.2 depreciation notices in behat tests [#5776]
- Use
rtrimon phar-safe path to avoid double slash [#5775] - Upgrade WP-CLI to Requests v2 [#5774]
- Added
wp cli alias is-groupsubcommand. [#5766] - Update test to reflect warning when
--url=<url>is provided [#5763] - Use
-Rinstead of-rfor fallback pager command [#5759] - Fix autocompletion notice with PHP 8.2 [#5749]
- Fix PHP Deprecation for 8.1 [#5743]
- Use
WP_CLI_FORCE_USER_LOGIN=1to force--user=<login>[#5738] - Fix
--skip-themesfor themes with blockBlock Block is the abstract term used to describe units of markup that, composed together, form the content or layout of a webpage using the WordPress editor. The idea combines concepts of what in the past may have achieved with shortcodes, custom HTML, and embed discovery into a single consistent API and user experience. patterns [#5737] - Make sure
subcommand@aliasdefinition respects@whendefinition [#5730] - Improve docs for
SHELL_PIPE[#5729] - Use
awkinstead ofsedto create BOM in feature test [#5728] - Add
runtime_argsto options array forruncommand[#5722] - Fix deprecation notice triggered in
WpOrgApiclass in PHP 8.1 [#5717] - Fix return type of
make_progress_bar [#5715] - Add name context to
before_invokeandafter_invoke[#5712] - Check that
proc_open()is available inProcess::run()[#5711] - Improve support for cases with empty
--pathprovided to commands [#5709] - Fix
composer testafter branch rename [#5708] - PHP 8.2: explicitly declare
CompositeCommand::$longdescto fix deprecation warning [#5707] - Detect Object Cache Pro [#5698]
- Ensure
WP_CLI_ROOTis defined before accessing it [#5697] - Fix
proc_open_compatutil on Windows [#5689] - Move
WP_CLI_CONFIG_SPEC_FILTER_CALLBACKtest toflags.feature[#5687]
wp-cli/handbook
- Replacement added for the
&&[#444] - Add HostRiver to list of hosting companies [#442]
- Add DataPerk to list of hosting companies [#441]
- Include a couple more helpful Behat calls [#440]
- Add maintainer expectations to the Governance page [#439]
- Fill out page for
wp profile[#437] - Link to ‘Shell Friends’ from the Philosophy doc [#435]
- Add example for how to discard headerHeader The header of your site is typically the first thing people will experience. The masthead or header art located across the top of your page is part of the look and feel of your website. It can influence a visitor’s opinion about your content and you/ your organization’s brand. It may also look different on different screen sizes. row from CSV [#434]
- Uppercase for ‘Committers Credo’ title [#433]
- Update
hosting-companies.md[#432] - Move the Doctor docs under ‘Guides’ [#431]
- Add secondary
wp doctorcontent and a landing page [#430] - Add two primary
wp doctordocs to the handbook [#429] - Fix phar download url [#428]
- Adding new pluginPlugin A plugin is a piece of software containing a group of functions that can be added to a WordPress website. They can extend functionality or add new features to your WordPress websites. WordPress plugins are written in the PHP programming language and integrate seamlessly with WordPress. These can be free in the WordPress.org Plugin Directory https://wordpress.org/plugins/ or can be cost-based plugin from a third-party. to handbook [#427]
- Corrected local jumplinks [#426]
- Running commands remotely: On restrictive webhost [#425]
- Remove BackupBuddy [#423]
- Remove non existing tool [#421]
wp-cli/wp-cli.github.com
- Update
index.md[#428] - Add “WP-CLI” heading [#427]
- 更新德语 readme [#426]
- 更新
ja/index.md[#424] - 当前稳定版本为 2.6.0 [#423]
wp-cli/cache-command
- 使用外部对象缓存时运行
wp transient list发出警告 [#82] - 在多站点中使用
--url=<url>刷新缓存时发出警告 [#86] - 添加用于刷新缓存组的
wp cache flush-group[#85] - 添加
wp cache supports <feature>命令 [#84]
wp-cli/checksum-command
- 修复因
WP_VERSION=trunk超时而失败的校验和测试 [#99] - 传递
false而不是null,修复 PHP 8.1 警告 [#103] - 添加
--include-root参数以同时验证根目录 [#102] - 验证特定的插件版本 [#108]
- 如果
WpOrgApi::get_plugin_checksums()失败,则记录警告 [#105]
wp-cli/core-command
- 切换到 WordPress 4.1 作为小版本更新测试,以修复失败的测试 [#223]
- 通过设置
WP_AUTO_UPDATE_CORE=false修复失败的测试 [#222] - 修复 PHP 8.1 中的弃用通知 [#220]
- 解决由 WordPress 6.2 导致的测试失败 [#229]
- 使用
--skip-content时保留wp-content/plugins和wp-content/themes目录 [#230] - 检查更多文件,以确定是否存在 WordPress [#233]
- 为
wp core multisite-convert添加--skip-config标志 [#231] - 修复 Requests v2 支持的测试 [#235]
wp-cli/cron-command
- 对
--due-now使用wp_get_ready_cron_jobs(),以应用核心 过滤器过滤器 过滤器是钩子的两种类型之一 https://codex.wordpress.org/Plugin_API/Hooks。它们为函数修改其他函数的数据提供了一种方式。它们是操作的对应概念。与操作不同,过滤器旨在以隔离方式工作,不应产生影响全局变量和输出等副作用。 [#89] - 检测到无效 cron 事件时发出警告而不是致命错误 [#93]
- 为
wp cron event run添加--exclude=<hooks>参数 [#97]
wp-cli/db-command
- 修复
get_post_table_characterset的获取 [#231]
wp-cli/entity-command
- 添加删除多个文章 ID 的示例 [#387]
- 为文章、评论和分类法添加
--field=url支持 [#383] - 添加
wp option get-autoload和wp option set-autoload[#382] - 将空命名空间自动加载器替换为类映射 [#390]
- 使用
wp user spam时不要将主站标记为垃圾站点 [#393] - 明确
wp site list文档中的url字段 [#401] - 在几个地方将新密码改为 24 个字符 [#399]
- 为
wp post term添加示例并更新文档 [#398] - 为
user reset-password添加--show-password标志 [#394] - 为
wp user update提供无效角色时发出警告 [#406]
wp-cli/eval-command
- 添加
--use-include标志 [#64]
wp-cli/export-command
- 更新
post__in文档,说明支持以空格分隔 [#104] - 更新使用 WordPress Importer 的测试,要求 WordPress 5.2 [#102]
- 为多文件导出中的
before_posts数据添加--include_once=<section>参数 [#100] - 从导出中的
oembed_cache文章排除不必要的作者 ID [#99]
wp-cli/extension-command
- 修复失败的测试 [#347]
- 通过要求 WP 5.2 修复失败的 PHP 5.6 测试 [#342]
- 卸载插件时删除插件翻译文件 [#339]
- 5 个插件全部更新时不要报告错误 [#338]
- 移除多余空格 [#335]
- 为
wp plugin|theme auto-updates status添加格式选项 [#351] - 在插件和主题列表中包含可选的
'auto_updates'字段 [#350] - 找不到指定版本时避免删除主题 [#349]
- 指定
--minor或--patch时确保使用稳定版本 [#355] - 修复无效插件更新提供中的致命错误 [#354]
- 修复 PHP 8.2“创建动态属性”警告 [#360]
wp-cli/i18n-command
- PHP 8.2:修复
${var}字符串插值弃用警告 [#346] - 添加更多标准的“excludes”值 [#351]
- 修复未闭合的引号 [#350]
- CI:确保 PHPUnit 工作流实际运行 [#360]
- 修复 PHP 8.2 中已弃用的部分支持可调用对象 [#359]
update-po:检查目标位置 [#356]
wp-cli/import-command
wp-cli/language-command
- 切换到
twentytwentyone以修复失败的测试 [#118]
wp-cli/media-command
- 修复
import命令中longdesc的拼写错误 [#172] - Travis 已不再使用,因此可以移除配置文件 [#171]
- 使用
--image_size运行wp media regenerate时,避免删除其他尺寸的 元数据元数据 元数据是指一个群体内部运作方式的术语。对我们而言,这是负责 WordCamp Central 和 Make WordPress 等内部 WordPress 站点的团队。 [#170] - 导入媒体时支持
--post_name=[#166] - 修正
fix-orientation子命令的参数 [#165] - 移除围绕方形图像缩略图重新生成的测试 [#177]
wp-cli/package-command
wp-cli/php-cli-tools
wp-cli/rewrite-command
- 为
wp rewrite list --match=<url>支持完整 URL [#59]
wp-cli/role-command
wp-cli/scaffold-command
- 更新
db.php的 GitHubGitHub GitHub 是一个提供 Git 仓库在线实现的网站,其他开发者可以轻松地共享、复制和修改这些仓库。公共仓库可免费托管,私有仓库则需要付费订阅。GitHub 引入了“拉取请求”的概念,贡献者在分支中完成的代码更改可以在合并前由仓库所有者进行审查和讨论。 https://github.com/ URL [#317] - 将
phpcompatibility-wp编码标准添加到 GitLab 模板 [#315] - 在 GitLab CI 中使用与平台无关的
mysql-client软件包 [#314] - 在脚手架创建的生成
.gitignore中添加vendor[#279]
wp-cli/search-replace-command
- 使
is_text_col的搜索不区分大小写,以支持sqlite[#177] - 修复 PHP 8.2 的正则表达式无效分隔符测试 [#181]
- 解决 PHP 替换中的长时间运行查询和 OOM 问题 [#180]
wp-cli/wp-config-transformer
- 更新
README.md中的状态徽章 [#40] - 使用
assertNotSame而不是assertNotEquals,避免测试失败 [#41] - 修复
get_value()文档块中的错误返回类型 [#43]
贡献者
@aerogus, @agrullon95, @akirk, @benjaminprojas, @BhargavBhandari90, @brandonpayton, @bukowa, @cliffordp, @connerbw, @danielbachhuber, @dd32, @dlind1, @drzraf, @dsXLII, @elenachavdarova, @endriu84, @gagan0123, @gedex, @gitlost, @greatislander, @hbhalodia, @herregroen, @janw-me, @jenkoian, @joeldcanfield, @josedumas, @jrfnl, @kozer, @l3ku, @lipemat, @localheinz, @matzeeable, @michaelzangl, @mpkelly, @mrsdizzie, @mweimerskirch, @oandregal, @ocean90, @ouikhuan, @paulschreiber, @pbiron, @pdaalder, @pmbaldha, @ponsfrilus, @pwtyler, @r-a-y, @Rahmon, @rodrigoprimo, @rutviksavsani, @Saggre, @schlessera, @semseysandor, @SH4LIN, @shendy-a8c, @siliconforks, @srtfisher, @SteenSchutt, @strarsis, @stuartlangridge, @swissspidy, @tecking, @Tug, @tyrann0us, @wojsmol, @wojtekn, @yousan