Bug: Release names use wrong format #242

Closed
opened 2026-05-31 16:02:33 +00:00 by jmiller · 1 comment
Owner

Bug

Release names created by cli/release_create.php use the format:

Package - MokoWaaS 02.29.04 (pkg_mokowaas-02.29.04)

The correct format should be:

Package - MokoWaaS (VERSION: 02.29.04)

With channel suffix for pre-releases:

Package - MokoWaaS (VERSION: 02.29.04-dev)
Package - MokoWaaS (VERSION: 02.29.04-alpha)
Package - MokoWaaS (VERSION: 02.29.04-beta)
Package - MokoWaaS (VERSION: 02.29.04-rc)

Fix

Line 277 of cli/release_create.php changed from:

$releaseName = "{$displayName} {$version} ({$typePrefix}{$extElement}-{$version})";

To:

$releaseName = "{$displayName} (VERSION: {$version})";

Fix has been applied directly.

## Bug Release names created by `cli/release_create.php` use the format: ``` Package - MokoWaaS 02.29.04 (pkg_mokowaas-02.29.04) ``` The correct format should be: ``` Package - MokoWaaS (VERSION: 02.29.04) ``` With channel suffix for pre-releases: ``` Package - MokoWaaS (VERSION: 02.29.04-dev) Package - MokoWaaS (VERSION: 02.29.04-alpha) Package - MokoWaaS (VERSION: 02.29.04-beta) Package - MokoWaaS (VERSION: 02.29.04-rc) ``` ## Fix Line 277 of `cli/release_create.php` changed from: ```php $releaseName = "{$displayName} {$version} ({$typePrefix}{$extElement}-{$version})"; ``` To: ```php $releaseName = "{$displayName} (VERSION: {$version})"; ``` Fix has been applied directly.
Author
Owner

Branch created: feature/242-bug-release-names-use-wrong-format

git fetch origin
git checkout feature/242-bug-release-names-use-wrong-format
Branch created: [`feature/242-bug-release-names-use-wrong-format`](https://git.mokoconsulting.tech/MokoConsulting/moko-platform/src/branch/feature/242-bug-release-names-use-wrong-format) ```bash git fetch origin git checkout feature/242-bug-release-names-use-wrong-format ```
Sign in to join this conversation.
No labels
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: MokoConsulting/moko-platform#242