-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
# [10.0.0](9.0.0...10.0.0) (2024-04-07) ### Bug Fixes * load node-fetch and mime on start ([01a39dd](01a39dd)) * throw if the gateway response body is null ([32bcd95](32bcd95)) * update all dependencies ([7b833ff](7b833ff)) * use mime from the container in the statics controller ([033b15c](033b15c)) * use node-fetch from the container in the http service ([f8237e4](f8237e4)) * use ts-async-import ([95cf29b](95cf29b)) ### BREAKING CHANGES * The HTTP service change its 'inject' options in order to include 'node-fetch'. * StaticsController changed its 'inject' options in order to include 'mime'.
- Loading branch information
1 parent
f33dccf
commit 84830b0
Showing
2 changed files
with
32 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
"name": "jimpex", | ||
"description": "Express as dependency injection container.", | ||
"homepage": "https://homer0.github.io/jimpex/", | ||
"version": "9.0.0", | ||
"version": "10.0.0", | ||
"repository": "homer0/jimpex", | ||
"author": "Leonardo Apiwan (@homer0) <[email protected]>", | ||
"license": "MIT", | ||
|
@@ -17,18 +17,21 @@ | |
"@homer0/package-info": "^3.0.4", | ||
"@homer0/path-utils": "^3.0.4", | ||
"@homer0/root-file": "^3.0.4", | ||
"@homer0/ts-async-import": "^1.1.3", | ||
"@homer0/simple-logger": "^3.0.4", | ||
"@homer0/simple-config": "^3.0.4", | ||
"express": "^4.19.2", | ||
"@homer0/simple-logger": "^3.0.4", | ||
"@homer0/ts-async-import": "^1.1.3", | ||
"@semantic-release/changelog": "^6.0.3", | ||
"@semantic-release/git": "^10.0.1", | ||
"body-parser": "^1.20.2", | ||
"compression": "^1.7.4", | ||
"express": "^4.19.2", | ||
"mime": "^4.0.1", | ||
"multer": "1.4.5-lts.1", | ||
"node-fetch": "^3.3.2", | ||
"urijs": "^1.19.11", | ||
"semantic-release": "^23.0.7", | ||
"spdy": "^4.0.2", | ||
"statuses": "^2.0.1", | ||
"multer": "1.4.5-lts.1", | ||
"mime": "^4.0.1", | ||
"spdy": "^4.0.2" | ||
"urijs": "^1.19.11" | ||
}, | ||
"devDependencies": { | ||
"@commitlint/cli": "^19.2.1", | ||
|
@@ -47,11 +50,11 @@ | |
"@types/statuses": "^2.0.5", | ||
"@types/urijs": "^1.19.25", | ||
"eslint": "^8.57.0", | ||
"husky": "^9.0.11", | ||
"is-ci": "^3.0.1", | ||
"jest": "^29.7.0", | ||
"leasot": "^13.3.0", | ||
"lint-staged": "^15.2.2", | ||
"husky": "^9.0.11", | ||
"ts-jest": "^29.1.2", | ||
"ts-node-dev": "^2.0.0", | ||
"tsup": "^8.0.2", | ||
|