google-protobuf 3.21.7-x64-mingw-ucrt → 3.21.8-x64-mingw-ucrt

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.

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: e571b994ecdba960b2200a5f0cea44c57fb6e75ea8ea179ddf8aca96b128217c
4
- data.tar.gz: a97d1694e90a99e05f4c118e2721b1db43aa0786b4ee8fd7155d6d61ba33157b
3
+ metadata.gz: b43e001a907b0a9974fcbfe258aab4dbe522d5b69f297219440958d4fcede2c7
4
+ data.tar.gz: 39ecb33b54781742242372b2900b634086ab0af94b969de179939e477bdf8a86
5
5
  SHA512:
6
- metadata.gz: 47f4256f1568e1cbe09175eedd394fef2e63459a5220c07a1efa829e9412f2fe9f99961d1c97e6564a4ffb326344e9da155760d633bc58c58b429e925ad7b6cc
7
- data.tar.gz: a960a9ee5dd4a6e1c4aa1507b83c337e0773fca020387033df6bf9be509b97065fd9f0cd33271529770ceb3e6ca9068a59acc054ebea7944313d436fee7b51c8
6
+ metadata.gz: 22db647636da2e3a40e7887bbe63cb792e35cff41151e7675059e7a610c00cdb5d1d33172439ef04af4a3009db4bb5a5340cbd610cf1fc11a5656ab40dec1fa2
7
+ data.tar.gz: 83c5a75f6f147dddb68972b8a2e82f47a49356fc77f092a2ae1eb665147e9e68c8de570f93bbddd983434da92002144eef2aab4f6dad926f3adf990c4ea2992a
@@ -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);
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.8
5
5
  platform: x64-mingw-ucrt
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-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.7/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: