@typespec/emitter-framework 0.9.0-dev.9 → 0.10.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 +18 -0
  2. package/package.json +19 -10
package/CHANGELOG.md CHANGED
@@ -1,5 +1,23 @@
1
1
  # Changelog - @typespec/emitter-framework
2
2
 
3
+ ## 0.9.0
4
+
5
+ ### Features
6
+
7
+ - [#7566](https://github.com/microsoft/typespec/pull/7566) Add csharp support: class, enum
8
+ - [#7815](https://github.com/microsoft/typespec/pull/7815) Migrate the scenario tester to use the new tester framework(Remove explicit relation with http/rest libraries in scenario framework)
9
+ - [#7655](https://github.com/microsoft/typespec/pull/7655) [C#] Add support for JsonPropertyName attributes on properties
10
+ - [#7655](https://github.com/microsoft/typespec/pull/7655) [C#] Add support for nullable properties
11
+
12
+ ### Bump dependencies
13
+
14
+ - [#7655](https://github.com/microsoft/typespec/pull/7655) Upgrade to alloy 0.18.0
15
+
16
+ ### Bug Fixes
17
+
18
+ - [#7650](https://github.com/microsoft/typespec/pull/7650) Adds subpath export for csharp emitter-framework components
19
+
20
+
3
21
  ## 0.8.0
4
22
 
5
23
  ### Features
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@typespec/emitter-framework",
3
- "version": "0.9.0-dev.9",
3
+ "version": "0.10.0-dev.0",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "repository": {
@@ -23,9 +23,18 @@
23
23
  },
24
24
  "imports": {
25
25
  "#test/*": "./test/*",
26
- "#core/*": "./src/core/*",
27
- "#csharp/*": "./src/csharp/*",
28
- "#typescript/*": "./src/typescript/*"
26
+ "#core/*": {
27
+ "development": "./src/core/*",
28
+ "default": "./dist/src/core/*"
29
+ },
30
+ "#csharp/*": {
31
+ "development": "./src/csharp/*",
32
+ "default": "./dist/src/csharp/*"
33
+ },
34
+ "#typescript/*": {
35
+ "development": "./src/typescript/*",
36
+ "default": "./dist/src/typescript/*"
37
+ }
29
38
  },
30
39
  "keywords": [],
31
40
  "author": "",
@@ -35,18 +44,18 @@
35
44
  "@alloy-js/core": "^0.18.2",
36
45
  "@alloy-js/typescript": "^0.18.0",
37
46
  "@alloy-js/csharp": "^0.18.0",
38
- "@typespec/compiler": "^1.1.0",
39
- "@typespec/http": "^1.1.0",
40
- "@typespec/rest": "^0.71.0 || >=0.72.0-dev <0.72.0"
47
+ "@typespec/compiler": "^1.2.0",
48
+ "@typespec/http": "^1.2.0",
49
+ "@typespec/rest": "^0.72.0 || >=0.73.0-dev <0.73.0"
41
50
  },
42
51
  "devDependencies": {
43
52
  "@alloy-js/cli": "^0.18.0",
44
53
  "@alloy-js/rollup-plugin": "^0.1.0",
45
54
  "@alloy-js/core": "^0.18.2",
46
55
  "@alloy-js/typescript": "^0.18.0",
47
- "@typespec/compiler": "^1.1.0",
48
- "@typespec/http": "^1.1.0",
49
- "@typespec/rest": "^0.71.0 || >=0.72.0-dev <0.72.0",
56
+ "@typespec/compiler": "^1.2.0",
57
+ "@typespec/http": "^1.2.0",
58
+ "@typespec/rest": "^0.72.0 || >=0.73.0-dev <0.73.0",
50
59
  "concurrently": "^9.1.2",
51
60
  "pathe": "^2.0.3",
52
61
  "prettier": "~3.5.3",