All Versions
19
Latest Version
Avg Release Cycle
33 days
Latest Release
2601 days ago
Changelog History
Page 1
Changelog History
Page 1
-
v4.3.1 Changes
February 01, 2018๐ท Tag
4.3.1
.Date
January 31st, 2018
๐ Changes
- ๐ Fix compilation issues on some platforms
- ๐ Fix CMake configuration issues
- Compile with position independent code
- ๐ Fix issue when reconnecting if the internal buffer was not cleared. Now fully clear all input/output buffers
- Fix set_nb_workers behavior
- Bump tacopie: compilation fix, position independent code, set_nb_workers fix
โ Additions
None
Removals
None
-
v4.3.0 Changes
November 14, 2017๐ท Tag
4.3.0
.Date
November 13th, 2017
๐ Changes
- 0๏ธโฃ tacopie: fork support: allow set_default_io_service to take nullptr. In order to safely fork, call set_default_io_service(nullptr) to make sure the io_service destructor is called and all underlying threads joined.
- โฑ tacopie: fix: timeout for connection not working due to invalid param to select, now working
- tacopie: improvement: make sure socket is in blocking mode before connection (#32) as it differs from one OS to another
- tacopie: improvement: check for non-blocking connect errors with getsockopt to avoid connect reporting a successful connection followed by a call to disconnection handler (now connect report a failed
โ Additions
- tacopie: ipv6 support (connect, bind and accept operations, on tcp_server and tcp_client)
Removals
None
-
v4.2.0 Changes
November 03, 2017๐ท Tag
4.2.0
.Date
November 2nd, 2017
๐ Changes
- ๐ CMake fix: Remove explicit STATIC in add_library call so dynamic libraries can be built and improve consistency
- โก๏ธ Tacopie bump to 3.1.0 (refer to tacopie changelog for updates)
โ Additions
- Visual Studio C++ solution
Removals
None
-
v4.1.0 Changes
September 26, 2017๐ท Tag
4.1.0
.Date
September 26th, 2017
๐ Changes
- ๐ Fix some compilation issues on windows (on both cpp_redis and tacopie sides)
- scan command improvement with additional overloads
โ Additions
- sort command
- hscan command
- sscan command
- zscan command
- zinterstore command
- zunionstore command
- zrangebyscore command
- zrevrangebyscore command
- zrangebylex command
- zrevrangebylex command
- georadius command
- georadiusbymember command
- bitfield command
Removals
- ๐ Private, Protected and Static functions from doxygen documentation
-
v4.0.0 Changes
September 25, 2017๐ท Tag
4.0.0
.Date
September 20th, 2017
๐ Changes
- ZADD score param changed from map to multimap to allow multiple elements with same score
- connection_callback (replacement of disconnection_callback). Called for any steps of connection process (attempt, success, failure, reconnection, drop, ...)
โ Additions
- ๐ Sentinel support
- Automatic reconnection if requested
- โฑ Connection timeout
- ๐ท Ability to set number of io workers if you are working with tacopie
redis_client
renamed intoclient
redis_subscriber
renamed intosubscriber
- commands that failed to be sent (client not connected or disconnected) get their callback called with an error reply
connection failure
. This ensure that now all callbacks are always called - if reconnection process is enabled and succeed, failed commands are resent
- if you send command and commit while client is not connected, it will now dismiss the commands and call their callback with an error, or resend them if reconnection is enabled. This is a change compared to the existing behavior that simply kept the commands in the buffer.
- ๐ doxygen documentation
Removals
- ๐ future_client: all functions have been merge into the redis_client
- disconnection_callback: it is now replaced by the connection callback
๐ This is a major release with lots of breaking changes.
๐ง It aims to enable high availability configuration as well as improved consistency with an enhanced design.โฌ๏ธ If you are upgrading please consider the following breaking changes:
redis_client
is nowclient
andredis_subscriber
is nowsubscriber
- ๐
future_client
has been removed, but it is actually merged intoclient
. Simply switch fromfuture_client
toclient
and you will have the same behavior - ๐
disconnection_callback
has been removed and replaced by aconnection_callback
. If you are looking for exact same behavior, you will have to check if the state param is equal todropped
. - commands callbacks are always called. In case of failure, an error reply is passed in.
Any other changes should not be breaking changes but you might be interested into the added features.
-
v3.5.4 Changes
August 25, 2017๐ท Tag
3.5.4
.Date
August 24th, 2017
๐ Changes
- fix issue #86 by changing some int32_t to int64_t (was causing overflow leading to stuck program on some architecture)
- ๐ improve travis build with caching
โ Additions
- ZADD command
- CLIENT KILL
Removals
None
-
v3.5.3 Changes
July 02, 2017๐ท Tag
3.5.3
.Date
July 2nd, 2017
๐ Changes
- โฌ๏ธ bump tacopie to fix #85 - select keep sleeping and does not process incoming read/write events
โ Additions
None
Removals
None
-
v3.5.2 Changes
June 21, 2017๐ท Tag
3.5.2
.Date
June 19th, 2017
๐ Changes
- Fix TACOPIE_CMAKE_ARGS getting converted to a string instead of a list
- ๐ Fix Issue 76 (CMake install dir)
- โฌ๏ธ bump tacopie - fixes to address high CPU usage issues.
โ Additions
- Expose wait_for_removal in .disconnect of redis_client redis_subcriber future_client
Removals
None
-
v3.5.1 Changes
April 30, 2017๐ท Tag
3.5.1
.Date
April 30th, 2017
๐ Changes
- ๐ Fix compilations on windows
- ๐ Fix reconnection behavior
- ๐ Do not clear commands/callback buffer on calling commit or sync_commit while client is disconnected.
โ Additions
None
Removals
None
-
v3.5.0 Changes
April 10, 2017๐ท Tag
3.5.0
.Date
April 9th, 2017
๐ Changes
None
โ Additions
- New feature - Update tacopie ref - Provide support for Unix socket. Simply pass in 0 as the port when building a
redis_client
,redis_subscriber
orfuture_client
. Then, the host will automatically be treated as the path to a Unix socket instead of a real host. - More in #67.
Removals
None
- New feature - Update tacopie ref - Provide support for Unix socket. Simply pass in 0 as the port when building a