Skip to content

Commit f25a712

Browse files
committed
Intermediate changes
commit_hash:4cc946aa65cbd4a25a529444bd6ddaed87d14e89
1 parent da51ab7 commit f25a712

File tree

16 files changed

+187
-147
lines changed

16 files changed

+187
-147
lines changed

contrib/libs/croaring/include/roaring/roaring_version.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
// /include/roaring/roaring_version.h automatically generated by release.py, do not change by hand
33
#ifndef ROARING_INCLUDE_ROARING_VERSION
44
#define ROARING_INCLUDE_ROARING_VERSION
5-
#define ROARING_VERSION "4.1.6"
5+
#define ROARING_VERSION "4.1.7"
66
enum {
77
ROARING_VERSION_MAJOR = 4,
88
ROARING_VERSION_MINOR = 1,
9-
ROARING_VERSION_REVISION = 6
9+
ROARING_VERSION_REVISION = 7
1010
};
1111
#endif // ROARING_INCLUDE_ROARING_VERSION
1212
// clang-format on

contrib/libs/croaring/src/roaring_array.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -637,7 +637,7 @@ size_t ra_portable_deserialize_size(const char *buf, const size_t maxbytes) {
637637
memcpy(&size, buf, sizeof(int32_t));
638638
buf += sizeof(uint32_t);
639639
}
640-
if (size > (1 << 16)) {
640+
if (size > (1 << 16) || size < 0) {
641641
return 0;
642642
}
643643
char *bitmapOfRunContainers = NULL;

contrib/libs/croaring/ya.make

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ LICENSE(
1010

1111
LICENSE_TEXTS(.yandex_meta/licenses.list.txt)
1212

13-
VERSION(4.1.6)
13+
VERSION(4.1.7)
1414

15-
ORIGINAL_SOURCE(https://github.com/RoaringBitmap/CRoaring/archive/v4.1.6.tar.gz)
15+
ORIGINAL_SOURCE(https://github.com/RoaringBitmap/CRoaring/archive/v4.1.7.tar.gz)
1616

1717
ADDINCL(
1818
GLOBAL contrib/libs/croaring/include

contrib/python/anyio/.dist-info/METADATA

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Metadata-Version: 2.1
22
Name: anyio
3-
Version: 4.5.0
3+
Version: 4.6.0
44
Summary: High level compatibility layer for multiple asynchronous event loop implementations
55
Author-email: Alex Grönholm <alex.gronholm@nextday.fi>
66
License: MIT
@@ -15,13 +15,12 @@ Classifier: Framework :: AnyIO
1515
Classifier: Typing :: Typed
1616
Classifier: Programming Language :: Python
1717
Classifier: Programming Language :: Python :: 3
18-
Classifier: Programming Language :: Python :: 3.8
1918
Classifier: Programming Language :: Python :: 3.9
2019
Classifier: Programming Language :: Python :: 3.10
2120
Classifier: Programming Language :: Python :: 3.11
2221
Classifier: Programming Language :: Python :: 3.12
2322
Classifier: Programming Language :: Python :: 3.13
24-
Requires-Python: >=3.8
23+
Requires-Python: >=3.9
2524
Description-Content-Type: text/x-rst
2625
License-File: LICENSE
2726
Requires-Dist: idna >=2.8

0 commit comments

Comments
 (0)