Skip to content

Commit

Permalink
Release v7.8.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Mercado Pago committed Nov 7, 2024
1 parent bb1f5cb commit 3f0582e
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 15 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [7.8.2] - 2024-11-07
### Fixed
- **Initializing array for transaction listItems** to fix acessing not initialized property.

## [7.8.1] - 2024-10-07

### Added
Expand Down
4 changes: 4 additions & 0 deletions changelog.log
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
CHANGELOG:
== Changelog ==

= v7.8.2 (07/11/2024) =
* Fixed:
- Initializing array for transaction listItems to fix acessing not initialized property.

= v7.8.1 (07/10/2024) =
* Added:
- Silence is golden directive implemented to enhance security for WordPress sites.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "woocommerce-mercadopago",
"description": "Woocommerce MercadoPago Payment Gateway",
"version": "7.8.1",
"version": "7.8.2",
"main": "main.js",
"repository": {
"type": "git",
Expand Down
14 changes: 3 additions & 11 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Tags: ecommerce, mercadopago, woocommerce
Requires at least: 6.3
Tested up to: 6.6
Requires PHP: 7.4
Stable tag: 7.8.1
Stable tag: 7.8.2
License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -135,16 +135,8 @@ Set up both the plugin and the checkouts you want to activate on your payment av
Check out our <a href="https://www.mercadopago.com.br/developers/pt/plugins_sdks/plugins/official/woo-commerce/">official documentation</a> for more information on the specific fields to configure.

== Changelog ==
= v7.8.1 (07/10/2024) =
* Added:
- Silence is golden directive implemented to enhance security for WordPress sites.

* Changed:
- Modified the way asset's are loaded into the store.
- Sending new field to get the plugin version from the stores to improve onboarding.

= v7.8.2 (07/11/2024) =
* Fixed:
- Resolved issues with loading minified CSS and JS files in debugging environments.
- Refined translations for ES-all languages.
- Initializing array for transaction listItems to fix acessing not initialized property.

[See changelog for all versions](https://github.com/mercadopago/cart-woocommerce/blob/main/CHANGELOG.md).
2 changes: 1 addition & 1 deletion src/Transactions/AbstractTransaction.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ abstract class AbstractTransaction

protected float $orderTotal;

protected array $listOfItems;
protected array $listOfItems = [];

/**
* Abstract Transaction constructor
Expand Down
2 changes: 1 addition & 1 deletion src/WoocommerceMercadoPago.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@

class WoocommerceMercadoPago
{
private const PLUGIN_VERSION = '7.8.1';
private const PLUGIN_VERSION = '7.8.2';

private const PLUGIN_MIN_PHP = '7.4';

Expand Down
2 changes: 1 addition & 1 deletion woocommerce-mercadopago.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Plugin Name: Mercado Pago
* Plugin URI: https://github.com/mercadopago/cart-woocommerce
* Description: Configure the payment options and accept payments with cards, ticket and money of Mercado Pago account.
* Version: 7.8.1
* Version: 7.8.2
* Author: Mercado Pago
* Author URI: https://developers.mercadopago.com/
* Text Domain: woocommerce-mercadopago
Expand Down

0 comments on commit 3f0582e

Please sign in to comment.