Skip to content
Open
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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,4 @@ package-lock.json
*.pid
*.gz
wp-stateless.wiki
.agents/loop-state/
6 changes: 5 additions & 1 deletion changelog.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
== Changelog ==
= 4.4.0 =
= 4.4.1 - 2026-01-16 =
* COMPATIBILITY - WooCommerce Extra Product Options Compatibility replaced with [WP-Stateless – WooCommerce Extra Product Options Addon](https://wordpress.org/plugins/wp-stateless-woocommerce-extra-product-options-addon/).
* FIX - resolve critical errors with `firebase/php-jwt` library if `AUTH_SALT` WordPress constant is not set or too short.

= 4.4.0 - 2026-01-10 =
* NEW - plugin requires PHP 8.1+.
* ENHANCEMENT - updated `firebase/php-jwt` library from 6.11.1 to 7.0.2.
* ENHANCEMENT - Updated Client library for Google APIs from 2.18.3 to 2.19.0.
Expand Down
6 changes: 5 additions & 1 deletion changes.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
#### 4.4.0
#### 4.4.1 - 2026-01-16
* COMPATIBILITY - WooCommerce Extra Product Options Compatibility replaced with [WP-Stateless – WooCommerce Extra Product Options Addon](https://wordpress.org/plugins/wp-stateless-woocommerce-extra-product-options-addon/).
* FIX - resolve critical errors with `firebase/php-jwt` library if `AUTH_SALT` WordPress constant is not set or too short.

#### 4.4.0 - 2026-01-10
* NEW - plugin requires PHP 8.1+.
* ENHANCEMENT - updated `firebase/php-jwt` library from 6.11.1 to 7.0.2.
* ENHANCEMENT - Updated Client library for Google APIs from 2.18.3 to 2.19.0.
Expand Down
24 changes: 15 additions & 9 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,14 @@
"php": ">=7.4",
Copy link

Copilot AI Apr 12, 2026

Choose a reason for hiding this comment

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

The package now requires dependencies (notably monolog/monolog v3) that target PHP 8.1+, and the plugin readme already states PHP 8.1 is required. Update the Composer platform requirement (\"php\") to >=8.1 to accurately reflect the supported runtime and prevent misleading installs/resolution attempts on older PHP versions.

Suggested change
"php": ">=7.4",
"php": ">=8.1",

Copilot uses AI. Check for mistakes.
"composer/installers": "~2.3",
"ccampbell/chromephp": "^4.1",
"firebase/php-jwt": "^6.1.2",
"firebase/php-jwt": "^7.0",
"udx/lib-ud-api-client": "^1.2",
"udx/lib-wp-bootstrap": "^1.3",
"wpackagist-plugin/meta-box": "^5.10"
"wpackagist-plugin/meta-box": "^5.10",
"automattic/jetpack-autoloader": "^3.0 || ^4.0 || ^5.0",
"psr/log": "^3.0",
"monolog/monolog": "^3.0",
"psr/simple-cache": "^1.0"
},
"autoload": {
"classmap": [
Expand All @@ -55,14 +59,14 @@
]
},
"extra": {
"mozart": {
"dep_namespace": "wpCloud\\StatelessMedia\\",
"dep_directory": "/lib/ns-vendor/deps",
"classmap_directory": "/lib/ns-vendor/classes",
"strauss": {
"target_directory": "lib/ns-vendor",
"namespace_prefix": "wpCloud\\StatelessMedia\\",
"classmap_prefix": "UDX_",
"packages": [
"deliciousbrains/wp-background-processing"
]
],
"delete_vendor_files": false
},
"featureFlags": [
{
Expand Down Expand Up @@ -101,12 +105,14 @@
}
},
"require-dev": {
"coenjacobs/mozart": "0.7.1",
"brianhenryie/strauss": "^0.19",
"deliciousbrains/wp-background-processing": "1.3.1"
},
"config": {
"allow-plugins": {
"composer/installers": true
"composer/installers": true,
"automattic/jetpack-autoloader": true,
"brianhenryie/strauss": true
}
}
}
Loading