@typespec/emitter-framework 0.6.0-dev.7 → 0.7.0-dev.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/CHANGELOG.md +17 -0
  2. package/package.json +7 -7
package/CHANGELOG.md CHANGED
@@ -1,5 +1,22 @@
1
1
  # Changelog - @typespec/emitter-framework
2
2
 
3
+ ## 0.6.0
4
+
5
+ ### Features
6
+
7
+ - [#7017](https://github.com/microsoft/typespec/pull/7017) [TypeScript] Add various function-related components - FunctionType, FunctionExpression, ArrowFunction, and InterfaceMethod.
8
+ - [#6972](https://github.com/microsoft/typespec/pull/6972) Add support for rendering a Value Expression
9
+ - [#7018](https://github.com/microsoft/typespec/pull/7018) Adds the `TspContextProvider` and `useTsp()` hook for providing and accessing TypeSpec context and the Typekit APIs (e.g. `# Changelog - @typespec/emitter-framework). Adds a new `Output` component that accepts a TypeSpec `Program` and automatically wraps children components with the `TspContextProvider`.
10
+
11
+ ### Bump dependencies
12
+
13
+ - [#7017](https://github.com/microsoft/typespec/pull/7017) Alloy 0.11
14
+
15
+ ### Bug Fixes
16
+
17
+ - [#6951](https://github.com/microsoft/typespec/pull/6951) InterfaceMember should use Alloy
18
+
19
+
3
20
  ## 0.5.0
4
21
 
5
22
  ### Features
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@typespec/emitter-framework",
3
- "version": "0.6.0-dev.7",
3
+ "version": "0.7.0-dev.0",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "exports": {
@@ -21,9 +21,9 @@
21
21
  "peerDependencies": {
22
22
  "@alloy-js/core": "^0.11.0",
23
23
  "@alloy-js/typescript": "^0.11.0",
24
- "@typespec/compiler": "^1.0.0-rc.0",
25
- "@typespec/http": "^1.0.0-rc.0",
26
- "@typespec/rest": "^0.68.0 || >=0.69.0-dev <0.69.0"
24
+ "@typespec/compiler": "^1.0.0-rc.1",
25
+ "@typespec/http": "^1.0.0-rc.1",
26
+ "@typespec/rest": "^0.69.0 || >=0.70.0-dev <0.70.0"
27
27
  },
28
28
  "devDependencies": {
29
29
  "@alloy-js/cli": "^0.11.0",
@@ -31,9 +31,9 @@
31
31
  "@alloy-js/core": "^0.11.0",
32
32
  "@alloy-js/typescript": "^0.11.0",
33
33
  "@types/minimist": "^1.2.5",
34
- "@typespec/compiler": "^1.0.0-rc.0",
35
- "@typespec/http": "^1.0.0-rc.0",
36
- "@typespec/rest": "^0.68.0 || >=0.69.0-dev <0.69.0",
34
+ "@typespec/compiler": "^1.0.0-rc.1",
35
+ "@typespec/http": "^1.0.0-rc.1",
36
+ "@typespec/rest": "^0.69.0 || >=0.70.0-dev <0.70.0",
37
37
  "concurrently": "^9.1.2",
38
38
  "minimist": "^1.2.8",
39
39
  "prettier": "~3.5.3",