From fb87ad9b26acef38eb117e26e9fb41cc6e13ce96 Mon Sep 17 00:00:00 2001 From: TypeScript Bot Date: Wed, 5 Jun 2024 15:10:32 -0700 Subject: [PATCH] Version Packages (#3141) Co-authored-by: github-actions[bot] --- .changeset/breezy-gifts-fly.md | 5 ----- .changeset/cool-parrots-work.md | 5 ----- .changeset/gold-pears-flow.md | 5 ----- .changeset/rich-cycles-leave.md | 5 ----- .changeset/serious-monkeys-sin.md | 5 ----- .changeset/silver-kangaroos-exist.md | 5 ----- .changeset/twenty-ravens-attend.md | 8 -------- .changeset/wicked-mice-pretend.md | 5 ----- packages/ata/CHANGELOG.md | 10 ++++++++++ packages/ata/package.json | 2 +- packages/sandbox/CHANGELOG.md | 10 ++++++++++ packages/sandbox/package.json | 2 +- packages/ts-twoslasher/CHANGELOG.md | 9 +++++++++ packages/ts-twoslasher/package.json | 2 +- packages/typescript-vfs/CHANGELOG.md | 16 ++++++++++++++++ packages/typescript-vfs/package.json | 2 +- 16 files changed, 49 insertions(+), 47 deletions(-) delete mode 100644 .changeset/breezy-gifts-fly.md delete mode 100644 .changeset/cool-parrots-work.md delete mode 100644 .changeset/gold-pears-flow.md delete mode 100644 .changeset/rich-cycles-leave.md delete mode 100644 .changeset/serious-monkeys-sin.md delete mode 100644 .changeset/silver-kangaroos-exist.md delete mode 100644 .changeset/twenty-ravens-attend.md delete mode 100644 .changeset/wicked-mice-pretend.md diff --git a/.changeset/breezy-gifts-fly.md b/.changeset/breezy-gifts-fly.md deleted file mode 100644 index 2a16dd647b79..000000000000 --- a/.changeset/breezy-gifts-fly.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@typescript/vfs": patch ---- - -Fix the exception when file content is empty diff --git a/.changeset/cool-parrots-work.md b/.changeset/cool-parrots-work.md deleted file mode 100644 index 7613d9dc447b..000000000000 --- a/.changeset/cool-parrots-work.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@typescript/ata": patch ---- - -Widen typescript peer dependency range diff --git a/.changeset/gold-pears-flow.md b/.changeset/gold-pears-flow.md deleted file mode 100644 index 637183811187..000000000000 --- a/.changeset/gold-pears-flow.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@typescript/vfs": patch ---- - -Fix `moduleDetection` compiler option is not working diff --git a/.changeset/rich-cycles-leave.md b/.changeset/rich-cycles-leave.md deleted file mode 100644 index 228e05002530..000000000000 --- a/.changeset/rich-cycles-leave.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@typescript/vfs": patch ---- - -support non-hoisted `node_module` structure diff --git a/.changeset/serious-monkeys-sin.md b/.changeset/serious-monkeys-sin.md deleted file mode 100644 index ba6376962d08..000000000000 --- a/.changeset/serious-monkeys-sin.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@typescript/vfs": patch ---- - -Fix missing typescript peer dependency diff --git a/.changeset/silver-kangaroos-exist.md b/.changeset/silver-kangaroos-exist.md deleted file mode 100644 index 30fc0f08ebcd..000000000000 --- a/.changeset/silver-kangaroos-exist.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@typescript/vfs": patch ---- - -Don't depend on DOM types in createDefaultMapFromCDN diff --git a/.changeset/twenty-ravens-attend.md b/.changeset/twenty-ravens-attend.md deleted file mode 100644 index e3e46aa2f226..000000000000 --- a/.changeset/twenty-ravens-attend.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -"@typescript/vfs": patch -"@typescript/twoslash": patch -"@typescript/sandbox": patch -"@typescript/ata": patch ---- - -Handle `.d.cts` and `.d.mts` files diff --git a/.changeset/wicked-mice-pretend.md b/.changeset/wicked-mice-pretend.md deleted file mode 100644 index 3d2a4b7f35bc..000000000000 --- a/.changeset/wicked-mice-pretend.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@typescript/ata": patch ---- - -Fix return type of `setupTypeAcquisition` diff --git a/packages/ata/CHANGELOG.md b/packages/ata/CHANGELOG.md index 62857f59e142..01263854799b 100644 --- a/packages/ata/CHANGELOG.md +++ b/packages/ata/CHANGELOG.md @@ -1,5 +1,15 @@ # @typescript/ata +## 0.9.6 + +### Patch Changes + +- [#2977](https://github.com/microsoft/TypeScript-Website/pull/2977) [`7691811`](https://github.com/microsoft/TypeScript-Website/commit/7691811c180e3b352cf4e888387d1edfc10f5252) Thanks [@curran](https://github.com/curran)! - Widen typescript peer dependency range + +- [#3000](https://github.com/microsoft/TypeScript-Website/pull/3000) [`71776ae`](https://github.com/microsoft/TypeScript-Website/commit/71776aecc1b56289ab56d240a9272ce83686ef1a) Thanks [@antfu](https://github.com/antfu)! - Handle `.d.cts` and `.d.mts` files + +- [#3002](https://github.com/microsoft/TypeScript-Website/pull/3002) [`fd776c0`](https://github.com/microsoft/TypeScript-Website/commit/fd776c05bb8fa9c897d18fa237af39ae8da03a7c) Thanks [@antfu](https://github.com/antfu)! - Fix return type of `setupTypeAcquisition` + ## 0.9.5 ### Patch Changes diff --git a/packages/ata/package.json b/packages/ata/package.json index b52710409941..29092cee31b0 100644 --- a/packages/ata/package.json +++ b/packages/ata/package.json @@ -1,6 +1,6 @@ { "name": "@typescript/ata", - "version": "0.9.5", + "version": "0.9.6", "license": "MIT", "homepage": "https://github.com/microsoft/TypeScript-Website", "repository": { diff --git a/packages/sandbox/CHANGELOG.md b/packages/sandbox/CHANGELOG.md index a57e710adca2..b3f1fa631774 100644 --- a/packages/sandbox/CHANGELOG.md +++ b/packages/sandbox/CHANGELOG.md @@ -1,5 +1,15 @@ # @typescript/sandbox +## 0.1.5 + +### Patch Changes + +- [#3000](https://github.com/microsoft/TypeScript-Website/pull/3000) [`71776ae`](https://github.com/microsoft/TypeScript-Website/commit/71776aecc1b56289ab56d240a9272ce83686ef1a) Thanks [@antfu](https://github.com/antfu)! - Handle `.d.cts` and `.d.mts` files + +- Updated dependencies [[`0ea84b5`](https://github.com/microsoft/TypeScript-Website/commit/0ea84b59ae291aba677fe77ca059c4112e45fb9b), [`7691811`](https://github.com/microsoft/TypeScript-Website/commit/7691811c180e3b352cf4e888387d1edfc10f5252), [`0ea84b5`](https://github.com/microsoft/TypeScript-Website/commit/0ea84b59ae291aba677fe77ca059c4112e45fb9b), [`6168ef4`](https://github.com/microsoft/TypeScript-Website/commit/6168ef49a4d08c0b5658732d23625bbcc6049109), [`9f8dea2`](https://github.com/microsoft/TypeScript-Website/commit/9f8dea2c19a3b6028148090f5e8cba8eea086ec3), [`26f3e56`](https://github.com/microsoft/TypeScript-Website/commit/26f3e566aa8fff235a8f6927ef2c33b28be4fe89), [`71776ae`](https://github.com/microsoft/TypeScript-Website/commit/71776aecc1b56289ab56d240a9272ce83686ef1a), [`fd776c0`](https://github.com/microsoft/TypeScript-Website/commit/fd776c05bb8fa9c897d18fa237af39ae8da03a7c)]: + - @typescript/vfs@1.5.3 + - @typescript/ata@0.9.6 + ## 0.1.4 ### Patch Changes diff --git a/packages/sandbox/package.json b/packages/sandbox/package.json index cb90975d393c..487decc87c3b 100644 --- a/packages/sandbox/package.json +++ b/packages/sandbox/package.json @@ -1,6 +1,6 @@ { "name": "@typescript/sandbox", - "version": "0.1.4", + "version": "0.1.5", "license": "MIT", "author": "TypeScript team", "homepage": "https://github.com/microsoft/TypeScript-Website", diff --git a/packages/ts-twoslasher/CHANGELOG.md b/packages/ts-twoslasher/CHANGELOG.md index e80fc89cee1a..d2542d5480cd 100644 --- a/packages/ts-twoslasher/CHANGELOG.md +++ b/packages/ts-twoslasher/CHANGELOG.md @@ -1,5 +1,14 @@ # @typescript/twoslash +## 3.2.7 + +### Patch Changes + +- [#3000](https://github.com/microsoft/TypeScript-Website/pull/3000) [`71776ae`](https://github.com/microsoft/TypeScript-Website/commit/71776aecc1b56289ab56d240a9272ce83686ef1a) Thanks [@antfu](https://github.com/antfu)! - Handle `.d.cts` and `.d.mts` files + +- Updated dependencies [[`0ea84b5`](https://github.com/microsoft/TypeScript-Website/commit/0ea84b59ae291aba677fe77ca059c4112e45fb9b), [`0ea84b5`](https://github.com/microsoft/TypeScript-Website/commit/0ea84b59ae291aba677fe77ca059c4112e45fb9b), [`6168ef4`](https://github.com/microsoft/TypeScript-Website/commit/6168ef49a4d08c0b5658732d23625bbcc6049109), [`9f8dea2`](https://github.com/microsoft/TypeScript-Website/commit/9f8dea2c19a3b6028148090f5e8cba8eea086ec3), [`26f3e56`](https://github.com/microsoft/TypeScript-Website/commit/26f3e566aa8fff235a8f6927ef2c33b28be4fe89), [`71776ae`](https://github.com/microsoft/TypeScript-Website/commit/71776aecc1b56289ab56d240a9272ce83686ef1a)]: + - @typescript/vfs@1.5.3 + ## 3.2.6 ### Patch Changes diff --git a/packages/ts-twoslasher/package.json b/packages/ts-twoslasher/package.json index 0f429014fd2d..1f4bbda45b12 100755 --- a/packages/ts-twoslasher/package.json +++ b/packages/ts-twoslasher/package.json @@ -1,6 +1,6 @@ { "name": "@typescript/twoslash", - "version": "3.2.6", + "version": "3.2.7", "license": "MIT", "author": "TypeScript team", "homepage": "https://github.com/microsoft/TypeScript-Website", diff --git a/packages/typescript-vfs/CHANGELOG.md b/packages/typescript-vfs/CHANGELOG.md index 27e2c1406021..b23be4020993 100644 --- a/packages/typescript-vfs/CHANGELOG.md +++ b/packages/typescript-vfs/CHANGELOG.md @@ -1,5 +1,21 @@ # @typescript/vfs +## 1.5.3 + +### Patch Changes + +- [#3038](https://github.com/microsoft/TypeScript-Website/pull/3038) [`0ea84b5`](https://github.com/microsoft/TypeScript-Website/commit/0ea84b59ae291aba677fe77ca059c4112e45fb9b) Thanks [@xiaoxiyao](https://github.com/xiaoxiyao)! - Fix the exception when file content is empty + +- [#3038](https://github.com/microsoft/TypeScript-Website/pull/3038) [`0ea84b5`](https://github.com/microsoft/TypeScript-Website/commit/0ea84b59ae291aba677fe77ca059c4112e45fb9b) Thanks [@xiaoxiyao](https://github.com/xiaoxiyao)! - Fix `moduleDetection` compiler option is not working + +- [#3015](https://github.com/microsoft/TypeScript-Website/pull/3015) [`6168ef4`](https://github.com/microsoft/TypeScript-Website/commit/6168ef49a4d08c0b5658732d23625bbcc6049109) Thanks [@antfu](https://github.com/antfu)! - support non-hoisted `node_module` structure + +- [#3072](https://github.com/microsoft/TypeScript-Website/pull/3072) [`9f8dea2`](https://github.com/microsoft/TypeScript-Website/commit/9f8dea2c19a3b6028148090f5e8cba8eea086ec3) Thanks [@KiranJKurian](https://github.com/KiranJKurian)! - Fix missing typescript peer dependency + +- [#3140](https://github.com/microsoft/TypeScript-Website/pull/3140) [`26f3e56`](https://github.com/microsoft/TypeScript-Website/commit/26f3e566aa8fff235a8f6927ef2c33b28be4fe89) Thanks [@jakebailey](https://github.com/jakebailey)! - Don't depend on DOM types in createDefaultMapFromCDN + +- [#3000](https://github.com/microsoft/TypeScript-Website/pull/3000) [`71776ae`](https://github.com/microsoft/TypeScript-Website/commit/71776aecc1b56289ab56d240a9272ce83686ef1a) Thanks [@antfu](https://github.com/antfu)! - Handle `.d.cts` and `.d.mts` files + ## 1.5.2 ### Patch Changes diff --git a/packages/typescript-vfs/package.json b/packages/typescript-vfs/package.json index 93d6d20c3fa1..36054f5fb85d 100755 --- a/packages/typescript-vfs/package.json +++ b/packages/typescript-vfs/package.json @@ -1,6 +1,6 @@ { "name": "@typescript/vfs", - "version": "1.5.2", + "version": "1.5.3", "license": "MIT", "author": "TypeScript team", "homepage": "https://github.com/microsoft/TypeScript-Website",