From 9f40ad0e8a65b9edde015bc65af7095655e90047 Mon Sep 17 00:00:00 2001 From: Seth Obey <47947793+sethobey@users.noreply.github.com> Date: Mon, 2 May 2022 13:44:10 -0500 Subject: [PATCH] Version 1.9.4 (#314) --- CHANGELOG.md | 15 ++++++++++----- Model/Configuration.php | 2 +- composer.json | 2 +- 3 files changed, 12 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ea6d46c3..b8f2942c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,23 +7,27 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] -## [1.9.3] - 2022-4-13 +## [1.9.4] - 2022-05-02 +- Fix issue with scoped address validation +- Fix issue with scoped sales order sync button + +## [1.9.3] - 2022-04-13 - Fix nexus sync address duplication bug - Fix sales order item PTC bug for configurable products - Fix scoped refund sync observer bug - Refactor tax calculation with request setter method -## [1.9.2] - 2022-3-23 +## [1.9.2] - 2022-03-23 - Refactor queue configuration for AMQP compatibility - Fix missing vendor dependency bug - Fix admin sales order view bug when missing order state - Fix authenticated customer's validated shipping address phone number bug -## [1.9.1] - 2022-3-10 +## [1.9.1] - 2022-03-10 - PHP 8.1 compatibility - Updates for Magento coding standards -## [1.9.0] - 2022-2-28 +## [1.9.0] - 2022-02-28 - Adds additional logging visibility in Sales Order UI - Fix Nexus region import bug for TaxJar's non-standard ISO codes - Fix transaction backfill CLI command's date input bug @@ -276,7 +280,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - **Initial release of our Magento 2 extension.** Sales tax calculations at checkout with backup zip-based rates powered by TaxJar. Supports product exemptions, shipping taxability, sourcing logic, and international calculations in more than 30 countries. - **Special promo sales tax calculations for Magento merchants.** Existing M2 beta users must upgrade to this version to receive special promo calculations at checkout using our new API endpoint. -[Unreleased]: https://github.com/taxjar/taxjar-magento2-extension/compare/v1.9.3..HEAD +[Unreleased]: https://github.com/taxjar/taxjar-magento2-extension/compare/v1.9.4..HEAD +[1.9.4]: https://github.com/taxjar/taxjar-magento2-extension/compare/v1.9.3...v1.9.4 [1.9.3]: https://github.com/taxjar/taxjar-magento2-extension/compare/v1.9.2...v1.9.3 [1.9.2]: https://github.com/taxjar/taxjar-magento2-extension/compare/v1.9.1...v1.9.2 [1.9.1]: https://github.com/taxjar/taxjar-magento2-extension/compare/v1.9.0...v1.9.1 diff --git a/Model/Configuration.php b/Model/Configuration.php index 93f5e399..d84f1016 100644 --- a/Model/Configuration.php +++ b/Model/Configuration.php @@ -24,7 +24,7 @@ class Configuration { - const TAXJAR_VERSION = '1.9.3'; + const TAXJAR_VERSION = '1.9.4'; const TAXJAR_AUTH_URL = 'https://app.taxjar.com'; const TAXJAR_API_URL = 'https://api.taxjar.com/v2'; const TAXJAR_SANDBOX_API_URL = 'https://api.sandbox.taxjar.com/v2'; diff --git a/composer.json b/composer.json index 7141861a..3b36a512 100644 --- a/composer.json +++ b/composer.json @@ -2,7 +2,7 @@ "name": "taxjar/module-taxjar", "description": "TaxJar Sales Tax Module for Magento 2", "type": "magento2-module", - "version": "1.9.3", + "version": "1.9.4", "license": "OSL-3.0", "require": { "magento/framework": "^102.0.0|^103.0.0"