google-protobuf 3.21.7-x86_64-darwin → 3.21.9-x86_64-darwin

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of google-protobuf might be problematic. Click here for more details.

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: aab5c518e4ba293e844db2b610bb8692c8c5591d796869dcf5a0734a0b611b08
4
- data.tar.gz: fd4f2646f76c98904b1c182d30375dbb274e8c3569ad08b4c6664e6ba80a1272
3
+ metadata.gz: 83fe2031518caac728568b8b4b30a61b9ef369614440b807756f6a0c67d02283
4
+ data.tar.gz: ca769941c185a240783b3693693054ea7ca3958e6f67a3bc7cd102422ce15b0e
5
5
  SHA512:
6
- metadata.gz: c8857b60b63e2485b4439bc4f9455476d7813d98cfb159bf430e10cfad9172b3ba5a091ab5bcc52c86309d92678384688476eba49ff18f1f88b37c012836106b
7
- data.tar.gz: 693c1b554fa817525719290cb83b726a2de37e25a11a7c259a0e03261127b140040850efd63d920252a8f86038e93bd5dc310eb0c34ac11904607cedf9f0a467
6
+ metadata.gz: f135e2e882358fbeda833c2cb4c4ad2cb8f94b4d68c1345b1c01e2c8f77640319325127712bc0891a2576a05f6d19ec504febe9cc74a892a6a9e042f9e3f76a0
7
+ data.tar.gz: 47c961cc965565b1218f58f4967f0426cf8b5d1034e0a1ef4d3010cc42cffcee1988e470ba33d5a5632a38764398df43323dd29c23344e7d8a9d9d338b8aa4a4
@@ -1290,15 +1290,22 @@ VALUE build_module_from_enumdesc(VALUE _enumdesc) {
1290
1290
  int n = upb_EnumDef_ValueCount(e);
1291
1291
  for (int i = 0; i < n; i++) {
1292
1292
  const upb_EnumValueDef* ev = upb_EnumDef_Value(e, i);
1293
- const char* name = upb_EnumValueDef_Name(ev);
1293
+ upb_Arena* arena = upb_Arena_New();
1294
+ const char* src_name = upb_EnumValueDef_Name(ev);
1295
+ char* name = upb_strdup2(src_name, strlen(src_name), arena);
1294
1296
  int32_t value = upb_EnumValueDef_Number(ev);
1295
1297
  if (name[0] < 'A' || name[0] > 'Z') {
1296
- rb_warn(
1298
+ if (name[0] >= 'a' && name[0] <= 'z') {
1299
+ name[0] -= 32; // auto capitalize
1300
+ } else {
1301
+ rb_warn(
1297
1302
  "Enum value '%s' does not start with an uppercase letter "
1298
1303
  "as is required for Ruby constants.",
1299
1304
  name);
1305
+ }
1300
1306
  }
1301
1307
  rb_define_const(mod, name, INT2NUM(value));
1308
+ upb_Arena_Free(arena);
1302
1309
  }
1303
1310
 
1304
1311
  rb_define_singleton_method(mod, "lookup", enum_lookup, 1);
Binary file
Binary file
Binary file
Binary file
Binary file
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-protobuf
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.21.7
4
+ version: 3.21.9
5
5
  platform: x86_64-darwin
6
6
  authors:
7
7
  - Protobuf Authors
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-09-29 00:00:00.000000000 Z
11
+ date: 2022-10-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake-compiler-dock
@@ -113,7 +113,7 @@ homepage: https://developers.google.com/protocol-buffers
113
113
  licenses:
114
114
  - BSD-3-Clause
115
115
  metadata:
116
- source_code_uri: https://github.com/protocolbuffers/protobuf/tree/v3.21.7/ruby
116
+ source_code_uri: https://github.com/protocolbuffers/protobuf/tree/v3.21.9/ruby
117
117
  post_install_message:
118
118
  rdoc_options: []
119
119
  require_paths: