google-protobuf 3.21.6 → 3.21.8

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: a689562d9ac83023e5dad803b393af166f48a032cddcd2101d6308c51a74e0c0
4
- data.tar.gz: 670e3744982042914cb4f32888219ab12e41cb24d76b798c648850267a2ce268
3
+ metadata.gz: 42878b39e56b69fd23d1c616d81bef82ca279c7872fa11a9d75005b4d0affb3f
4
+ data.tar.gz: a6da6e837daa1b28dad8d2ceaa85a889746fda1eb4e1830266bbbff16a35bec3
5
5
  SHA512:
6
- metadata.gz: e3777629088cc4a575d9263114669f788926f565c79bb8b449a3f25d485f75e7326b6b0cdd8c819d5734ff9b9dfa16cf9582398c830713641630882de5ae8040
7
- data.tar.gz: d56e1dfe1f0286fe871991f57bae30a1a35b53bad62c3c9f124b9072e14058797f92a0a3e034ea740162d0d4f1d84fc0be13de6626ee649e0df2576feb823cc1
6
+ metadata.gz: b08289ac2aaf130780ad52af88d981d931d696690c3f139d054806247bbd472834c19cd6cd625adf17638018239074a7599e3b2878033b932a92e18561b3b815
7
+ data.tar.gz: d29b79ecd9e5cd129d821384eb1cc11052523fde3283d8bd3edb7e29b08509d77e6df2c61f388e66efc3a6313351e1809dccb06578263316f71d73dd54fb7691
@@ -1290,15 +1290,20 @@ 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
+ char* name = strdup(upb_EnumValueDef_Name(ev));
1294
1294
  int32_t value = upb_EnumValueDef_Number(ev);
1295
1295
  if (name[0] < 'A' || name[0] > 'Z') {
1296
- rb_warn(
1296
+ if (name[0] >= 'a' && name[0] <= 'z') {
1297
+ name[0] -= 32; // auto capitalize
1298
+ } else {
1299
+ rb_warn(
1297
1300
  "Enum value '%s' does not start with an uppercase letter "
1298
1301
  "as is required for Ruby constants.",
1299
1302
  name);
1303
+ }
1300
1304
  }
1301
1305
  rb_define_const(mod, name, INT2NUM(value));
1306
+ free(name);
1302
1307
  }
1303
1308
 
1304
1309
  rb_define_singleton_method(mod, "lookup", enum_lookup, 1);
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.6
4
+ version: 3.21.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Protobuf Authors
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-09-13 00:00:00.000000000 Z
11
+ date: 2022-10-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake-compiler-dock
@@ -109,7 +109,7 @@ homepage: https://developers.google.com/protocol-buffers
109
109
  licenses:
110
110
  - BSD-3-Clause
111
111
  metadata:
112
- source_code_uri: https://github.com/protocolbuffers/protobuf/tree/v3.21.6/ruby
112
+ source_code_uri: https://github.com/protocolbuffers/protobuf/tree/v3.21.8/ruby
113
113
  post_install_message:
114
114
  rdoc_options: []
115
115
  require_paths: