Skip to content

Commit 13032ca

Browse files
update sdk version
1 parent 692bb60 commit 13032ca

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

CHANGELOG.MD

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,15 @@
11
# Releases
22

3+
## VERSION 2.3.0
4+
5+
- Add `X-Test-Token` header to request options
6+
37
## VERSION 2.2.0
8+
49
- Include `network_transaction_data` in `forward_data` in Payment
510

611
## VERSION 2.1.1
12+
713
- Fix `X-Expand-Responde-Nodes` header to request options
814

915
## VERSION 2.1.0

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mercadopago",
3-
"version": "2.2.0",
3+
"version": "2.3.0",
44
"description": "Mercadopago SDK for Node.js",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",

src/utils/config/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export class AppConfig {
55
static readonly BASE_URL = 'https://api.mercadopago.com';
66
static readonly PRODUCT_ID = 'bc32b6ntrpp001u8nhkg';
77

8-
static SDK_VERSION = '2.2.0';
8+
static SDK_VERSION = '2.3.0';
99

1010
static readonly Headers = {
1111
AUTHORIZATION: 'Authorization',

src/utils/restClient/restClient.spec.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,6 @@ describe('RestClient', () => {
109109
cardValidation: 'card_validation',
110110
meliSessionId: 'device_id',
111111
testToken: true,
112-
113112
});
114113

115114
expect(fetch).toHaveBeenCalledWith(expect.any(String), {

0 commit comments

Comments
 (0)