|
| 1 | +## [1.2.0](https://github.com/redis/hiredis/tree/v1.2.0) - (2023-06-04) |
| 2 | + |
| 3 | +Announcing Hiredis v1.2.0 with with new adapters, and a great many bug fixes. |
| 4 | + |
| 5 | +## 🚀 New Features |
| 6 | + |
| 7 | +- Add sdevent adapter @Oipo (#1144) |
| 8 | +- Allow specifying the keepalive interval @michael-grunder (#1168) |
| 9 | +- Add RedisModule adapter @tezc (#1182) |
| 10 | +- Helper for setting TCP_USER_TIMEOUT socket option @zuiderkwast (#1188) |
| 11 | + |
| 12 | +## 🐛 Bug Fixes |
| 13 | + |
| 14 | +- Fix a typo in b6a052f. @yossigo (#1190) |
| 15 | +- Fix wincrypt symbols conflict @hudayou (#1151) |
| 16 | +- Don't attempt to set a timeout if we are in an error state. @michael-grunder (#1180) |
| 17 | +- Accept -nan per the RESP3 spec recommendation. @michael-grunder (#1178) |
| 18 | +- Fix colliding option values @zuiderkwast (#1172) |
| 19 | +- Ensure functionality without `_MSC_VER` definition @windyakin (#1194) |
| 20 | + |
| 21 | +## 🧰 Maintenance |
| 22 | + |
| 23 | +- Add a test for the TCP_USER_TIMEOUT option. @michael-grunder (#1192) |
| 24 | +- Add -Werror as a default. @yossigo (#1193) |
| 25 | +- CI: Update homebrew Redis version. @yossigo (#1191) |
| 26 | +- Fix typo in makefile. @michael-grunder (#1179) |
| 27 | +- Write a version file for the CMake package @Neverlord (#1165) |
| 28 | +- CMakeLists.txt: respect BUILD_SHARED_LIBS @ffontaine (#1147) |
| 29 | +- Cmake static or shared @autoantwort (#1160) |
| 30 | +- fix typo @tillkruss (#1153) |
| 31 | +- Add a test ensuring we don't clobber connection error. @michael-grunder (#1181) |
| 32 | +- Search for openssl on macOS @michael-grunder (#1169) |
| 33 | + |
| 34 | + |
| 35 | +## Contributors |
| 36 | +We'd like to thank all the contributors who worked on this release! |
| 37 | + |
| 38 | +<a href="https://github.com/neverlord"><img src="https://github.com/neverlord.png" width="32" height="32"></a> |
| 39 | +<a href="https://github.com/Oipo"><img src="https://github.com/Oipo.png" width="32" height="32"></a> |
| 40 | +<a href="https://github.com/autoantwort"><img src="https://github.com/autoantwort.png" width="32" height="32"></a> |
| 41 | +<a href="https://github.com/ffontaine"><img src="https://github.com/ffontaine.png" width="32" height="32"></a> |
| 42 | +<a href="https://github.com/hudayou"><img src="https://github.com/hudayou.png" width="32" height="32"></a> |
| 43 | +<a href="https://github.com/michael-grunder"><img src="https://github.com/michael-grunder.png" width="32" height="32"></a> |
| 44 | +<a href="https://github.com/postgraph"><img src="https://github.com/postgraph.png" width="32" height="32"></a> |
| 45 | +<a href="https://github.com/tezc"><img src="https://github.com/tezc.png" width="32" height="32"></a> |
| 46 | +<a href="https://github.com/tillkruss"><img src="https://github.com/tillkruss.png" width="32" height="32"></a> |
| 47 | +<a href="https://github.com/vityafx"><img src="https://github.com/vityafx.png" width="32" height="32"></a> |
| 48 | +<a href="https://github.com/windyakin"><img src="https://github.com/windyakin.png" width="32" height="32"></a> |
| 49 | +<a href="https://github.com/yossigo"><img src="https://github.com/yossigo.png" width="32" height="32"></a> |
| 50 | +<a href="https://github.com/zuiderkwast"><img src="https://github.com/zuiderkwast.png" width="32" height="32"></a> |
| 51 | + |
1 | 52 | ## [1.1.0](https://github.com/redis/hiredis/tree/v1.1.0) - (2022-11-15)
|
2 | 53 |
|
3 | 54 | Announcing Hiredis v1.1.0 GA with better SSL convenience, new async adapters and a great many bug fixes.
|
4 | 55 |
|
5 |
| -**NOTE**: Hiredis can now return `nan` in addition to `-inf` and `inf` when returning a `REDIS_REPLY_DOUBLE`. |
| 56 | +**NOTE**: Hiredis can now return `nan` in addition to `-inf` and `inf` when returning a `REDIS_REPLY_DOUBLE`. |
6 | 57 |
|
7 | 58 | ## 🐛 Bug Fixes
|
8 | 59 |
|
9 |
| -- Add support for nan in RESP3 double [@filipecosta90](https://github.com/filipecosta90) |
| 60 | +- Add support for nan in RESP3 double [@filipecosta90](https://github.com/filipecosta90) |
10 | 61 | ([\#1133](https://github.com/redis/hiredis/pull/1133))
|
11 | 62 |
|
12 | 63 | ## 🧰 Maintenance
|
13 | 64 |
|
14 | 65 | - Add an example that calls redisCommandArgv [@michael-grunder](https://github.com/michael-grunder)
|
15 | 66 | ([\#1140](https://github.com/redis/hiredis/pull/1140))
|
16 | 67 | - fix flag reference [@pata00](https://github.com/pata00) ([\#1136](https://github.com/redis/hiredis/pull/1136))
|
17 |
| -- Make freeing a NULL redisAsyncContext a no op. [@michael-grunder](https://github.com/michael-grunder) |
| 68 | +- Make freeing a NULL redisAsyncContext a no op. [@michael-grunder](https://github.com/michael-grunder) |
18 | 69 | ([\#1135](https://github.com/redis/hiredis/pull/1135))
|
19 | 70 | - CI updates ([@bjosv](https://github.com/redis/bjosv) ([\#1139](https://github.com/redis/hiredis/pull/1139))
|
20 | 71 |
|
|
0 commit comments