@typespec/emitter-framework 0.8.0-dev.4 → 0.8.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 +15 -0
  2. package/package.json +8 -9
package/CHANGELOG.md CHANGED
@@ -1,5 +1,20 @@
1
1
  # Changelog - @typespec/emitter-framework
2
2
 
3
+ ## 0.8.0
4
+
5
+ ### Features
6
+
7
+ - [#7409](https://github.com/microsoft/typespec/pull/7409) Emit TypeSpec comments as JSDoc in TypeScript components
8
+
9
+ ### Bump dependencies
10
+
11
+ - [#7605](https://github.com/microsoft/typespec/pull/7605) Updates alloy to 0.17
12
+
13
+ ### Bug Fixes
14
+
15
+ - [#7369](https://github.com/microsoft/typespec/pull/7369) Render discriminated unions correctly
16
+
17
+
3
18
  ## 0.7.1
4
19
 
5
20
  ### Bump dependencies
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@typespec/emitter-framework",
3
- "version": "0.8.0-dev.4",
3
+ "version": "0.8.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.17.0",
23
23
  "@alloy-js/typescript": "^0.17.0",
24
- "@typespec/compiler": "^1.0.0",
25
- "@typespec/http": "^1.0.1",
26
- "@typespec/rest": "^0.70.0 || >=0.71.0-dev <0.71.0"
24
+ "@typespec/compiler": "^1.1.0",
25
+ "@typespec/http": "^1.1.0",
26
+ "@typespec/rest": "^0.71.0"
27
27
  },
28
28
  "devDependencies": {
29
29
  "@alloy-js/cli": "^0.17.0",
@@ -31,9 +31,6 @@
31
31
  "@alloy-js/core": "^0.17.0",
32
32
  "@alloy-js/typescript": "^0.17.0",
33
33
  "@types/minimist": "^1.2.5",
34
- "@typespec/compiler": "^1.0.0",
35
- "@typespec/http": "^1.0.1",
36
- "@typespec/rest": "^0.70.0 || >=0.71.0-dev <0.71.0",
37
34
  "concurrently": "^9.1.2",
38
35
  "minimist": "^1.2.8",
39
36
  "prettier": "~3.5.3",
@@ -44,9 +41,11 @@
44
41
  "tree-sitter-python": "^0.23.2",
45
42
  "tree-sitter-typescript": "^0.23.0",
46
43
  "typescript": "~5.8.2",
47
- "vitest": "^3.1.2"
44
+ "vitest": "^3.1.2",
45
+ "@typespec/compiler": "^1.1.0",
46
+ "@typespec/http": "^1.1.0",
47
+ "@typespec/rest": "^0.71.0"
48
48
  },
49
- "dependencies": {},
50
49
  "scripts": {
51
50
  "build": "alloy build",
52
51
  "clean": "rimraf ./dist",