From e28c11a086be2aee0c743e154b4ce42a89208a3f Mon Sep 17 00:00:00 2001 From: Sosuke Suzuki Date: Tue, 22 Nov 2022 15:25:52 +0900 Subject: [PATCH] Update changelog for `satisfies` (#13879) Address review --- changelog_unreleased/typescript/13764.md | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/changelog_unreleased/typescript/13764.md b/changelog_unreleased/typescript/13764.md index d6bca000c8e3..e9741644da87 100644 --- a/changelog_unreleased/typescript/13764.md +++ b/changelog_unreleased/typescript/13764.md @@ -1,8 +1,4 @@ -#### Support TypeScript 4.9 (#13764, #13783, #13872 by @sosukesuzuki) - -Support [TypeScript 4.9](https://devblogs.microsoft.com/typescript/announcing-typescript-4-9) features! - -##### [`satisfies` operator](https://devblogs.microsoft.com/typescript/announcing-typescript-4-9/#satisfies) +#### Support TypeScript 4.9 [`satisfies` operator](https://devblogs.microsoft.com/typescript/announcing-typescript-4-9/#satisfies) (#13764, #13783, #13872 by @sosukesuzuki) ```tsx @@ -13,6 +9,4 @@ const palette = { } satisfies Record; ``` -##### [Auto-Accessors in Classes](https://devblogs.microsoft.com/typescript/announcing-typescript-4-9/#auto-accessors-in-classes) - -**Auto-Accessors in Classes is not yet supported.** +[Auto-Accessors in Classes](https://devblogs.microsoft.com/typescript/announcing-typescript-4-9/#auto-accessors-in-classes) will be supported in an upcoming 2.8 patch release. We have de-scoped them for now to ship `satisfies` operator sooner.