Skip to content

Commit

Permalink
Merge pull request #92 from TransbankDevelopers/chore/prepare-release…
Browse files Browse the repository at this point in the history
…-5.0.0

Prepare Release 5.0.0
  • Loading branch information
tribiec authored Feb 2, 2024
2 parents cfe324c + f0125a2 commit 2b296a4
Show file tree
Hide file tree
Showing 5 changed files with 2,434 additions and 4,650 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [11.x, 12.x, 13.x, 14.x]
node-version: [18.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
Expand All @@ -41,8 +41,6 @@ jobs:
fetch-depth: 0
- name: Install dependencies
run: npm install
- name: Test and coverage
run: npm run test:coverage
- name: SonarCloud Scan
uses: sonarsource/sonarcloud-github-action@master
env:
Expand All @@ -56,7 +54,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['11.x']
node-version: ['18.x']
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
Expand Down
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,20 @@ Todos los cambios notables a este proyecto serán docuemntados en este archivo.
El formato está basado en [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
y este proyecto adhiere a [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [5.0.0] - 2024-03-01

### Changed

- Downgrade del API de la versión 1.3 a la versión 1.2
- Se actualizó Node.js a la versión 18
- Se agregó timeout configurable a todas las peticiones en la clase Options.
- Se actualizó la librería 'axios' versión '1.6.4' a versión '1.6.5'
- Se actualizó la librería 'jest' versión '27.4.4' a versión '29.7.0'
- Se actualizó la librería 'ts-jest' versión '27.1.1' a versión '29.1.2'
- Se actualizó la librería 'typedoc' versión '0.22.12' a versión '0.25.7'
- Se actualizó la librería 'typescript' versión '4.1.4' a versión '5.3.3'
- Se actualizó la librería '@types/jest' versión '27.0.0' a versión '29.5.11'

## [4.0.0] - 2022-08-29

### Changed
Expand Down
5 changes: 3 additions & 2 deletions jest.config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
module.exports = {
preset: 'ts-jest',
testEnvironment: 'node',
};
testEnvironment: 'node'
};

Loading

0 comments on commit 2b296a4

Please sign in to comment.