diff --git a/CHANGELOG.md b/CHANGELOG.md index 5ca8d4f..98910cc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,23 @@ +# [10.0.0](https://github.com/homer0/jimpex/compare/9.0.0...10.0.0) (2024-04-07) + + +### Bug Fixes + +* load node-fetch and mime on start ([01a39dd](https://github.com/homer0/jimpex/commit/01a39dd9f0e5a6300fda79ca85b771c2762470f3)) +* throw if the gateway response body is null ([32bcd95](https://github.com/homer0/jimpex/commit/32bcd95c56f236dd13e32b5025b2b02ff8fbe2c1)) +* update all dependencies ([7b833ff](https://github.com/homer0/jimpex/commit/7b833fff52971a254f25f45374373c2ec514936b)) +* use mime from the container in the statics controller ([033b15c](https://github.com/homer0/jimpex/commit/033b15cb08209b9353aa467cfdbd72fd729c491f)) +* use node-fetch from the container in the http service ([f8237e4](https://github.com/homer0/jimpex/commit/f8237e4f85490b2a473c23c591e2a9d4ae77b7f8)) +* use ts-async-import ([95cf29b](https://github.com/homer0/jimpex/commit/95cf29bc4ac80cbf7e2946c8f0d760a36c4e6bf3)) + + +### 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'. + # [9.0.0](https://github.com/homer0/jimpex/compare/8.0.0...9.0.0) (2023-10-02) diff --git a/package.json b/package.json index 9a44409..9ef95a9 100644 --- a/package.json +++ b/package.json @@ -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) ", "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",