From b1071b1eb7c551ec7bed8468c82e6f2dd5de7c7c Mon Sep 17 00:00:00 2001 From: sheilagomes Date: Fri, 6 Oct 2023 15:39:42 -0300 Subject: [PATCH 1/3] Fix NZL geolocation --- CHANGELOG.md | 4 ++++ react/country/NZL.ts | 5 ++++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 783c52ef..c06bd485 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ### Fixed +- New Zealand geolocation to include neighborhood. + +### Fixed + - Ecuador postal code settings to be more granular and show the cities list during check-out. ## [3.34.6] - 2023-08-24 diff --git a/react/country/NZL.ts b/react/country/NZL.ts index eb655336..5c6aa5f3 100644 --- a/react/country/NZL.ts +++ b/react/country/NZL.ts @@ -131,7 +131,10 @@ const rules: PostalCodeRules = { }, }, summary: [ - [{ name: 'complement' }, { delimiter: ' ', name: 'street' }], + [{ name: 'complement' }, + { delimiter: ' ', name: 'street' }, + { delimiter: ' ', name: 'neighborhood' }, + ], [ { name: 'city' }, { delimiter: ', ', name: 'state' }, From c7b7e08090d47581f34bf539fe57f04141ed7873 Mon Sep 17 00:00:00 2001 From: Jefferson Date: Mon, 9 Oct 2023 13:28:03 -0300 Subject: [PATCH 2/3] Release v3.34.7 --- CHANGELOG.md | 2 ++ manifest.json | 6 ++---- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c06bd485..033e3ca1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] +## [3.34.7] - 2023-10-09 + ### Fixed - New Zealand geolocation to include neighborhood. diff --git a/manifest.json b/manifest.json index 711967d2..053a08a1 100644 --- a/manifest.json +++ b/manifest.json @@ -1,15 +1,13 @@ { "name": "address-form", "vendor": "vtex", - "version": "3.34.6", + "version": "3.34.7", "title": "address-form React component", "description": "address-form React component", "defaultLocale": "en", "mustUpdateAt": "2019-01-08", "categories": [], - "registries": [ - "smartcheckout" - ], + "registries": ["smartcheckout"], "settingsSchema": {}, "dependencies": { "vtex.checkout": "0.x", From aa2087f0724576fed518e734d9ed0e850a3eeae5 Mon Sep 17 00:00:00 2001 From: Jefferson Date: Mon, 9 Oct 2023 14:00:13 -0300 Subject: [PATCH 3/3] Trigger ci-cd IO bot