Next | Query returned 17 messages, browsing 1 to 10 | Previous

History of commit frequency

CVS Commit History:


   2023-07-17 21:37:34 by Adam Ciarcinski | Files touched by this commit (3) | Package updated
Log message:
hiredis: updated to 1.2.0

v1.2.0 with with new adapters, and a great many bug fixes.

🚀 New Features

- Add sdevent adapter @Oipo
- Allow specifying the keepalive interval @michael-grunder
- Add RedisModule adapter @tezc
- Helper for setting TCP_USER_TIMEOUT socket option @zuiderkwast

🐛 Bug Fixes

- Fix a typo in b6a052f. @yossigo
- Fix wincrypt symbols conflict @hudayou
- Don't attempt to set a timeout if we are in an error state. @michael-grunder
- Accept -nan per the RESP3 spec recommendation. @michael-grunder
- Fix colliding option values @zuiderkwast
- Ensure functionality without `_MSC_VER` definition @windyakin

🧰 Maintenance

- Add a test for the TCP_USER_TIMEOUT option. @michael-grunder
- Add -Werror as a default. @yossigo
- CI: Update homebrew Redis version. @yossigo
- Fix typo in makefile. @michael-grunder
- Write a version file for the CMake package @Neverlord
- CMakeLists.txt: respect BUILD_SHARED_LIBS @ffontaine
- Cmake static or shared @autoantwort
- fix typo @tillkruss
- Add a test ensuring we don't clobber connection error. @michael-grunder
- Search for openssl on macOS @michael-grunder
   2023-01-24 19:36:36 by Thomas Klausner | Files touched by this commit (103)
Log message:
*: convert to cmake/build.mk
   2022-11-25 11:40:35 by Adam Ciarcinski | Files touched by this commit (4) | Package updated
Log message:
hiredis: updated to 1.1.0

1.1.0

🐛 Bug Fixes

Add support for nan in RESP3 double

🧰 Maintenance

Add an example that calls redisCommandArgv
fix flag reference
Make freeing a NULL redisAsyncContext a no-op.
CI updates
   2021-10-26 12:10:08 by Nia Alarie | Files touched by this commit (417)
Log message:
databases: Replace RMD160 checksums with BLAKE2s checksums

All checksums have been double-checked against existing RMD160 and
SHA512 hashes

The following distfiles could not be fetched (some may be only fetched
conditionally):

./databases/cstore/distinfo D6.data.ros.gz
./databases/cstore/distinfo cstore0.2.tar.gz
./databases/cstore/distinfo data4.tar.gz
   2021-10-08 08:46:02 by Adam Ciarcinski | Files touched by this commit (2) | Package updated
Log message:
hiredis: updated to 1.0.2

1.0.2:
Announcing Hiredis v1.0.2, which fixes CVE-2021-32765 but returns the SONAME to \ 
the correct value of 1.0.0.
   2021-10-07 15:35:53 by Nia Alarie | Files touched by this commit (417)
Log message:
databases: Remove SHA1 distfile hashes
   2021-10-05 14:14:54 by Adam Ciarcinski | Files touched by this commit (2) | Package updated
Log message:
hiredis: updated to 1.0.1

1.0.1
Fix for CVE-2021-32765 commit
   2021-06-23 21:35:44 by Adam Ciarcinski | Files touched by this commit (4) | Package updated
Log message:
hiredis: updated to 1.0.0

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.
   2020-03-22 19:20:12 by Thomas Klausner | Files touched by this commit (4) | Package updated
Log message:
hiredis: update to 0.14.1.

### 0.14.1 (2020-03-13)

* Adds safe allocation wrappers (CVE-2020-7105, #747, #752) (Michael Grunder)
   2019-11-26 13:43:42 by Thomas Klausner | Files touched by this commit (3) | Package updated
Log message:
hiredis: update to 0.14.0.

### 0.14.0

**Fixes**:

* Catch a buffer overflow when formatting the error message
* Import latest upstream sds. This breaks applications that are linked against \ 
the old hiredis v0.13
* Fix warnings, when compiled with -Wshadow
* Make hiredis compile in Cygwin on Windows, now CI-tested
* Bulk and multi-bulk lengths less than -1 or greater than `LLONG_MAX` are now
  protocol errors. This is consistent with the RESP specification. On 32-bit
  platforms, the upper bound is lowered to `SIZE_MAX`.

**BREAKING CHANGES**:

* Change `redisReply.len` to `size_t`, as it denotes the the size of a string

User code should compare this to `size_t` values as well.
If it was used to compare to other values, casting might be necessary or can be \ 
removed, if casting was applied before.

* Remove backwards compatibility macro's

This removes the following old function aliases, use the new name now:

| Old                         | New                    |
| --------------------------- | ---------------------- |
| redisReplyReaderCreate      | redisReaderCreate      |
| redisReplyReaderCreate      | redisReaderCreate      |
| redisReplyReaderFree        | redisReaderFree        |
| redisReplyReaderFeed        | redisReaderFeed        |
| redisReplyReaderGetReply    | redisReaderGetReply    |
| redisReplyReaderSetPrivdata | redisReaderSetPrivdata |
| redisReplyReaderGetObject   | redisReaderGetObject   |
| redisReplyReaderGetError    | redisReaderGetError    |

* The `DEBUG` variable in the Makefile was renamed to `DEBUG_FLAGS`

Previously it broke some builds for people that had `DEBUG` set to some \ 
arbitrary value,
due to debugging other software.
By renaming we avoid unintentional name clashes.

Simply rename `DEBUG` to `DEBUG_FLAGS` in your environment to make it working again.

Next | Query returned 17 messages, browsing 1 to 10 | Previous