From 006440ae419845ee99c3509b524b14293ec59682 Mon Sep 17 00:00:00 2001 From: wsajosh Date: Tue, 23 Jan 2024 09:50:30 +0000 Subject: [PATCH] 20.4.6 SHQ23-1381 Remove table on module uninstall --- CHANGELOG-PUBLIC.MD | 4 ++++ CHANGELOG.MD | 4 ++++ composer.json | 2 +- src/composer.json | 2 +- src/etc/db_schema_whitelist.json | 23 +++++++++++++++++++++++ 5 files changed, 33 insertions(+), 2 deletions(-) create mode 100644 src/etc/db_schema_whitelist.json diff --git a/CHANGELOG-PUBLIC.MD b/CHANGELOG-PUBLIC.MD index 4d3c8a9..3ee6bc5 100644 --- a/CHANGELOG-PUBLIC.MD +++ b/CHANGELOG-PUBLIC.MD @@ -84,3 +84,7 @@ SHQ23-433 Better handling of zero conditions SHQ23-1431 Update readme +## 20.4.6 (2024-01-23) +SHQ23-1381 Remove table on module uninstall + + diff --git a/CHANGELOG.MD b/CHANGELOG.MD index 4d3c8a9..3ee6bc5 100755 --- a/CHANGELOG.MD +++ b/CHANGELOG.MD @@ -84,3 +84,7 @@ SHQ23-433 Better handling of zero conditions SHQ23-1431 Update readme +## 20.4.6 (2024-01-23) +SHQ23-1381 Remove table on module uninstall + + diff --git a/composer.json b/composer.json index a63be68..b4568f8 100755 --- a/composer.json +++ b/composer.json @@ -1,7 +1,7 @@ { "name": "webshopapps/module-matrixrate", "description": "Magento Shipping Multiple Table Rates - MatrixRate", - "version": "20.4.5", + "version": "20.4.6", "license": [ "OSL-3.0", "AFL-3.0" diff --git a/src/composer.json b/src/composer.json index 17016af..2f5619d 100755 --- a/src/composer.json +++ b/src/composer.json @@ -1,7 +1,7 @@ { "name": "webshopapps/module-matrixrate", "description": "Magento Shipping Multiple Table Rates - MatrixRate", - "version": "20.4.5", + "version": "20.4.6", "license": [ "OSL-3.0", "AFL-3.0" diff --git a/src/etc/db_schema_whitelist.json b/src/etc/db_schema_whitelist.json new file mode 100644 index 0000000..bcabc9f --- /dev/null +++ b/src/etc/db_schema_whitelist.json @@ -0,0 +1,23 @@ +{ + "webshopapps_matrixrate": { + "column": { + "pk": true, + "website_id": true, + "dest_country_id": true, + "dest_region_id": true, + "dest_city": true, + "dest_zip": true, + "dest_zip_to": true, + "condition_name": true, + "condition_from_value": true, + "condition_to_value": true, + "price": true, + "cost": true, + "shipping_method": true + }, + "constraint": { + "PRIMARY": true, + "UNQ_1F88ACC89F513C4E6FE1FEEAD343B921": true + } + } +}