From e193330c9eaf98c1a32225484ce14ee50703da93 Mon Sep 17 00:00:00 2001 From: Scott Moucka Date: Tue, 12 Dec 2023 16:42:49 -0500 Subject: [PATCH 1/4] add .python-version to gitignore --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 11ef3f5..11eb30f 100644 --- a/.gitignore +++ b/.gitignore @@ -206,3 +206,6 @@ fabric.properties /build/ # End of https://www.toptal.com/developers/gitignore/api/phpunit,php-cs-fixer,phpcodesniffer,phpstorm,phpstorm+all + +# pyenv +.python-version From f630260c527a902309bc0973f853ba478e73b8de Mon Sep 17 00:00:00 2001 From: Scott Moucka Date: Tue, 12 Dec 2023 16:43:05 -0500 Subject: [PATCH 2/4] bump version 4.1.1 --- CHANGELOG.md | 5 ++++- composer.dev.json | 2 +- composer.json | 2 +- etc/module.xml | 2 +- 4 files changed, 7 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 83a2efd..bfcaebc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### [Unreleased] +### [4.1.1] - 2023-12-12 + #### Added - Added name to initialize block in checkout @@ -256,7 +258,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 -[Unreleased]: https://github.com/klaviyo/magento2-klaviyo/compare/4.1.0...HEAD +[Unreleased]: https://github.com/klaviyo/magento2-klaviyo/compare/4.1.1...HEAD +[4.1.1]: https://github.com/klaviyo/magento2-klaviyo/compare/4.1.0...4.1.1 [4.1.0]: https://github.com/klaviyo/magento2-klaviyo/compare/4.0.12...4.1.0 [4.0.12]: https://github.com/klaviyo/magento2-klaviyo/compare/4.0.11...4.0.12 [4.0.11]: https://github.com/klaviyo/magento2-klaviyo/compare/4.0.10...4.0.11 diff --git a/composer.dev.json b/composer.dev.json index 11be4b6..572a8c0 100644 --- a/composer.dev.json +++ b/composer.dev.json @@ -2,7 +2,7 @@ "name": "klaviyo/magento2-extension-dev", "description": "The local development composer file. This is used for local and continuous integration setup/testing.", "type": "magento2-module", - "version": "4.1.0", + "version": "4.1.1", "autoload": { "psr-4": { "Klaviyo\\Reclaim\\": "" diff --git a/composer.json b/composer.json index 3469e08..5a1a199 100644 --- a/composer.json +++ b/composer.json @@ -2,7 +2,7 @@ "name": "klaviyo/magento2-extension", "description": "Klaviyo extension for Magento 2. Allows pushing newsletters to Klaviyo's platform and more.", "type": "magento2-module", - "version": "4.1.0", + "version": "4.1.1", "autoload": { "files": [ "registration.php" diff --git a/etc/module.xml b/etc/module.xml index de4c375..9eaed9f 100644 --- a/etc/module.xml +++ b/etc/module.xml @@ -1,6 +1,6 @@ - + From 09011f6e96335d93287d0b49a14568b4b3ee0de9 Mon Sep 17 00:00:00 2001 From: Claire Kolln Date: Wed, 13 Dec 2023 09:53:34 -0800 Subject: [PATCH 3/4] adds changelog entry for ACL rule PR --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index bfcaebc..f3b2b73 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 #### Added - Added name to initialize block in checkout +- Added ACL rules for Klaviyo extension configuration. #### Fixed - Updated getKlaviyoLists() exception handling to properly print error message. From 50476a3d2b1bbc0ea840ef2b1eba8322d0ba0916 Mon Sep 17 00:00:00 2001 From: Claire Kolln Date: Wed, 13 Dec 2023 10:40:56 -0800 Subject: [PATCH 4/4] updates changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index bdf8899..042ea0d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,6 +19,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 #### Fixed - Updated getKlaviyoLists() exception handling to properly print error message. - Paginate to get all lists for account. +- Updated response handling in KlaviyoV3Sdk to not retry for falsey responses from curl_exec. ### [4.1.0] - 2023-09-29