Linux 软件免费装

VerCheck API

开发者 rolandbende
更新时间 2026年7月11日 23:52
捐献地址: 去捐款
PHP版本: 7.4 及以上
WordPress版本: 7.0.1
版权: GPL-3.0-or-later
版权网址: 版权信息

标签

healthcheck versioncheck

下载

1.0.0 1.0.1 1.0.2 1.0.3 1.1.0 1.2.0

详情介绍:

This plugin adds a custom REST API endpoint that returns information about the current versions of the WordPress core, active themes, and active plugins. Useful for remote WordPress site version monitoring & logging, CI/CD checks, and automated update workflows. Both endpoints require authentication via a Bearer token. Endpoint 1: Status — outdated items only Returns only items that have available updates: Endpoint 2: Audit — full inventory Returns a complete inventory of everything installed: Endpoint 3: Environment — server version info Returns the current runtime environment versions: Example response — /v1/audit: { "core": { "current_version": "6.4.3", "new_version": "6.5", "is_outdated": true }, "themes": [ { "name": "Twenty Twenty-Four", "slug": "twentytwentyfour", "current_version": "1.3", "new_version": null, "is_outdated": false, "is_active": true } ], "plugins": [ { "name": "Example Plugin", "slug": "example-plugin/example-plugin.php", "current_version": "1.2.0", "new_version": "1.3.0", "is_outdated": true, "is_active": true } ] } Additional info: The unique request ID for each API call is returned in the response header: X-Request-ID: {{unique-request-id}}

升级注意事项:

1.2.0 New /v1/environment endpoint added — returns PHP, MySQL, WordPress, and plugin versions. No breaking changes.

更新日志:

1.2.0 1.1.0 1.0.3 1.0.2 1.0.1 1.0.0