November 2023
New Features
@typespec/compiler New Features
- Add new unixTimestamp32scalar to standard library.
- Emitter Framework: Add hook for handling circular references.
- Emitter Framework: TypeEmitternow supports Tuples.
- Emit error diagnostic if a model spreads itself within its declaration.
- Stop showing empty code frame when diagnostic has no location.
@typespec/json-schema New Features
- Add support for TupleLiteral.
@typespec/openapi3 New Features
- Support @summaryon data types which emit the JSON Schematitleproperty.
@typespec/playground New features
- Add a format button to the playground command bar.
- Add a notification to the standalone playground when the playground has been saved.
- Add resizable panes for the editor and output.
Bug Fixes
@typespec/compiler Bug Fixes
- Fix: @docand jsdoc comments disappear from multi-segment or nested namespaces.
- Fix: Using @overloadcould result in incorrectunassignabletype errors.
- Fix: Referencing a template in an alias might cause augment decorators to not be applied on types referenced in the aliased type.
- Fix: Issues with removing keys from RekeyableMap.
- Fix: Properties filtered with @withVisibilitywill have their visibility removed. This prevent visibility from being applied twice and rendering invalid models.
@typespec/openapi3 Bug Fixes
- Fix: Stops emitting an error when using @body _: voidin operation parameters and treat it as no body.
- Fix: Using shared routes would, in some cases, result in a duplicate-headererror.
Breaking Changes
Typescript types breaking change
The package.json files for all packages have been changed to use the standard types field instead of the legacy typesVersions field to specify types for subpath exports. This means that packages consuming TypeSpec must use the moduleResolution setting with node16 or nodenext in their tsconfig.json.
You might see the following error:
Cannot find module '@typespec/compiler/testing'. Did you mean to set the 'moduleResolution' option to 'nodenext'This can be resolved by changing the following in tsconfig.json:
"moduleResolution": "ESNext","moduleResolution": "node16",Dropped Support for Node version 16
- All TypeSpec packages now specify node 18 as the minimum version. Consuming packages should no longer use node 16 and update the node specification in the enginessection of their package.json file appropriately.
@typespec/playground Breaking Changes
- Styles must be imported seperately with import \"@typespec/playground/styles.css\";.
@typespec/versioning Breaking Changes
- Update targets for @added,@removed,@renamedFrom,@madeOptionaland@typeChangedFromto more clearly communicate where they can be used. Specs that applied these decorators to types that could not be versioned (likenamespace) will now receive an error diagnostic.