Skip to content
Open
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 PSWebServiceLibrary.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ class PrestaShopWebservice
/** @var string Minimal version of PrestaShop to use with this library */
const psCompatibleVersionsMin = '1.4.0.0';
/** @var string Maximal version of PrestaShop to use with this library */
const psCompatibleVersionsMax = '8.2.0';
const psCompatibleVersionsMax = '9.0.0';
Copy link
Member

Choose a reason for hiding this comment

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

As we haven't tested this module on 9.0.0, maybe we should set 8.2.99 to the max for now 🤔
(In the future, I think that we can remove totally the max compatible version thing here 🤷‍♂️)

Suggested change
const psCompatibleVersionsMax = '9.0.0';
const psCompatibleVersionsMax = '8.2.99';

Copy link
Member

Choose a reason for hiding this comment

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

cc @tleon


/**
* PrestaShopWebservice constructor. Throw an exception when CURL is not installed/activated
Expand Down