@typespec/protobuf 0.67.0-dev.6 → 0.67.1

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 +3 -4
package/CHANGELOG.md CHANGED
@@ -1,5 +1,20 @@
1
1
  # Change Log - @typespec/protobuf
2
2
 
3
+ ## 0.67.0
4
+
5
+ ### Features
6
+
7
+ - [#6327](https://github.com/microsoft/typespec/pull/6327) Remove reference to delete projection feature
8
+
9
+ ### Bump dependencies
10
+
11
+ - [#6266](https://github.com/microsoft/typespec/pull/6266) Update dependencies
12
+
13
+ ### Bug Fixes
14
+
15
+ - [#6411](https://github.com/microsoft/typespec/pull/6411) Add support for new `dryRun` emitter option
16
+
17
+
3
18
  ## 0.66.0
4
19
 
5
20
  No changes, version bump only.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@typespec/protobuf",
3
- "version": "0.67.0-dev.6",
3
+ "version": "0.67.1",
4
4
  "author": "Microsoft Corporation",
5
5
  "description": "TypeSpec library and emitter for Protobuf (gRPC)",
6
6
  "homepage": "https://github.com/microsoft/typespec",
@@ -30,12 +30,11 @@
30
30
  "type": "module",
31
31
  "tspMain": "lib/proto.tsp",
32
32
  "peerDependencies": {
33
- "@typespec/compiler": "^0.66.0 || >=0.67.0-dev <0.67.0"
33
+ "@typespec/compiler": "^0.67.1"
34
34
  },
35
35
  "devDependencies": {
36
36
  "@types/micromatch": "^4.0.9",
37
37
  "@types/node": "~22.13.9",
38
- "@typespec/compiler": "^0.66.0 || >=0.67.0-dev <0.67.0",
39
38
  "@vitest/coverage-v8": "^3.0.7",
40
39
  "@vitest/ui": "^3.0.7",
41
40
  "c8": "^10.1.3",
@@ -43,9 +42,9 @@
43
42
  "rimraf": "~6.0.1",
44
43
  "typescript": "~5.8.2",
45
44
  "vitest": "^3.0.7",
45
+ "@typespec/compiler": "^0.67.1",
46
46
  "@typespec/tspd": "^0.46.0"
47
47
  },
48
- "dependencies": {},
49
48
  "scripts": {
50
49
  "clean": "rimraf ./dist ./temp",
51
50
  "build": "npm run gen-extern-signature && tsc -p .",