Skip to content

Commit 96bd30b

Browse files
committed
20.3.2 MNB-532 Fix use long zip option
1 parent 3fb96e8 commit 96bd30b

File tree

14 files changed

+164
-16
lines changed

14 files changed

+164
-16
lines changed

CHANGELOG-PUBLIC.MD

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
# Change Log
2+
All notable changes to this project will be documented in this file.
3+
This project adheres to Semantic Versioning(http://semver.org/).
4+
5+
## 1.0.0
6+
Initial Release
7+
8+
## 1.0.1
9+
SHQ16-2072 address autocomplete changes
10+
11+
## 1.0.2
12+
SHQ16-2072 address autocomplete changes
13+
14+
## 1.0.3
15+
SHQ16-2112 support for address elements specific to New York, UK and Sweden
16+
17+
## 1.0.4
18+
SHQ16-2150 handle no API key, increase z-index and handle apartment number
19+
20+
## 1.0.5
21+
SHQ16-2150 handle no API key, increase z-index and handle apartment number. Also changed tagged version number
22+
23+
## 20.0.5
24+
SHQ16-2150 handle no API key, increase z-index and handle apartment number. Also changed tagged version number
25+
26+
## 20.0.6
27+
SHQ16-2244 add polyfill for IE 11 issue
28+
29+
## 20.1.0
30+
SHQ16-2328 moved css for autocomplete to less file
31+
32+
## 20.1.1
33+
M2-56 code sniffer changes
34+
35+
## 20.1.2
36+
Updated README with grammar corrections
37+
38+
## 20.1.3
39+
SHQ18-65 - handle Google API authentication errors
40+
## 20.2.1 (2018-07-27)
41+
SHQ18-260 Disable Google Chrome autofill if address lookup is enabled
42+
43+
44+
## 20.3.0 (2018-12-18)
45+
Added a setting to use extended postcodes when available
46+
47+
48+
## 20.3.1 (2020-06-18)
49+
MNB-401 Fix issue with popup rendering for logged in users
50+
51+
52+
## 20.3.2 (2020-12-21)
53+
MNB-532 Fix use long zip option
54+
55+

CHANGELOG.MD

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,19 @@ Updated README with grammar corrections
3737

3838
## 20.1.3
3939
SHQ18-65 - handle Google API authentication errors
40-
4140
## 20.2.1 (2018-07-27)
4241
SHQ18-260 Disable Google Chrome autofill if address lookup is enabled
4342

43+
4444
## 20.3.0 (2018-12-18)
4545
Added a setting to use extended postcodes when available
4646

47+
4748
## 20.3.1 (2020-06-18)
48-
MNB-401 Fix rendering of popup on 2.3.4+ for logged in customers
49+
MNB-401 Fix issue with popup rendering for logged in users
50+
51+
52+
## 20.3.2 (2020-12-21)
53+
MNB-532 Fix use long zip option
54+
55+

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,7 @@ For more information see [ShipperHQ](https://shipperhq.com/magento2).
2424

2525
Compatibility
2626
-------------
27-
- Magento >= 2.2
28-
- Supports both Magento Opensource (Community) and Magento Commerce (Enterprise)
27+
- Magento >= 2.0 (Incl 2.2)
2928

3029
Installation Instructions
3130
-------------------------
@@ -68,4 +67,4 @@ See license files
6867

6968
Copyright
7069
---------
71-
Copyright (c) 2015 Zowta LLC (http://www.ShipperHQ.com)
70+
Copyright (c) 2015 Zowta LLC (http://www.ShipperHQ.com)

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "shipperhq/module-address-autocomplete",
33
"description": "ShipperHQ Address Autocomplete Tool",
44
"type": "magento2-module",
5-
"version": "20.3.1",
5+
"version": "20.3.2",
66
"license": [
77
"OSL-3.0",
88
"AFL-3.0"

src/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "shipperhq/module-address-autocomplete",
33
"description": "ShipperHQ Address Autocomplete Tool",
44
"type": "magento2-module",
5-
"version": "20.3.1",
5+
"version": "20.3.0",
66
"license": [
77
"OSL-3.0",
88
"AFL-3.0"

src/etc/frontend/di.xml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,14 @@
11
<?xml version="1.0"?>
2+
<!--
3+
~ Shipper HQ
4+
~
5+
~ @category ShipperHQ
6+
~ @package ShipperHQ_AddressAutocomplete
7+
~ @copyright Copyright (c) 2020 Zowta LTD and Zowta LLC (http://www.ShipperHQ.com)
8+
~ @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
9+
~ @author ShipperHQ Team [email protected]
10+
-->
11+
212
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd">
313
<type name="Magento\Checkout\Model\CompositeConfigProvider">
414
<arguments>
@@ -7,4 +17,4 @@
717
</argument>
818
</arguments>
919
</type>
10-
</config>
20+
</config>

src/etc/module.xml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
11
<?xml version="1.0"?>
2+
<!--
3+
~ Shipper HQ
4+
~
5+
~ @category ShipperHQ
6+
~ @package ShipperHQ_AddressAutocomplete
7+
~ @copyright Copyright (c) 2020 Zowta LTD and Zowta LLC (http://www.ShipperHQ.com)
8+
~ @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
9+
~ @author ShipperHQ Team [email protected]
10+
-->
11+
212
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd">
313
<module name="ShipperHQ_AddressAutocomplete" setup_version="0.0.1"/></config>

src/registration.php

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
<?php
2-
\Magento\Framework\Component\ComponentRegistrar::register(
2+
3+
/*
4+
* Shipper HQ
5+
*
6+
* @category ShipperHQ
7+
* @package ShipperHQ_AddressAutocomplete
8+
* @copyright Copyright (c) 2020 Zowta LTD and Zowta LLC (http://www.ShipperHQ.com)
9+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10+
* @author ShipperHQ Team [email protected]
11+
*/
12+
13+
\Magento\Framework\Component\ComponentRegistrar::register(
314
\Magento\Framework\Component\ComponentRegistrar::MODULE,
415
'ShipperHQ_AddressAutocomplete',
516
__DIR__

src/view/frontend/layout/checkout_index_index.xml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
<?xml version="1.0"?>
22

3+
<!--
4+
~ Shipper HQ
5+
~
6+
~ @category ShipperHQ
7+
~ @package ShipperHQ_AddressAutocomplete
8+
~ @copyright Copyright (c) 2020 Zowta LTD and Zowta LLC (http://www.ShipperHQ.com)
9+
~ @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10+
~ @author ShipperHQ Team [email protected]
11+
-->
12+
313
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" layout="checkout" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
414
<body>
515
<referenceBlock name="checkout.root">
@@ -19,4 +29,4 @@
1929
</arguments>
2030
</referenceBlock>
2131
</body>
22-
</page>
32+
</page>

src/view/frontend/layout/customer_address_form.xml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,14 @@
11
<?xml version="1.0"?>
2+
<!--
3+
~ Shipper HQ
4+
~
5+
~ @category ShipperHQ
6+
~ @package ShipperHQ_AddressAutocomplete
7+
~ @copyright Copyright (c) 2020 Zowta LTD and Zowta LLC (http://www.ShipperHQ.com)
8+
~ @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
9+
~ @author ShipperHQ Team [email protected]
10+
-->
11+
212
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
313
<body>
414
<referenceBlock name="customer_address_edit">

0 commit comments

Comments
 (0)