Skip to content
This repository was archived by the owner on May 28, 2023. It is now read-only.

Commit fe9d783

Browse files
Merge pull request #255 from DivanteLtd/release/v1.9
Release v1.9.3
2 parents deb73a8 + 28bd46f commit fe9d783

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [1.9.3] - 2019.05.27
8+
- Change min postal code length in user profile to 3 so it's sames as in orders - @lukeromanowicz (#253)
9+
710
## [1.9.2] - 2019.05.20
811
- Fix failing o2m when parsing order schema - @lukeromanowicz (#248)
912

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vue-storefront-api",
3-
"version": "1.9.0",
3+
"version": "1.9.3",
44
"private": true,
55
"description": "vue-storefront API and data services",
66
"main": "dist",

src/models/userProfile.schema.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
},
7171
"postcode": {
7272
"type": "string",
73-
"minLength": 5
73+
"minLength": 3
7474
},
7575
"company": {
7676
"type": "string",
@@ -113,4 +113,4 @@
113113
}
114114
}
115115
}
116-
}
116+
}

0 commit comments

Comments
 (0)