From e160a098beeb50883cb12c7db350dd2a15afe149 Mon Sep 17 00:00:00 2001 From: Arthur Andrade Date: Thu, 7 Dec 2023 11:18:16 -0300 Subject: [PATCH 1/3] fix: Add isDisposable prop --- node/resolvers/Routes/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/node/resolvers/Routes/index.ts b/node/resolvers/Routes/index.ts index 3964768..57164c8 100644 --- a/node/resolvers/Routes/index.ts +++ b/node/resolvers/Routes/index.ts @@ -535,6 +535,7 @@ export const Routes = { address: { ...address, geoCoordinates: address.geoCoordinates ?? [], + isDisposable: true, }, clearAddressIfPostalCodeNotFound: false, }) From 913743d6171d474c74c057fef5eb9019d10cb98d Mon Sep 17 00:00:00 2001 From: Arthur Andrade Date: Thu, 7 Dec 2023 13:59:50 -0300 Subject: [PATCH 2/3] feat: Add changelog --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 18c04bd..b6bc7a8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] +### Fixed + +- Add 'isDisposable' property to create address requests, indicating whether the address is disposable to prevent duplicates. + ## [1.37.2] - 2023-11-10 ### Fixed From 4469f5f2459d3340311c41bbab28bf9a7ea1555a Mon Sep 17 00:00:00 2001 From: ArthurTriis1 <51174217+ArthurTriis1@users.noreply.github.com> Date: Thu, 7 Dec 2023 17:10:32 +0000 Subject: [PATCH 3/3] Release v1.37.3 --- CHANGELOG.md | 2 ++ manifest.json | 2 +- node/package.json | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b6bc7a8..b093a66 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] +## [1.37.3] - 2023-12-07 + ### Fixed - Add 'isDisposable' property to create address requests, indicating whether the address is disposable to prevent duplicates. diff --git a/manifest.json b/manifest.json index 62dd076..cfa112d 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "name": "storefront-permissions", "vendor": "vtex", - "version": "1.37.2", + "version": "1.37.3", "title": "Storefront Permissions", "description": "Manage User's permissions on apps that relates to this app", "mustUpdateAt": "2022-08-28", diff --git a/node/package.json b/node/package.json index 72fa722..cc0dc17 100644 --- a/node/package.json +++ b/node/package.json @@ -1,6 +1,6 @@ { "name": "vtex.checkout-ui-custom", - "version": "1.37.2", + "version": "1.37.3", "dependencies": { "@vtex/api": "6.45.19", "atob": "^2.1.2",