Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.14.2
2.15.0
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "2.14.2",
"version": "2.15.0",
"name": "ultimate-multisite",
"title": "Ultimate Multisite",
"homepage": "https://ultimatemultisite.com/",
Expand Down
9 changes: 8 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Tags: multisite, domain mapping, wordpress multisite, multisite saas, waas
Requires at least: 5.3
Requires PHP: 8.2
Tested up to: 7.0
Stable tag: 2.14.2
Stable tag: 2.15.0
License: GPLv2
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -251,6 +251,13 @@ Data collected includes:
No personal data, domains, IP addresses, or payment information are collected.

== Changelog ==
Version [2.15.0] - Released on 2026-07-30
- New: DirectAdmin hosting integration now supports domain mapping and guided setup.
- New: Administrators can review recent log errors directly from the dashboard.
- Fix: Stripe trials, free checkouts, checkout styling, billing fields, notifications, and legacy settings now behave reliably across more configurations.
- Fix: Site imports, exports, duplication, cron cleanup, setup recommendations, API key visibility, and generated site names now handle edge cases safely.
- Fix: DirectAdmin responses and dependency handling are more resilient, including security updates.

Version [2.14.2] - Released on 2026-07-16
- New: Authenticated site availability diagnostics now report domain, lock, visit-limit, and frontend smoke-test details for support and automation.
- Fix: Cross-domain SSO now preserves the correct admin destination and handles cookie-less token redirects more safely.
Expand Down
4 changes: 2 additions & 2 deletions ultimate-multisite.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Plugin Name: Ultimate Multisite
* Plugin URI: https://ultimatemultisite.com
* Description: Ultimate Multisite is a WordPress Multisite plugin that turns your network into a complete Website-as-a-Service (WaaS) platform with subscriptions, site provisioning, domain mapping, and customer management. Formerly WP Ultimo.
* Version: 2.14.2
* Version: 2.15.0

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🗄️ Data Integrity & Integration | 🟠 Major | ⚡ Quick win

Update the runtime version constant before release.

ultimate-multisite.php now reports 2.15.0, but inc/class-wp-ultimo.php still defines WP_Ultimo::VERSION as 2.14.2. The release workflow compares these values and will fail the version check.

Update WP_Ultimo::VERSION to 2.15.0.

Also applies to: 68-68

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@ultimate-multisite.php` at line 6, Update the WP_Ultimo::VERSION constant in
class WP_Ultimo from 2.14.2 to 2.15.0 so it matches the runtime version declared
in ultimate-multisite.php.

* Author: Ultimate Multisite Community
* Author URI: https://ultimatemultisite.com
* License: GPLv2 or later
Expand Down Expand Up @@ -65,7 +65,7 @@
define('WP_ULTIMO_PLUGIN_FILE', __FILE__);
}
if ( ! defined('WP_ULTIMO_VERSION')) {
define('WP_ULTIMO_VERSION', '2.14.2');
define('WP_ULTIMO_VERSION', '2.15.0');
}
if ( ! defined('MULTISITE_ULTIMATE_UPDATE_URL')) {
define('MULTISITE_ULTIMATE_UPDATE_URL', 'https://ultimatemultisite.com/');
Expand Down
Loading