@typespec/mutator-framework 0.15.0-dev.3 → 0.15.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.
- package/CHANGELOG.md +12 -0
- package/package.json +4 -5
- package/package.json.bak +5 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Changelog - @typespec/mutator-framework
|
|
2
2
|
|
|
3
|
+
## 0.15.0
|
|
4
|
+
|
|
5
|
+
### Breaking Changes
|
|
6
|
+
|
|
7
|
+
- [#9141](https://github.com/microsoft/typespec/pull/9141) Many other bug fixes, removals, and additions as described in this pull request: https://github.com/microsoft/typespec/pull/9141
|
|
8
|
+
- [#9141](https://github.com/microsoft/typespec/pull/9141) Fix mutations not handling linkage to parent types (e.g. model property -> model). Remove mutation subgraph, nodes are now unique per (type, key) pair. Remove reference mutations, use a distinct key for references if needed.
|
|
9
|
+
|
|
10
|
+
### Bump dependencies
|
|
11
|
+
|
|
12
|
+
- [#9223](https://github.com/microsoft/typespec/pull/9223) Upgrade dependencies
|
|
13
|
+
|
|
14
|
+
|
|
3
15
|
## 0.14.0
|
|
4
16
|
|
|
5
17
|
### Features
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@typespec/mutator-framework",
|
|
3
|
-
"version": "0.15.0
|
|
3
|
+
"version": "0.15.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "dist/src/index.js",
|
|
6
6
|
"repository": {
|
|
@@ -17,15 +17,14 @@
|
|
|
17
17
|
"license": "MIT",
|
|
18
18
|
"description": "",
|
|
19
19
|
"peerDependencies": {
|
|
20
|
-
"@typespec/compiler": "^1.
|
|
20
|
+
"@typespec/compiler": "^1.8.0"
|
|
21
21
|
},
|
|
22
22
|
"devDependencies": {
|
|
23
23
|
"@types/node": "~25.0.2",
|
|
24
|
-
"@typespec/compiler": "^1.7.1",
|
|
25
24
|
"concurrently": "^9.1.2",
|
|
26
|
-
"prettier": "~3.7.4"
|
|
25
|
+
"prettier": "~3.7.4",
|
|
26
|
+
"@typespec/compiler": "^1.8.0"
|
|
27
27
|
},
|
|
28
|
-
"dependencies": {},
|
|
29
28
|
"scripts": {
|
|
30
29
|
"build": "tsc -p .",
|
|
31
30
|
"clean": "rimraf ./dist",
|
package/package.json.bak
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@typespec/mutator-framework",
|
|
3
|
-
"version": "0.15.0
|
|
3
|
+
"version": "0.15.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "dist/src/index.js",
|
|
6
6
|
"repository": {
|
|
@@ -31,13 +31,12 @@
|
|
|
31
31
|
"license": "MIT",
|
|
32
32
|
"description": "",
|
|
33
33
|
"peerDependencies": {
|
|
34
|
-
"@typespec/compiler": "
|
|
34
|
+
"@typespec/compiler": "workspace:^"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"@types/node": "~25.0.2",
|
|
38
|
-
"@typespec/compiler": "
|
|
38
|
+
"@typespec/compiler": "workspace:^",
|
|
39
39
|
"concurrently": "^9.1.2",
|
|
40
40
|
"prettier": "~3.7.4"
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
}
|
|
41
|
+
}
|
|
42
|
+
}
|