Skip to content

Tags: redisfab/hiredis

Tags

v1.1.0-redisfab-1

Toggle v1.1.0-redisfab-1's commit message
Ensure functionality without _MSC_VER definition

v1.0.2-redisfab-1

Toggle v1.0.2-redisfab-1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request redis#932 from kristjanvalur/pr3

Polling adapter and example

v1.0.2

Toggle v1.0.2's commit message
Release of v1.0.2

Hiredis v1.0.2 is a security release with a fix for CVE-2021-32765.

It is otherwise identical to v1.0.0 and backward compatible.

CVE-2021-32765 details:
GHSA-hfm9-39pp-55p2)

NOTE:  v1.0.1 erroneously bumped the SONAME so should be skipped.

v1.0.1

Toggle v1.0.1's commit message
Release of v1.0.1

Hiredis v1.0.1 is a security release with a fix for CVE-2021-32765.

It is otherwise identical to v1.0.0 and backward compatible.

CVE-2021-32765 details:
GHSA-hfm9-39pp-55p2)

v1.0.0

Toggle v1.0.0's commit message
Release of v1.0.0

Hiredis v1.0.0 marks the first stable release of Hiredis and introduces
RESP3 support, SSL connections, allocator injection, better Windows support,
and more.

IMPORTANT:  There are breaking changes in this release meaning your code
will need to be recompiled and may need small changes.  The exact
details of the breaking changes can be found in README.md.

CHANGELOG.md has a detailed list of changes between v0.14.1 and v1.0.0.

~~~

Thank you to everyone who contriubuted to the project by submitting PRs,
reporting bugs, or helping answer people's questions.

And a special thank you to the following people who contributed at least
five lines of code to this release (sorted by lines contributed) \o/

Michael Grunder, Yossi Gottlieb, Mark Nunberg, Marcus Geelnard, Justin Brewer,
Minun Dragonation, Omri Steiner, Sangmoon Yi, Jinjiazh, Odin Hultgren Van Der Horst,
Nick Rivera, Qi Yang, kevin1018

v1.0.0-rc1

Toggle v1.0.0-rc1's commit message
Release of v1.0.0-rc1

This is the first release candidate for Hiredis v1.0.0 which introduces
RESP3 support, SSL connections, allocator injection, better Windows support,
and more.

IMPORTANT:  There are breaking changes in this release meaning your code
will need to be recompiled and may need small changes.  The exact
details of the breaking changes can be found in README.md.

CHANGELOG.md has a detailed list of changes between v0.14.1 and v1.0.0-rc1.

~~~

Thank you to everyone who contriubuted to the project by submitting PRs,
reporting bugs, or helping answer people's questions.

And a special thank you to the following people who contributed at least
five lines of code to this release (sorted by lines contributed) \o/

Michael Grunder, Yossi Gottlieb, Mark Nunberg, Marcus Geelnard, Justin Brewer,
Minun Dragonation, Omri Steiner, Sangmoon Yi, Jinjiazh, Odin Hultgren Van Der Horst,
Nick Rivera, Qi Yang, kevin1018

v0.14.1

Toggle v0.14.1's commit message
Release of 0.14.1

This is a small patch containing a fix for CVE-2020-7105 (failure to
check for NULL return when allocating memory).

v0.14.0

Toggle v0.14.0's commit message
Release of 0.14.0

The version number has been bumped in order to highlight some ABI changes
(which should technically be their own major version, but hiredis is still
technically in pre-release).

This is the first tagged release for a while, and the changes are numerous,
but is essentially a 'checkpoint' release to ensure we are using more or less
the same version as redis-cli

v0.13.3

Toggle v0.13.3's commit message
* Revert "Clear `REDIS_CONNECTED` flag when connection is closed".

* Make tests pass on FreeBSD (Thanks, Giacomo Olgeni)

If the `REDIS_CONNECTED` flag is cleared,
the async onDisconnect callback function will never be called.
This causes problems as the disconnect is never reported back to the user.

v0.13.2

Toggle v0.13.2's commit message
* Prevent crash on pending replies in async code (Thanks, @switch-st)

* Clear `REDIS_CONNECTED` flag when connection is closed (Thanks, Jerry Jacobs)
* Add MacOS X addapter (Thanks, @dizzus)
* Add Qt adapter (Thanks, Pietro Cerutti)
* Add Ivykis adapter (Thanks, Gergely Nagy)

All adapters are provided as is and are only tested where possible.