google-protobuf 4.33.2 → 4.33.3
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 +4 -4
- data/ext/google/protobuf_c/ruby-upb.c +1 -1
- data/ext/google/protobuf_c/ruby-upb.h +11 -0
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: befb38ada3bfacf5bcee493a53fe8b05e16db207cf22008dc04c38447b63cbda
|
|
4
|
+
data.tar.gz: 7f54fe93b850d67d8107629ef99d953ad8a51afc87e55198548bd8f8356cdc42
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1bef509b227755807bc6306536c0b851ede22a5692137c50340bb723ed281e933d22bf269861b3b593782a0a8b1b89dc0a2b35fdeb5024c0bc4332cd1df3f824
|
|
7
|
+
data.tar.gz: 05d6e13d963cc5200bf1689d3a1ebbe0eb5dc0e9b231a57fe5e4190fdd6367fbd4322938a70cac799d6b9b17c1e2bea502511e6dccd2d083db9c1dd802ab7dd4
|
|
@@ -11998,7 +11998,7 @@ const UPB_DESC(FeatureSet*)
|
|
|
11998
11998
|
upb_FileDef_EditionName(min));
|
|
11999
11999
|
return NULL;
|
|
12000
12000
|
}
|
|
12001
|
-
if (edition > max) {
|
|
12001
|
+
if (edition > max && edition != UPB_DESC(EDITION_UNSTABLE)) {
|
|
12002
12002
|
_upb_DefBuilder_Errf(ctx,
|
|
12003
12003
|
"Edition %s is later than the maximum edition %s "
|
|
12004
12004
|
"given in the defaults",
|
|
@@ -845,6 +845,7 @@ UPB_INLINE uint8_t _upb_Xsan_NextTag(upb_Xsan *xsan) {
|
|
|
845
845
|
}
|
|
846
846
|
return xsan->state;
|
|
847
847
|
#else
|
|
848
|
+
UPB_UNUSED(xsan);
|
|
848
849
|
return 0;
|
|
849
850
|
#endif
|
|
850
851
|
}
|
|
@@ -861,6 +862,7 @@ UPB_INLINE uint8_t UPB_PRIVATE(_upb_Xsan_GetTag)(const void *addr) {
|
|
|
861
862
|
#if UPB_HWASAN
|
|
862
863
|
return __hwasan_get_tag_from_pointer(addr);
|
|
863
864
|
#else
|
|
865
|
+
UPB_UNUSED(addr);
|
|
864
866
|
return 0;
|
|
865
867
|
#endif
|
|
866
868
|
}
|
|
@@ -868,6 +870,8 @@ UPB_INLINE uint8_t UPB_PRIVATE(_upb_Xsan_GetTag)(const void *addr) {
|
|
|
868
870
|
UPB_INLINE void UPB_PRIVATE(upb_Xsan_Init)(upb_Xsan *xsan) {
|
|
869
871
|
#if UPB_HWASAN || UPB_TSAN
|
|
870
872
|
xsan->state = 0;
|
|
873
|
+
#else
|
|
874
|
+
UPB_UNUSED(xsan);
|
|
871
875
|
#endif
|
|
872
876
|
}
|
|
873
877
|
|
|
@@ -880,6 +884,9 @@ UPB_INLINE void UPB_PRIVATE(upb_Xsan_PoisonRegion)(const void *addr,
|
|
|
880
884
|
__asan_poison_memory_region(addr, size);
|
|
881
885
|
#elif UPB_HWASAN
|
|
882
886
|
__hwasan_tag_memory(addr, UPB_HWASAN_POISON_TAG, UPB_ALIGN_MALLOC(size));
|
|
887
|
+
#else
|
|
888
|
+
UPB_UNUSED(addr);
|
|
889
|
+
UPB_UNUSED(size);
|
|
883
890
|
#endif
|
|
884
891
|
}
|
|
885
892
|
|
|
@@ -957,6 +964,8 @@ UPB_INLINE void UPB_PRIVATE(upb_Xsan_AccessReadOnly)(upb_Xsan *xsan) {
|
|
|
957
964
|
#if UPB_TSAN
|
|
958
965
|
// For performance we avoid using a volatile variable.
|
|
959
966
|
__asm__ volatile("" ::"r"(xsan->state));
|
|
967
|
+
#else
|
|
968
|
+
UPB_UNUSED(xsan);
|
|
960
969
|
#endif
|
|
961
970
|
}
|
|
962
971
|
|
|
@@ -964,6 +973,8 @@ UPB_INLINE void UPB_PRIVATE(upb_Xsan_AccessReadWrite)(upb_Xsan *xsan) {
|
|
|
964
973
|
#if UPB_TSAN
|
|
965
974
|
// For performance we avoid using a volatile variable.
|
|
966
975
|
__asm__ volatile("" : "+r"(xsan->state));
|
|
976
|
+
#else
|
|
977
|
+
UPB_UNUSED(xsan);
|
|
967
978
|
#endif
|
|
968
979
|
}
|
|
969
980
|
|
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: 4.33.
|
|
4
|
+
version: 4.33.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Protobuf Authors
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2026-01-09 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bigdecimal
|
|
@@ -189,7 +189,7 @@ homepage: https://developers.google.com/protocol-buffers
|
|
|
189
189
|
licenses:
|
|
190
190
|
- BSD-3-Clause
|
|
191
191
|
metadata:
|
|
192
|
-
source_code_uri: https://github.com/protocolbuffers/protobuf/tree/v4.33.
|
|
192
|
+
source_code_uri: https://github.com/protocolbuffers/protobuf/tree/v4.33.3/ruby
|
|
193
193
|
post_install_message:
|
|
194
194
|
rdoc_options: []
|
|
195
195
|
require_paths:
|