We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 03111e8 + e632d9a commit d21f550Copy full SHA for d21f550
CHANGELOG.md
@@ -1,5 +1,7 @@
1
# Unreleased
2
3
+- Fix `hiredis-client` compilation with `clang 21`.
4
+
5
# 0.25.2
6
7
- Fix circuit breakers to respect the `error_threshold_timeout` config is provided.
hiredis-client/ext/redis_client/hiredis/hiredis_connection.c
@@ -36,9 +36,9 @@
36
#include <errno.h>
37
#include <sys/socket.h>
38
#include <stdbool.h>
39
-#include "hiredis.h"
40
-#include "net.h"
41
-#include "hiredis_ssl.h"
+#include "vendor/hiredis.h"
+#include "vendor/net.h"
+#include "vendor/hiredis_ssl.h"
42
#include <poll.h>
43
44
#if !defined(RUBY_ASSERT)
0 commit comments