Skip to content

Commit cba09d4

Browse files
author
Mercado Pago
committed
Release v7.7.0
1 parent d57ee4e commit cba09d4

File tree

151 files changed

+12768
-10666
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

151 files changed

+12768
-10666
lines changed

CHANGELOG.md

+16-4
Original file line numberDiff line numberDiff line change
@@ -5,24 +5,36 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [7.7.0] - 2024-09-11
9+
10+
### Added
11+
- **New payment method:** Implemented Yape Gateway, now available for transactions in Peru.
12+
13+
### Changed
14+
- **Optimized packaging:** Reduced the number of assets included in the plugin's zip package to improve performance and download time.
15+
- **Code enhancement:** The code has been refactored to follow PHP 7.4 best practices by adopting Typed Properties, improving clarity and safety.
16+
17+
### Fixed
18+
- **cardForm issue resolved:** Fixed the error that appeared in the console during the loading of the `cardForm` script used in the Checkout API for cards. The loading process is now handled more efficiently, eliminating the issue.
19+
820
## [7.6.4] - 2024-07-31
9-
### Fix:
21+
### Fixed:
1022
- Prevents payment from being created if the currency conversion system fails.
1123

1224
## [7.6.3] - 2024-07-29
13-
### Fix:
25+
### Fixed:
1426
- Fix the size of the card logos at checkout.
1527
- Fix the problem of not showing the disclaimer about card fees for some countries.
1628

1729
## [7.6.2] - 2024-07-16
1830
### Added:
1931
- Added validation on user permissions to download plugin logs.
2032
- Increased plugin wordpress tested version to the latest available.
21-
### Fix:
33+
### Fixed:
2234
- Addressed an issue where discount and commission calculations were not being shown correctly on order details.
2335

2436
## [7.6.1] - 2024-06-26
25-
### Fix:
37+
### Fixed:
2638
- Addressed an funnel metrics issue
2739

2840
## [7.6.0] - 2024-06-26

assets/css/checkouts/mp-plugins-components.min.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/css/public/mp-public-components.css

+7-4
Original file line numberDiff line numberDiff line change
@@ -449,6 +449,7 @@ div div .mp-checkout-ticket-content .mp-checkout-ticket-text {
449449
text-align: center !important
450450
}
451451

452+
452453
.mp-alert-details-card {
453454
background: rgb(0 0 0/4%) !important;
454455
border-left: 4px solid #f23d4f !important;
@@ -844,9 +845,10 @@ div .mp-error {
844845
display: none;
845846
font-family: Proxima Nova, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Open Sans, Helvetica Neue, sans-serif !important;
846847
font-size: 13px !important;
847-
font-weight: 400 !important;
848+
font-weight: 500 !important;
848849
margin-bottom: 10px !important;
849-
margin-top: 4px !important
850+
margin-top: 4px !important;
851+
padding-left: 6px;
850852
}
851853

852854
.mp-helper .mp-helper-icon {
@@ -855,10 +857,11 @@ div .mp-error {
855857
border-radius: 12px;
856858
color: #fff;
857859
display: flex;
858-
height: 15px;
859860
justify-content: center;
860861
margin: 0 4px;
861-
width: 15px !important
862+
width: 12px !important;
863+
height: 12px !important;
864+
font-size: 10px !important;
862865
}
863866

864867
.mp-input-label {

assets/css/public/mp-public-components.min.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Loading
Loading
Loading

assets/images/icons/icon-yape.svg

+9
Loading
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
const CheckoutNotice = ({ message, src, icon, footerText }) => (
2+
<checkout-notice message={message} src={src} icon={icon} footer-text={footerText} />
3+
);
4+
5+
export default CheckoutNotice;
+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
const InputCode = ({ label, src, emptyErrorMessage, invalidErrorMessage, tooltipText }) => (
2+
<input-code label={label} src={src} empty-error-message={emptyErrorMessage} invalid-error-message={invalidErrorMessage} tooltip-text={tooltipText} />
3+
);
4+
5+
export default InputCode;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
const InputField = ({ labelMessage, emptyErrorMessage, invalidErrorMessage }) => (
2+
<input-field label-message={labelMessage} empty-error-message={emptyErrorMessage} invalid-error-message={invalidErrorMessage} />
3+
);
4+
5+
export default InputField;

0 commit comments

Comments
 (0)