Skip to content

Commit c2cd7fe

Browse files
authored
Merge pull request #184 from stellarwp/revert-182-release-prep-1.5.1
Revert "Release Prep v1.5.1"
2 parents 2862113 + 37e3164 commit c2cd7fe

9 files changed

Lines changed: 16 additions & 12 deletions

changelog.txt

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,3 @@
1-
### [1.5.1] 2026-07-27
2-
3-
* Tweak - Added an Activate control beside the Unactivated badge in the product header, with a tier picker when a license covers multiple unactivated tiers.
4-
* Tweak - Split the Feature Manager product list into Installed Features and Available Features sections.
5-
61
### [1.5.0] 2026-06-25
72

83
* Tweak - Update the unified license key input UI to mask its value when in locked state.
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
significance: patch
2+
type: tweak
3+
entry: Added an Activate control beside the Unactivated badge in the product header, with a tier picker when a license covers multiple unactivated tiers.
4+
timestamp: 2026-07-14T17:35:16.508Z
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
significance: patch
2+
type: tweak
3+
entry: Split the Feature Manager product list into Installed Features and
4+
Available Features sections.
5+
timestamp: 2026-07-14T18:22:38.225Z

resources/js/components/organisms/ProductSection.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ interface ProductSectionProps {
3838
}
3939

4040
/**
41-
* @since 1.5.1 Add hideLicenseBadge prop to suppress the header license badge for Available cards.
41+
* @since TBD Add hideLicenseBadge prop to suppress the header license badge for Available cards.
4242
* @since 1.3.0 Read domain through the getHarborDataValue helper for upgrade URLs.
4343
* @since 1.0.2 Route upgrade CTA to catalog upgrade_url for existing subscribers, purchase_url for new subscribers.
4444
* @since 1.0.1 Show Unactivated badge on tier groups and product header for unactivated licenses.

resources/js/components/organisms/ProductSectionSkeleton.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ function SkeletonFeatureRow( { isLast }: { isLast: boolean } ) {
3434
}
3535

3636
/**
37-
* @since 1.5.1 Render a nameless header instead of a real product logo/name.
37+
* @since TBD Render a nameless header instead of a real product logo/name.
3838
* @since 1.0.0
3939
*/
4040
export function ProductSectionSkeleton() {

resources/js/components/templates/AppShell.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import { isProductInstalled, isProductOwned } from '@/lib/product-install';
2626
import type { Product } from '@/types/api';
2727

2828
/**
29-
* @since 1.5.1 Split products into Installed Features and Available Features sections.
29+
* @since TBD Split products into Installed Features and Available Features sections.
3030
* @since 1.3.0 Read version through the getHarborDataValue helper.
3131
* @since 1.0.0
3232
*/

resources/js/lib/product-install.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import type { Feature, LicenseProduct } from '@/types/api';
1212
*
1313
* @param features The product's features from getFeaturesByProduct().
1414
*
15-
* @since 1.5.1
15+
* @since TBD
1616
*/
1717
export function isProductInstalled( features: Feature[] ): boolean {
1818
return features.some(
@@ -32,7 +32,7 @@ export function isProductInstalled( features: Feature[] ): boolean {
3232
* @param args.licenseProducts All non-cancelled license products from getLicenseProducts().
3333
* @param args.hasActiveLegacy Whether an active legacy license covers the product.
3434
*
35-
* @since 1.5.1
35+
* @since TBD
3636
*/
3737
export function isProductOwned(
3838
slug: string,

resources/js/store/selectors.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ export const areAllProductsNotActivated = ( state: State ): boolean => {
256256
* current domain is not in the activations list. A unified key can cover more
257257
* than one tier of the same product, so this can return multiple entries.
258258
*
259-
* @since 1.5.1
259+
* @since TBD
260260
*/
261261
export const getUnactivatedLicenseProducts = (
262262
state: State,

src/Harbor/Harbor.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class Harbor {
1515
*
1616
* @var string
1717
*/
18-
public const VERSION = '1.5.1';
18+
public const VERSION = '1.5.0';
1919

2020
/**
2121
* Initializes the service provider.

0 commit comments

Comments
 (0)