@typespec/protobuf 0.74.0-dev.1 → 0.74.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 CHANGED
@@ -1,5 +1,12 @@
1
1
  # Change Log - @typespec/protobuf
2
2
 
3
+ ## 0.74.0
4
+
5
+ ### Bump dependencies
6
+
7
+ - [#8317](https://github.com/microsoft/typespec/pull/8317) Upgrade dependencies
8
+
9
+
3
10
  ## 0.73.0
4
11
 
5
12
  ### Bump dependencies
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@typespec/protobuf",
3
- "version": "0.74.0-dev.1",
3
+ "version": "0.74.0",
4
4
  "author": "Microsoft Corporation",
5
5
  "description": "TypeSpec library and emitter for Protobuf (gRPC)",
6
6
  "homepage": "https://github.com/microsoft/typespec",
@@ -30,22 +30,21 @@
30
30
  "type": "module",
31
31
  "tspMain": "lib/proto.tsp",
32
32
  "peerDependencies": {
33
- "@typespec/compiler": "^1.3.0"
33
+ "@typespec/compiler": "^1.4.0"
34
34
  },
35
35
  "devDependencies": {
36
36
  "@types/micromatch": "^4.0.9",
37
37
  "@types/node": "~24.3.0",
38
- "@typespec/compiler": "^1.3.0",
39
- "@typespec/tspd": "^0.72.2 || >=0.73.0-dev <0.73.0",
40
38
  "@vitest/coverage-v8": "^3.1.2",
41
39
  "@vitest/ui": "^3.1.2",
42
40
  "c8": "^10.1.3",
43
41
  "micromatch": "^4.0.8",
44
42
  "rimraf": "~6.0.1",
45
43
  "typescript": "~5.9.2",
46
- "vitest": "^3.1.2"
44
+ "vitest": "^3.1.2",
45
+ "@typespec/compiler": "^1.4.0",
46
+ "@typespec/tspd": "^0.73.0"
47
47
  },
48
- "dependencies": {},
49
48
  "scripts": {
50
49
  "clean": "rimraf ./dist ./temp",
51
50
  "build": "pnpm gen-extern-signature && tsc -p .",
@@ -55,6 +54,6 @@
55
54
  "test:ci": "vitest run --coverage --reporter=junit --reporter=default",
56
55
  "lint": "eslint . --max-warnings=0",
57
56
  "lint:fix": "eslint . --fix",
58
- "regen-docs": "tspd doc . --enable-experimental --output-dir ../../website/src/content/docs/docs/emitters/protobuf/reference"
57
+ "regen-docs": "tspd doc . --enable-experimental --llmstxt --output-dir ../../website/src/content/docs/docs/emitters/protobuf/reference"
59
58
  }
60
59
  }