diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..0e968dc --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,15 @@ +# Changelog + +## [1.9.0](https://github.com/nodejs/import-in-the-middle/compare/v1.8.1...v1.9.0) (2024-07-05) + + +### Features + +* 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)) + + +### Bug Fixes + +* 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)) +* 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)) +* 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)) diff --git a/package.json b/package.json index bed6728..45d4a06 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "import-in-the-middle", - "version": "1.8.1", + "version": "1.9.0", "description": "Intercept imports in Node.js", "main": "index.js", "scripts": {