Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

5.0.0 #91

Closed
wants to merge 10 commits into from
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
Loading