protoc 33.1.0 → 33.3.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/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  protoc
2
2
  ======
3
3
 
4
- This package provides the Protobuf compiler `protoc` <!-- inject: release.tag_name -->v33.1<!-- end -->.
4
+ This package provides the Protobuf compiler `protoc` <!-- inject: release.tag_name -->v33.3<!-- end -->.
5
5
 
6
6
  ```shell script
7
7
  npm install --save-dev protoc
package/assets.json CHANGED
@@ -1,39 +1,39 @@
1
1
  [
2
2
  {
3
- "name": "protoc-33.1-linux-aarch_64.zip",
4
- "browser_download_url": "https://github.com/protocolbuffers/protobuf/releases/download/v33.1/protoc-33.1-linux-aarch_64.zip",
3
+ "name": "protoc-33.3-linux-aarch_64.zip",
4
+ "browser_download_url": "https://github.com/protocolbuffers/protobuf/releases/download/v33.3/protoc-33.3-linux-aarch_64.zip",
5
5
  "platform": "linux",
6
6
  "arch": "arm64",
7
7
  "dotExe": false,
8
8
  "executable": "protoc-linux-aarch_64"
9
9
  },
10
10
  {
11
- "name": "protoc-33.1-linux-x86_64.zip",
12
- "browser_download_url": "https://github.com/protocolbuffers/protobuf/releases/download/v33.1/protoc-33.1-linux-x86_64.zip",
11
+ "name": "protoc-33.3-linux-x86_64.zip",
12
+ "browser_download_url": "https://github.com/protocolbuffers/protobuf/releases/download/v33.3/protoc-33.3-linux-x86_64.zip",
13
13
  "platform": "linux",
14
14
  "arch": "x64",
15
15
  "dotExe": false,
16
16
  "executable": "protoc-linux-x86_64"
17
17
  },
18
18
  {
19
- "name": "protoc-33.1-osx-aarch_64.zip",
20
- "browser_download_url": "https://github.com/protocolbuffers/protobuf/releases/download/v33.1/protoc-33.1-osx-aarch_64.zip",
19
+ "name": "protoc-33.3-osx-aarch_64.zip",
20
+ "browser_download_url": "https://github.com/protocolbuffers/protobuf/releases/download/v33.3/protoc-33.3-osx-aarch_64.zip",
21
21
  "platform": "darwin",
22
22
  "arch": "arm64",
23
23
  "dotExe": false,
24
24
  "executable": "protoc-osx-aarch_64"
25
25
  },
26
26
  {
27
- "name": "protoc-33.1-osx-x86_64.zip",
28
- "browser_download_url": "https://github.com/protocolbuffers/protobuf/releases/download/v33.1/protoc-33.1-osx-x86_64.zip",
27
+ "name": "protoc-33.3-osx-x86_64.zip",
28
+ "browser_download_url": "https://github.com/protocolbuffers/protobuf/releases/download/v33.3/protoc-33.3-osx-x86_64.zip",
29
29
  "platform": "darwin",
30
30
  "arch": "x64",
31
31
  "dotExe": false,
32
32
  "executable": "protoc-osx-x86_64"
33
33
  },
34
34
  {
35
- "name": "protoc-33.1-win64.zip",
36
- "browser_download_url": "https://github.com/protocolbuffers/protobuf/releases/download/v33.1/protoc-33.1-win64.zip",
35
+ "name": "protoc-33.3-win64.zip",
36
+ "browser_download_url": "https://github.com/protocolbuffers/protobuf/releases/download/v33.3/protoc-33.3-win64.zip",
37
37
  "platform": "win32",
38
38
  "arch": "x64",
39
39
  "dotExe": true,
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -86,6 +86,9 @@ enum Edition {
86
86
  EDITION_2023 = 1000;
87
87
  EDITION_2024 = 1001;
88
88
 
89
+ // A placeholder edition for developing and testing unscheduled features.
90
+ EDITION_UNSTABLE = 9999;
91
+
89
92
  // Placeholder editions for testing feature resolution. These should not be
90
93
  // used or relied on outside of tests.
91
94
  EDITION_1_TEST_ONLY = 1;
@@ -1185,6 +1188,11 @@ message FeatureSet {
1185
1188
  full_name: ".pb.python",
1186
1189
  type: ".pb.PythonFeatures"
1187
1190
  },
1191
+ declaration = {
1192
+ number: 1100,
1193
+ full_name: ".imp.impress_feature_set",
1194
+ type: ".imp.ImpressFeatureSet"
1195
+ },
1188
1196
  declaration = {
1189
1197
  number: 9989,
1190
1198
  full_name: ".pb.java_mutable",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "protoc",
3
- "version": "33.1.0",
4
- "upstreamVersion": "v33.1",
3
+ "version": "33.3.0",
4
+ "upstreamVersion": "v33.3",
5
5
  "description": "Installs the protocol buffer compiler \"protoc\" for you.",
6
6
  "bin": {
7
7
  "protoc": "protoc.cjs"
@@ -36,7 +36,7 @@
36
36
  "installation"
37
37
  ],
38
38
  "devDependencies": {
39
- "tsx": "^4.20.6",
39
+ "tsx": "^4.21.0",
40
40
  "fflate": "^0.8.2"
41
41
  }
42
42
  }