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' },