diff --git a/.changeset/curly-balloons-rush.md b/.changeset/curly-balloons-rush.md deleted file mode 100644 index 1efaf25b7f..0000000000 --- a/.changeset/curly-balloons-rush.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@adyen/adyen-web': patch ---- - -Calling actions.reject() in the beforeSubmit callback should leave the UI in the current state. Fixes situation where it leads to a call to handleFailedResult which ultimately leads to a call to the onPaymentFailed callback and sets the UI to an error state diff --git a/.changeset/quiet-masks-agree.md b/.changeset/quiet-masks-agree.md deleted file mode 100644 index 932a7e3803..0000000000 --- a/.changeset/quiet-masks-agree.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@adyen/adyen-web': patch ---- - -Small optimisation to only call document.querySelector once, rather than three times diff --git a/.changeset/rotten-camels-think.md b/.changeset/rotten-camels-think.md deleted file mode 100644 index 6381324056..0000000000 --- a/.changeset/rotten-camels-think.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@adyen/adyen-web': patch ---- - -Added optional chaining operator to postMessage handler function. Fixes issue where 'get-process-message.handler.js' caused exceptions due to stray postMessages without properly formed events diff --git a/.changeset/rotten-kiwis-dream.md b/.changeset/rotten-kiwis-dream.md deleted file mode 100644 index 1b14439434..0000000000 --- a/.changeset/rotten-kiwis-dream.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@adyen/adyen-web': minor ---- - -All actions lead to a call to the onActionHandled callback. With the exception of 3DS2 actions this callback is always passed the original action object. diff --git a/.changeset/swift-rules-beam.md b/.changeset/swift-rules-beam.md deleted file mode 100644 index 232343e147..0000000000 --- a/.changeset/swift-rules-beam.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@adyen/adyen-web': minor ---- - -Export CustomTranslations type diff --git a/packages/e2e-playwright/package.json b/packages/e2e-playwright/package.json index 768128d5f3..749b48958f 100644 --- a/packages/e2e-playwright/package.json +++ b/packages/e2e-playwright/package.json @@ -26,6 +26,6 @@ "webpack-dev-server": "4.15.1" }, "dependencies": { - "@adyen/adyen-web": "6.3.0" + "@adyen/adyen-web": "6.4.0" } } diff --git a/packages/e2e/package.json b/packages/e2e/package.json index 288c113b6a..661c86127c 100644 --- a/packages/e2e/package.json +++ b/packages/e2e/package.json @@ -41,6 +41,6 @@ "whatwg-fetch": "^3.6.2" }, "dependencies": { - "@adyen/adyen-web": "6.3.0" + "@adyen/adyen-web": "6.4.0" } } diff --git a/packages/lib/CHANGELOG.md b/packages/lib/CHANGELOG.md index 34138ce486..aa5474299f 100644 --- a/packages/lib/CHANGELOG.md +++ b/packages/lib/CHANGELOG.md @@ -1,5 +1,21 @@ # @adyen/adyen-web +## 6.4.0 + +### Minor Changes + +- All actions lead to a call to the onActionHandled callback. With the exception of 3DS2 actions this callback is always passed the original action object. ([#2892](https://github.com/Adyen/adyen-web/pull/2892)) + +- Export CustomTranslations type ([#2905](https://github.com/Adyen/adyen-web/pull/2905)) + +### Patch Changes + +- Calling actions.reject() in the beforeSubmit callback should leave the UI in the current state. Fixes situation where it leads to a call to handleFailedResult which ultimately leads to a call to the onPaymentFailed callback and sets the UI to an error state ([#2901](https://github.com/Adyen/adyen-web/pull/2901)) + +- Small optimisation to only call document.querySelector once, rather than three times ([#2895](https://github.com/Adyen/adyen-web/pull/2895)) + +- Added optional chaining operator to postMessage handler function. Fixes issue where 'get-process-message.handler.js' caused exceptions due to stray postMessages without properly formed events ([#2894](https://github.com/Adyen/adyen-web/pull/2894)) + ## 6.3.0 ### Minor Changes diff --git a/packages/lib/package.json b/packages/lib/package.json index b092cb0a74..0167af17c5 100644 --- a/packages/lib/package.json +++ b/packages/lib/package.json @@ -1,6 +1,6 @@ { "name": "@adyen/adyen-web", - "version": "6.3.0", + "version": "6.4.0", "license": "MIT", "homepage": "https://docs.adyen.com/checkout", "type": "module", diff --git a/packages/playground/package.json b/packages/playground/package.json index 9b420b5bfb..87b58bbc0d 100644 --- a/packages/playground/package.json +++ b/packages/playground/package.json @@ -41,6 +41,6 @@ "whatwg-fetch": "^3.6.2" }, "dependencies": { - "@adyen/adyen-web": "6.3.0" + "@adyen/adyen-web": "6.4.0" } }