Skip to content

Commit a0e4ec0

Browse files
chore: release v1.9.0
1 parent 20cdc26 commit a0e4ec0

File tree

3 files changed

+26
-2
lines changed

3 files changed

+26
-2
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".":"1.8.1"
2+
".": "1.9.0"
33
}

CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Changelog
2+
3+
## [1.9.0](https://github.com/nodejs/import-in-the-middle/compare/import-in-the-middle-v1.8.1...import-in-the-middle-v1.9.0) (2024-07-08)
4+
5+
6+
### Features
7+
8+
* Add `Hook` named export ([#88](https://github.com/nodejs/import-in-the-middle/issues/88)) ([fb0e393](https://github.com/nodejs/import-in-the-middle/commit/fb0e393529832a9e3cad123d5048c9add4b477d0))
9+
* Allow passing of `include` or `exclude` list via `module.register()` ([#124](https://github.com/nodejs/import-in-the-middle/issues/124)) ([381f48c](https://github.com/nodejs/import-in-the-middle/commit/381f48c07ff755e88495f688c75c4912926194c7))
10+
11+
12+
### Bug Fixes
13+
14+
* `parentResolve` is not a function ([#100](https://github.com/nodejs/import-in-the-middle/issues/100)) ([a8b39f7](https://github.com/nodejs/import-in-the-middle/commit/a8b39f799bfba887d17433dd2b1a16c2f5d69849)), closes [#99](https://github.com/nodejs/import-in-the-middle/issues/99)
15+
* CJS `require('.')` resolution ([#108](https://github.com/nodejs/import-in-the-middle/issues/108)) ([29c77b5](https://github.com/nodejs/import-in-the-middle/commit/29c77b560aec0429154632c950923d12db36f79e))
16+
* CommonJs bare specifier resolution ([#96](https://github.com/nodejs/import-in-the-middle/issues/96)) ([29f51f6](https://github.com/nodejs/import-in-the-middle/commit/29f51f676393dbf4151e835da890232f3d1ab95b))
17+
* Explicitly named exports should be exported over `export *` ([#103](https://github.com/nodejs/import-in-the-middle/issues/103)) ([1c6f7b0](https://github.com/nodejs/import-in-the-middle/commit/1c6f7b07f10480e3e978b7ccc687d37d4087b29c)), closes [#102](https://github.com/nodejs/import-in-the-middle/issues/102)
18+
* Fallback to `parentLoad` if parsing fails ([#104](https://github.com/nodejs/import-in-the-middle/issues/104)) ([88605a7](https://github.com/nodejs/import-in-the-middle/commit/88605a707a63af9797986aa6a100161fe02aace6)), closes [#101](https://github.com/nodejs/import-in-the-middle/issues/101)
19+
* Handle cyclical reference to current file ([#83](https://github.com/nodejs/import-in-the-middle/issues/83)) ([0d9f351](https://github.com/nodejs/import-in-the-middle/commit/0d9f351c8912cdcf7b0cf4813d140d6dec78fa7a)), closes [#82](https://github.com/nodejs/import-in-the-middle/issues/82)
20+
* handling of default and star exports ([#85](https://github.com/nodejs/import-in-the-middle/issues/85)) ([74124e9](https://github.com/nodejs/import-in-the-middle/commit/74124e90f40c33d6c72f992274010b933bead4ba))
21+
* Include source url for parsing failures ([#109](https://github.com/nodejs/import-in-the-middle/issues/109)) ([49d69ba](https://github.com/nodejs/import-in-the-middle/commit/49d69ba9e785d4b6a1b38d7da1293cb744b6d7e3))
22+
* Named export `Hook` missing from types ([#92](https://github.com/nodejs/import-in-the-middle/issues/92)) ([c87090d](https://github.com/nodejs/import-in-the-middle/commit/c87090dde3b2333d8156cbf88a0cb0fb848baacc))
23+
* Resolve re-exports of external modules ([#78](https://github.com/nodejs/import-in-the-middle/issues/78)) ([bf3a4fb](https://github.com/nodejs/import-in-the-middle/commit/bf3a4fbb0b0a4fd806aefb8d2a598894303a0ebf))
24+
* Use `process.emitWarning` to log wrapping errors ([#114](https://github.com/nodejs/import-in-the-middle/issues/114)) ([a3778ac](https://github.com/nodejs/import-in-the-middle/commit/a3778acfbe2220ce5d521232b41da23b4383e1e3))

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "import-in-the-middle",
3-
"version": "1.8.1",
3+
"version": "1.9.0",
44
"description": "Intercept imports in Node.js",
55
"main": "index.js",
66
"scripts": {

0 commit comments

Comments
 (0)