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
1 change: 1 addition & 0 deletions bun.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
### [1.4.0] 2026-05-21

* Fix - Type-hint in WP Core's callback was too strict and could cause fatal.
* Feature - Added the `lw_harbor_refresh_catalog()` global function to force a synchronous re-fetch of the product catalog from the Commerce Portal API.

### [1.3.0] 2026-05-19

* Feature - Registered Legacy Licenses can now be utilized for updates if `use_for_updates` is `true`.
Expand Down
4 changes: 0 additions & 4 deletions changelog/fix-drop-type-hint-from-wp-callback.yaml

This file was deleted.

5 changes: 0 additions & 5 deletions changelog/main.yaml

This file was deleted.

2 changes: 1 addition & 1 deletion src/Harbor/Admin/Feature_Manager_Page.php
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ public function maybe_register_page(): void {
* the React bundle is loaded only on this specific admin page.
*
* @since 1.0.0
* @since TBD Dropped string type-hint for $hook_suffix.
* @since 1.4.0 Dropped string type-hint for $hook_suffix.
*
* @param string $hook_suffix Current admin page hook suffix.
*
Expand Down
2 changes: 1 addition & 1 deletion src/Harbor/Harbor.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class Harbor {
*
* @var string
*/
public const VERSION = '1.3.0';
public const VERSION = '1.4.0';

/**
* Initializes the service provider.
Expand Down
2 changes: 1 addition & 1 deletion src/Harbor/global-functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ function lw_harbor_get_license_page_url(): string {
* Portal API responds. Returns true on a successful refresh, false on any
* failure (HTTP error, parsing error, or Harbor not being active).
*
* @since TBD
* @since 1.4.0
*
* @return bool Whether the catalog was refreshed successfully.
*/
Expand Down
Loading