5.1.2
November 28th, 2023
What's fixed
- Fixed an error when checking out with a product variant #139 by @duncanmcclean
5.1.1
November 21st, 2023
What's fixed
- Fixed an issue where Digital Product fields weren't being added to variant option fields by @duncanmcclean
5.1.0
November 17th, 2023
What's improved
- For variant products, the "Is Digital Product?" toggle is now on each variant #135 #136 by @duncanmcclean
5.0.6
November 16th, 2023
What's fixed
- Fixed error from
AddFieldsToProductBlueprint
listener when no option fields were configured on a "Product Variants" field #133 #134 by @duncanmcclean
5.0.5
October 3rd, 2023
What's fixed
- Fixed duplicate digital product fields being added to variant options #131 #132 by @duncanmcclean
5.0.4
September 28th, 2023
What's fixed
- Fixed a few issues with how fields are added to product blueprints #129 #130 by @duncanmcclean
5.0.3
August 7th, 2023
What's improved
What's fixed
- Refactored order completion check in
VerificationController
#127 by @duncanmcclean - Fixed failing tests
3.2.1
June 2nd, 2022
- Regenerate
composer.lock
file so it works - I really shouldn't be working on a bank holiday
2.2.3
December 2nd, 2021
What's fixed
- Fixed issue where download history wasn't being saved #103 by @digitalam025
2.2.2
August 30th, 2021
What's fixed
- Fixed issue with email view, where it would call a method that doesn't exist
- An exception is now thrown if product does not have any digital downloads
2.2.0
June 30th, 2021
⚠️ This update contains a breaking change.
This release introduces a few changes to the way email notifications work. Essentially, now the Digital Products addon hooks into Simple Commerce's existing notifications system.
To keep notifications from sending, add the following to the notifications
array in your config/simple-commerce.php
file.
'notifications' => [
'digital_download_ready' => [
\DoubleThreeDigital\DigitalProducts\Notifications\DigitalDownloadsNotification::class => [
'to' => 'customer',
],
],
],
2.1.0
May 10th, 2021
Note: Before updating, you'll need to upgrade to Simple Commerce v2.3. Review the upgrade guide.
What's new?
1.0.5
November 6th, 2020
- New Supports Simple Commerce v2.1
- Fix The Verification endpoint will now get orders from the configured order collection, instead of being hard coded.
- Fix Fixed bug where enabling the Statamic API wouldn't enable the Verification endpoint
LicenseKeyRepository
is now bound byStatamic::repository
- Added tests and did some refactoring