@typespec/spector 0.1.0-alpha.10-dev.8 → 0.1.0-alpha.11-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 +3 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,23 @@
1
1
  # Change Log - @typespec/spector
2
2
 
3
+ ## 0.1.0-alpha.10
4
+
5
+ ### Features
6
+
7
+ - [#6565](https://github.com/microsoft/typespec/pull/6565) Make handling of request body and response body consistent
8
+ - [#6543](https://github.com/microsoft/typespec/pull/6543) Rename `server-test` command to `knock`
9
+
10
+ ### Bump dependencies
11
+
12
+ - [#6595](https://github.com/microsoft/typespec/pull/6595) Upgrade dependencies
13
+
14
+ ### Bug Fixes
15
+
16
+ - [#6527](https://github.com/microsoft/typespec/pull/6527) Don't throw for scenarios that expect error response
17
+ - [#6562](https://github.com/microsoft/typespec/pull/6562) Updates `tsp-spector knock` to exit with a failure if no scenarios are executed
18
+ - [#6543](https://github.com/microsoft/typespec/pull/6543) Add new `--filter` option to `knock` command
19
+
20
+
3
21
  ## 0.1.0-alpha.9
4
22
 
5
23
  ### Features
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@typespec/spector",
3
- "version": "0.1.0-alpha.10-dev.8",
3
+ "version": "0.1.0-alpha.11-dev.0",
4
4
  "description": "Typespec Core Tool to validate, run mock api, collect coverage.",
5
5
  "exports": {
6
6
  ".": {
@@ -28,10 +28,10 @@
28
28
  "dependencies": {
29
29
  "@azure/identity": "~4.8.0",
30
30
  "@types/js-yaml": "^4.0.5",
31
- "@typespec/compiler": "^0.67.1 || >=0.68.0-dev <0.68.0",
31
+ "@typespec/compiler": "^0.67.2 || >=0.68.0-dev <0.68.0",
32
32
  "@typespec/http": "^0.67.1 || >=0.68.0-dev <0.68.0",
33
33
  "@typespec/rest": "^0.67.1 || >=0.68.0-dev <0.68.0",
34
- "@typespec/spec-api": "^0.1.0-alpha.2 || >=0.1.0-alpha.3-dev <0.1.0-alpha.3",
34
+ "@typespec/spec-api": "^0.1.0-alpha.3 || >=0.1.0-alpha.4-dev <0.1.0-alpha.4",
35
35
  "@typespec/spec-coverage-sdk": "^0.1.0-alpha.5 || >=0.1.0-alpha.6-dev <0.1.0-alpha.6",
36
36
  "@typespec/versioning": "^0.67.1 || >=0.68.0-dev <0.68.0",
37
37
  "ajv": "~8.17.1",