1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153
|
Revision history for Redis
0.37 2024-03-08T16:30:20Z
- Add SSL/TLS support #150 (thanks @thomas-netcraft)
- drop support of Perl 5.12 #151
- bump hiredis v1.2.0 #152
0.36 2023-07-05T20:20:13Z
- Define PERL_NO_GET_CONTEXT #142 (thanks @JRaspass)
- Support password auth with sentinels #144 (thanks @Yenya)
0.35 2022-11-19T06:48:35Z
- bump hireids v1.1.0
0.34 2022-06-07T22:14:47Z
- fix reconnection behavior when no_auto_connect_on_new is enabled #136
- fix: Syntax: Ambiguous call resolved as CORE::keys() #137
0.33 2021-10-30T11:29:40Z
- fix Undefined Behavior in DESTROY, closes #125
- use monotonic times in tests
- suppress "Connection reset by peer", closes #124
0.32 2021-10-16T06:06:31Z
- Fixing segmentation faults when trying to connecting to unreachable hosts #120 (thanks @pepl)
- bump hiredis v1.0.2
0.31 2021-07-04T06:50:31Z
- call the callback sub when we get connection error, fixes #117 #118
0.30 2021-05-07T13:06:59Z
- fix broken tests using fork(2) #112
- do not self->ac = NULL out of callback functions to avoid memory leak #111
0.29 2021-01-17T10:35:59Z
- fix Segmentation fault when connection failed #105
- fix pod of Redis::Fast::Hash and Redis::Fast::List #106
0.28 2020-11-01T23:04:30Z
- make the reconnect option double #101
- fix memory leak of info command #102
- Fix leak when croak #104
0.27 2020-08-08T22:45:05Z
- bump up hiredis v1.0.0
- add debug option
0.26 2020-05-02T04:14:35Z
- fix miss-detecting "Redis server refused password" error with Redis 6.0
0.25 2019-08-20T01:57:40Z
- support older perl again
0.24 2019-08-19T22:29:23Z
- drop support of perl 5.20
0.23 2019-05-29T11:20:58Z
- Fix info command error message #85 (thanks @benevolent0505)
0.22 2018-08-12T06:26:24Z
- Fix #80 Tests fail with redis-server 4.0.11
- Fix spelling error #79 (thanks @guimard)
0.21 2018-01-28T01:02:14Z
- Fix reconnect behavior differs from cpan Redis module #73
0.20 2017-02-25T22:48:26Z
- Fix build issue on newer Perl
0.19 2016-12-20T11:33:33Z
- support reconnecting on the specified error (thanks @yoheimuta)
- experimental support of IPv6
- fix automatic refresh errors of sentinels list
0.18 2016-01-26T13:09:12Z
- add missing dependencies (Test::UNIXSock, Parallel::ForkManager)
0.17 2016-01-23T06:29:53Z
- use poll(2) instead of select(2)
- hiredis is v0.13.3 now
- fix some compiling warnings
0.16 2015-03-12T02:17:45Z
- fix bad connection error handling #39 thx @celogeek
0.15 2015-03-10T14:10:54Z
- use gmake for DragonflyBSD(thanks @nise-nabe)
- support topic "0" in psubscribe
- hiredis is v0.12.1 now
- default connection unlimited time (-1)
- use cnx_timeout for the connection instead of every
0.14 2014-12-07T13:34:06Z
- Redis::Fast is now compatible with Redis.pm 1.976
- fix a link in pod because hiredis has moved(thanks @Csson !)
- fix the test of password
- fix inconsistency with binary strings
0.13 2014-10-16T11:07:31Z
- support password option
- fix deep recursion when maxclients is reached and reconnect, name, on_connect parameters used #21
- fix reconnect disabled inside transaction #22
0.12 2014-09-08T16:19:11Z
- every option is in microseconds now
- fix some tests
- add missing dependencies (Try::Tiny, Test::SharedFork)
- quit returns 1 if connection is available
0.11 2014-07-16T02:27:40Z
- fix wrong read timeout
- do not reconnect with read timeout
0.10 2014-07-16T00:55:29Z
- no change
- I release it by mistake
0.09 2014-07-08T15:46:39Z
- fix double free
- fix signal handling
0.08 2014-05-31T03:46:58Z
- remove enconding/decoding feature
- fix select database bug after reconnect
0.07 2014-05-17T07:19:34Z
- Redis::Fast is now compatible with Redis.pm 1.974
- fix reconnect during transaction
- Sentinel features (connections, timeouts, etc) support
0.06 2014-01-31T16:44:53Z
- Fix memory leak of callback functions
- Fix issue #5 does not play way with signals
0.05 2013-12-20T02:22:09Z
- Fix memory leak of lists
- PING commands trigers reconnect
0.04 2013-12-10T02:56:46Z
- Fix memory leak
- Fix dependance
0.03 2013-10-16T12:14:58Z
- wait_for_messages will block forever if parameters are not given
0.02 2013-10-13T13:27:37Z
- Remove needless module
- Use gmake for building library on BSD platform except KFreeBSD
- Improve reconnection
0.01 2013-10-10T16:46:27Z
- First version
|