Skip to content
This repository has been archived by the owner on Jul 24, 2024. It is now read-only.

Commit

Permalink
Merge pull request #101 from panxl6/master
Browse files Browse the repository at this point in the history
fix #97
  • Loading branch information
Bossa573 authored Dec 18, 2023
2 parents 9a47266 + 6c2d217 commit 6a8c62d
Show file tree
Hide file tree
Showing 4 changed files with 974 additions and 1,380 deletions.
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,11 @@ 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.1.0] 2023-12-20
## [8.0.0] 2023-12-18
### Breaking Changes
- change ApiError.code type to number|null.
- #98 fix AftershipError.code type not number
- upgrade axios library to 1.6.0 version
- upgrade jest library to 29.0.0 version

## [7.0.6] 2023-05-18
### Added
Expand Down
4 changes: 3 additions & 1 deletion jest.config.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
module.exports = {
testEnvironment: 'node'
testEnvironment: 'node',
coverageDirectory: "./coverage/",
collectCoverage: true,
};
16 changes: 6 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "aftership",
"description": "node.js SDK for AfterShip API",
"version": "7.0.7",
"version": "8.0.0",
"homepage": "https://github.com/aftership/aftership-sdk-nodejs",
"author": {
"name": "AfterShip",
Expand All @@ -27,16 +27,16 @@
"test": "jest"
},
"dependencies": {
"axios": "^0.22.0",
"uuid": "^8.3.2",
"debug": "^4.3.2"
"axios": "^1.6.0",
"debug": "^4.3.2",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/debug": "^4.1.7",
"@types/node": "^14.14.25",
"@types/uuid": "^8.3.1",
"axios-mock-adapter": "^1.20.0",
"jest": "^27.2.4",
"jest": "^29.0.0",
"pre-commit": "^1.2.2",
"shx": "^0.3.3",
"ts-node": "^10.2.1",
Expand All @@ -51,9 +51,5 @@
"pre-commit": [
"lint"
],
"private": false,
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true
}
"private": false
}
Loading

0 comments on commit 6a8c62d

Please sign in to comment.