Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: vtex/address-form
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 9a5ece7722b8dc118f806264195b2c0b6ed82645
Choose a base ref
..
head repository: vtex/address-form
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: eaa61831297666ff1f5bb0f67f2e55816479dc9e
Choose a head ref
Showing with 20 additions and 17 deletions.
  1. +3 −0 CHANGELOG.md
  2. +17 −17 react/country/DEU.ts
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -11,6 +11,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

- New postal code for Doradal to Colombia (COL) country file.

### Fixed
- Add optionsPairs for DEU to complain with checkout autocomplete.

## [3.38.0] - 2024-10-30

### Fixed
34 changes: 17 additions & 17 deletions react/country/DEU.ts
Original file line number Diff line number Diff line change
@@ -72,23 +72,23 @@ const rules: PostalCodeRules = {
label: 'province',
required: true,
optionsCaption: '',
options: [
'Baden-Württemberg',
'Bayern',
'Berlin',
'Brandenburg',
'Bremen',
'Hamburg',
'Hessen',
'Mecklenburg-Vorpommern',
'Niedersachsen',
'Nordrhein-Westfalen',
'Rheinland-Pfalz',
'Saarland',
'Sachsen',
'Sachsen-Anhalt',
'Schleswig-Holstein',
'Thüringen',
optionsPairs: [
{ label: 'Baden-Württemberg', value: 'BW' },
{ label: 'Bayern', value: 'BY' },
{ label: 'Berlin', value: 'BE' },
{ label: 'Brandenburg', value: 'BB' },
{ label: 'Bremen', value: 'HB' },
{ label: 'Hamburg', value: 'HH' },
{ label: 'Hessen', value: 'HE' },
{ label: 'Mecklenburg-Vorpommern', value: 'MV' },
{ label: 'Niedersachsen', value: 'NI' },
{ label: 'Nordrhein-Westfalen', value: 'NW' },
{ label: 'Rheinland-Pfalz', value: 'RP' },
{ label: 'Saarland', value: 'SL' },
{ label: 'Sachsen', value: 'SN' },
{ label: 'Sachsen-Anhalt', value: 'ST' },
{ label: 'Schleswig-Holstein', value: 'SH' },
{ label: 'Thüringen', value: 'TH' },
],
size: 'large',
},