File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
66and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
77
8+ ## [ 8.1.2] - 2025-06-02
9+
10+ ### Fixed
11+
12+ - Broken alias resolvers for cleared type metadata.
13+
814## [ 8.1.1] - 2025-06-02
915
1016### Fixed
Original file line number Diff line number Diff line change @@ -884,9 +884,8 @@ export class TypeManager
884884 public clear ( ) : this
885885 {
886886 const symbol = this . symbol ;
887- const typeFnMap = this . typeFnMap ;
888887 const typeMetadataSet = this . typeMetadataSet ;
889-
888+
890889 for ( const typeMetadata of typeMetadataSet )
891890 {
892891 const prototype = typeMetadata . typeFn . prototype ?? { } ;
@@ -895,7 +894,6 @@ export class TypeManager
895894 }
896895
897896 typeMetadataSet . clear ( ) ;
898- typeFnMap . clear ( ) ;
899897
900898 return this ;
901899 }
You can’t perform that action at this time.
0 commit comments