google-protobuf 4.34.0.rc.2-x86-mingw32 → 4.34.0-x86-mingw32

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 86de1effb589a178ae1a36f5e701a3150c95323cb0fb23360ede8f129b0e7867
4
- data.tar.gz: 5098c6e9e8bc218bebd9831e396e22161353f1b850dde66dee97b99c3e4694a5
3
+ metadata.gz: 738ef3ffa3fbc37d8cc4f88b53c5b7bd3b8bb958f65b40942a11ddc119ea1f6c
4
+ data.tar.gz: 42b439e244eedace6945e2309fc661c7198c4872c8f0f3afcb92e6f4541635ea
5
5
  SHA512:
6
- metadata.gz: 63d0b2c27a08e41330e8014fdf641bd8dcdc9768dcf45da1f1e63560c9e4ed0c0ed25d9dc663b87ef37f477e0c2f9e3ce91085b8c979e90b8db9f211b4b78471
7
- data.tar.gz: ae9c974aa63711184ee2b97279accf7a59ea1017011dec4317ee0b0baf080670ce1ed25c74ae05caa9a707455a5143b108849b54d187bf2f3f3dff576b634719
6
+ metadata.gz: 0447fcaf453cdc4d72dadcd3e039fdb4cc0be935cd1e998591638b3975cb28705042911a005cf03234b09f734b75bcb44b84b5bf62fbe8caea521d454f7eee5d
7
+ data.tar.gz: 77d4e917e75a83d0b9ecc910b8e5224ad33268e9b0789a36750808ff7ed313ec502551cf1af7a75df3c875929beff9311e6e732e2ac319f7f658bc903ac599a4
@@ -16168,9 +16168,13 @@ static void upb_Decoder_AddKnownMessageSetItem(
16168
16168
  upb_Message* submsg = _upb_Decoder_NewSubMessage2(
16169
16169
  d, ext->ext->UPB_PRIVATE(sub).UPB_PRIVATE(submsg),
16170
16170
  &ext->ext->UPB_PRIVATE(field), submsgp);
16171
+ // upb_Decode_LimitDepth() takes uint32_t, d->depth - 1 can not be negative.
16172
+ if (d->depth <= 1) {
16173
+ upb_ErrorHandler_ThrowError(&d->err, kUpb_DecodeStatus_MaxDepthExceeded);
16174
+ }
16171
16175
  upb_DecodeStatus status = upb_Decode(
16172
16176
  data, size, submsg, upb_MiniTableExtension_GetSubMessage(item_mt),
16173
- d->extreg, d->options, &d->arena);
16177
+ d->extreg, upb_Decode_LimitDepth(d->options, d->depth - 1), &d->arena);
16174
16178
  if (status != kUpb_DecodeStatus_Ok) {
16175
16179
  upb_ErrorHandler_ThrowError(&d->err, status);
16176
16180
  }
Binary file
Binary file
Binary file
Binary file
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-protobuf
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.34.0.rc.2
4
+ version: 4.34.0
5
5
  platform: x86-mingw32
6
6
  authors:
7
7
  - Protobuf Authors
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2026-02-05 00:00:00.000000000 Z
10
+ date: 2026-02-25 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: bigdecimal
@@ -184,7 +184,7 @@ homepage: https://developers.google.com/protocol-buffers
184
184
  licenses:
185
185
  - BSD-3-Clause
186
186
  metadata:
187
- source_code_uri: https://github.com/protocolbuffers/protobuf/tree/v4.34.0-rc2/ruby
187
+ source_code_uri: https://github.com/protocolbuffers/protobuf/tree/v4.34.0/ruby
188
188
  rdoc_options: []
189
189
  require_paths:
190
190
  - lib