From 96bd30bb0b870d4a4d6c1cb02f701ce9501f5ad8 Mon Sep 17 00:00:00 2001 From: wsajosh Date: Mon, 21 Dec 2020 10:02:52 +0000 Subject: [PATCH] 20.3.2 MNB-532 Fix use long zip option --- CHANGELOG-PUBLIC.MD | 55 +++++++++++++++++++ CHANGELOG.MD | 11 +++- README.md | 5 +- composer.json | 2 +- src/composer.json | 2 +- src/etc/frontend/di.xml | 12 +++- src/etc/module.xml | 10 ++++ src/registration.php | 13 ++++- .../frontend/layout/checkout_index_index.xml | 12 +++- .../frontend/layout/customer_address_form.xml | 10 ++++ src/view/frontend/templates/edit.phtml | 12 +++- src/view/frontend/web/css/source/_module.less | 12 +++- src/view/frontend/web/js/autocomplete.js | 12 +++- .../frontend/web/js/google_maps_loader.js | 12 +++- 14 files changed, 164 insertions(+), 16 deletions(-) create mode 100644 CHANGELOG-PUBLIC.MD diff --git a/CHANGELOG-PUBLIC.MD b/CHANGELOG-PUBLIC.MD new file mode 100644 index 0000000..e683a03 --- /dev/null +++ b/CHANGELOG-PUBLIC.MD @@ -0,0 +1,55 @@ +# Change Log +All notable changes to this project will be documented in this file. +This project adheres to Semantic Versioning(http://semver.org/). + +## 1.0.0 +Initial Release + +## 1.0.1 +SHQ16-2072 address autocomplete changes + +## 1.0.2 +SHQ16-2072 address autocomplete changes + +## 1.0.3 +SHQ16-2112 support for address elements specific to New York, UK and Sweden + +## 1.0.4 +SHQ16-2150 handle no API key, increase z-index and handle apartment number + +## 1.0.5 +SHQ16-2150 handle no API key, increase z-index and handle apartment number. Also changed tagged version number + +## 20.0.5 +SHQ16-2150 handle no API key, increase z-index and handle apartment number. Also changed tagged version number + +## 20.0.6 +SHQ16-2244 add polyfill for IE 11 issue + +## 20.1.0 +SHQ16-2328 moved css for autocomplete to less file + +## 20.1.1 +M2-56 code sniffer changes + +## 20.1.2 +Updated README with grammar corrections + +## 20.1.3 +SHQ18-65 - handle Google API authentication errors +## 20.2.1 (2018-07-27) +SHQ18-260 Disable Google Chrome autofill if address lookup is enabled + + +## 20.3.0 (2018-12-18) +Added a setting to use extended postcodes when available + + +## 20.3.1 (2020-06-18) +MNB-401 Fix issue with popup rendering for logged in users + + +## 20.3.2 (2020-12-21) +MNB-532 Fix use long zip option + + diff --git a/CHANGELOG.MD b/CHANGELOG.MD index 83f1d6f..e683a03 100755 --- a/CHANGELOG.MD +++ b/CHANGELOG.MD @@ -37,12 +37,19 @@ Updated README with grammar corrections ## 20.1.3 SHQ18-65 - handle Google API authentication errors - ## 20.2.1 (2018-07-27) SHQ18-260 Disable Google Chrome autofill if address lookup is enabled + ## 20.3.0 (2018-12-18) Added a setting to use extended postcodes when available + ## 20.3.1 (2020-06-18) -MNB-401 Fix rendering of popup on 2.3.4+ for logged in customers +MNB-401 Fix issue with popup rendering for logged in users + + +## 20.3.2 (2020-12-21) +MNB-532 Fix use long zip option + + diff --git a/README.md b/README.md index 231f3f7..46e163d 100644 --- a/README.md +++ b/README.md @@ -24,8 +24,7 @@ For more information see [ShipperHQ](https://shipperhq.com/magento2). Compatibility ------------- -- Magento >= 2.2 -- Supports both Magento Opensource (Community) and Magento Commerce (Enterprise) +- Magento >= 2.0 (Incl 2.2) Installation Instructions ------------------------- @@ -68,4 +67,4 @@ See license files Copyright --------- -Copyright (c) 2015 Zowta LLC (http://www.ShipperHQ.com) +Copyright (c) 2015 Zowta LLC (http://www.ShipperHQ.com) \ No newline at end of file diff --git a/composer.json b/composer.json index fa9ecc4..ef04a76 100755 --- a/composer.json +++ b/composer.json @@ -2,7 +2,7 @@ "name": "shipperhq/module-address-autocomplete", "description": "ShipperHQ Address Autocomplete Tool", "type": "magento2-module", - "version": "20.3.1", + "version": "20.3.2", "license": [ "OSL-3.0", "AFL-3.0" diff --git a/src/composer.json b/src/composer.json index 62d9d77..0bfe6eb 100755 --- a/src/composer.json +++ b/src/composer.json @@ -2,7 +2,7 @@ "name": "shipperhq/module-address-autocomplete", "description": "ShipperHQ Address Autocomplete Tool", "type": "magento2-module", - "version": "20.3.1", + "version": "20.3.0", "license": [ "OSL-3.0", "AFL-3.0" diff --git a/src/etc/frontend/di.xml b/src/etc/frontend/di.xml index 901f7b2..ecaaa68 100644 --- a/src/etc/frontend/di.xml +++ b/src/etc/frontend/di.xml @@ -1,4 +1,14 @@ + + @@ -7,4 +17,4 @@ - \ No newline at end of file + diff --git a/src/etc/module.xml b/src/etc/module.xml index f7daed3..492d41a 100644 --- a/src/etc/module.xml +++ b/src/etc/module.xml @@ -1,3 +1,13 @@ + + diff --git a/src/registration.php b/src/registration.php index 658c65f..4d14908 100644 --- a/src/registration.php +++ b/src/registration.php @@ -1,5 +1,16 @@ + + @@ -19,4 +29,4 @@ - \ No newline at end of file + diff --git a/src/view/frontend/layout/customer_address_form.xml b/src/view/frontend/layout/customer_address_form.xml index e3fcd83..a8a6e2c 100644 --- a/src/view/frontend/layout/customer_address_form.xml +++ b/src/view/frontend/layout/customer_address_form.xml @@ -1,4 +1,14 @@ + + diff --git a/src/view/frontend/templates/edit.phtml b/src/view/frontend/templates/edit.phtml index 106623e..93d20b4 100644 --- a/src/view/frontend/templates/edit.phtml +++ b/src/view/frontend/templates/edit.phtml @@ -1,7 +1,13 @@