Skip to content

Commit

Permalink
chore(release): 10.0.0 [skip ci]
Browse files Browse the repository at this point in the history
# [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
semantic-release-bot committed Apr 7, 2024
1 parent f33dccf commit 84830b0
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 9 deletions.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)


Expand Down
21 changes: 12 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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",
Expand All @@ -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",
Expand Down

0 comments on commit 84830b0

Please sign in to comment.