From 466133b890bb7daa061e869f16e57227f3814cb6 Mon Sep 17 00:00:00 2001 From: John Reilly Date: Fri, 23 Apr 2021 18:57:12 +0100 Subject: [PATCH 1/3] Update CHANGELOG.md --- CHANGELOG.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0322fea5c..9c013808f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -21,6 +21,11 @@ Breaking changes: Changes: * [webpack 5 migration](https://github.com/TypeStrong/ts-loader/pull/1251) - thanks @johnnyreilly, @jonwallsten, @sokra, @appzuka, @alexander-akait +## v8.2.0 + +* [Use caches for module resolution and type reference directives when using compiler default functions](https://github.com/TypeStrong/ts-loader/pull/1287) - thanks @sheetalkamat - uses: https://github.com/microsoft/TypeScript/pull/43700 +* This is a backport from v9.1.0 for webpack 4 compatibility + ## v8.1.0 * [feat: remove top-level typescript import statements](https://github.com/TypeStrong/ts-loader/pull/1259) - thanks @ulivz From 044d59a506a136e88b4441f7db82c0649ea42b99 Mon Sep 17 00:00:00 2001 From: John Reilly Date: Fri, 23 Apr 2021 19:06:53 +0100 Subject: [PATCH 2/3] Update package.json --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 6e849b6ff..2c9cbb3ca 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ts-loader", - "version": "9.1.0", + "version": "9.1.1", "description": "TypeScript loader for webpack", "main": "index.js", "types": "dist", From fdbb22f6efda3969cb5d315b412e3eda7bc57691 Mon Sep 17 00:00:00 2001 From: John Reilly Date: Fri, 23 Apr 2021 19:09:37 +0100 Subject: [PATCH 3/3] Update CHANGELOG.md --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9c013808f..cc9619197 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## v9.1.1 + +* [update CHANGELOG.md for 8.2.0 release](https://github.com/TypeStrong/ts-loader/pull/1291) - thanks @johnnyreilly + ## v9.1.0 * [Use caches for module resolution and type reference directives when using compiler default functions](https://github.com/TypeStrong/ts-loader/pull/1287) - thanks @sheetalkamat - uses: https://github.com/microsoft/TypeScript/pull/43700