Skip to content

Commit fbaac90

Browse files
harli91Ivascu Madalin
andauthored
v1.45.1 (#726)
Co-authored-by: Ivascu Madalin <madalin.ivascu@arnia.ro>
1 parent c1b23e9 commit fbaac90

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

Service/Software/Data.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ class Data
3535
const MODULE_CODE = 'Buckaroo_Magento2';
3636

3737
/** Version of Module */
38-
const BUCKAROO_VERSION = '1.45.0';
38+
const BUCKAROO_VERSION = '1.45.1';
3939

4040
/** @var ProductMetadataInterface */
4141
private $productMetadata;

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "buckaroo/magento2",
33
"description": "Buckaroo Magento 2 extension",
44
"require": {
5-
"php": "~7.4.0||~8.1.0",
5+
"php": "~7.4.0||~8.1.0||~8.2.0",
66
"magento/module-payment": "100.3.*|100.4.*",
77
"magento/framework": ">=102.0.0|>=103.0.0"
88
},
@@ -22,7 +22,7 @@
2222
"docs": "https://support.buckaroo.nl"
2323
},
2424
"homepage": "https://www.buckaroo.nl",
25-
"version" : "v1.45.0",
25+
"version" : "v1.45.1",
2626
"minimum-stability": "stable",
2727
"autoload": {
2828
"files": [

etc/module.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
*/
2121
-->
2222
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Buckaroo_Magento2:etc/buckaroo_module.xsd">
23-
<module name="Buckaroo_Magento2" setup_version="1.45.0" build_number="1769" stability="stable">
23+
<module name="Buckaroo_Magento2" setup_version="1.45.1" build_number="1769" stability="stable">
2424
<sequence>
2525
<module name="Magento_Payment"/>
2626
<module name="Magento_ReleaseNotification"/>

view/frontend/web/js/view/payment/method-renderer/voucher.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ define(
118118
}
119119
self.messageContainer.addSuccessMessage({ 'message': $t(data.message) });
120120
}
121-
}).error((err) => {
121+
}).fail((err) => {
122122
if (err.responseJSON && err.responseJSON.message) {
123123
self.displayErrorModal(self, err.responseJSON.message);
124124
self.selectPaymentMethod();

view/frontend/web/js/view/payment/save-payment.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ define(
131131
*/
132132
getTotals([]);
133133
}
134-
).error(
134+
).fail(
135135
function () {
136136
totals.isLoading(false);
137137
}

0 commit comments

Comments
 (0)