|
1 | 1 | # Changelog
|
2 | 2 |
|
| 3 | +## [v3.5.0](https://github.com/Cylix/cpp_redis/releases/tag/3.5.0) |
| 4 | +### Tag |
| 5 | +`3.5.0`. |
| 6 | +### Date |
| 7 | +April 9th, 2017 |
| 8 | +### Changes |
| 9 | +None |
| 10 | +### Additions |
| 11 | +* New feature - Update tacopie ref - Provide support for Unix socket. Simply pass in 0 as the port when building a `redis_client`, `redis_subscriber` or `future_client`. Then, the host will automatically be treated as the path to a Unix socket instead of a real host. - More in #67. |
| 12 | +### Removals |
| 13 | +None |
| 14 | + |
| 15 | + |
| 16 | + |
3 | 17 | ## [v3.4.0](https://github.com/Cylix/cpp_redis/releases/tag/3.4.0)
|
| 18 | +### Tag |
| 19 | +`3.4.0`. |
4 | 20 | ### Changes
|
5 | 21 | * Change: update tacopie ref - IO Service is now based on `select` and not on `poll` anymore to solve some issues encountered on windows due to the buggy implementation of `poll` on windows Systems.
|
6 |
| - |
7 | 22 | ### Additions
|
8 | 23 | None
|
9 |
| - |
10 | 24 | ### Removals
|
11 | 25 | None
|
12 | 26 |
|
| 27 | + |
| 28 | + |
13 | 29 | ## [v3.3.0](https://github.com/Cylix/cpp_redis/releases/tag/3.3.0)
|
| 30 | +### Tag |
| 31 | +`3.3.0`. |
14 | 32 | ### Changes
|
15 | 33 | * Rename `redis_client::before_callback` into `redis_client::set_callback_runner` which is more relevant.
|
16 | 34 | * Before, `future_client` automatically called `.commit` when sending a command, meaning that no pipelining was done for the `future_client`. This has been changed and the `future_client` do not call `.commit` anymore: this is a **breaking** change and you **must** call `.commit` or `.sync_commit` when you wish the commands to be effectively sent. Please refer to the examples if necessary.
|
17 |
| - |
18 | 35 | ### Additions
|
19 | 36 | * Add `commit` and `sync_commit` methodsto the `future_client` for pipelining support.
|
20 | 37 | * documentation for `redis_client::before_callback` has been added
|
21 | 38 | * documentation for `future_client` has been added
|
22 |
| - |
23 | 39 | ### Removals
|
24 | 40 | None
|
25 | 41 |
|
| 42 | + |
| 43 | + |
26 | 44 | ## [v3.2.1](https://github.com/Cylix/cpp_redis/releases/tag/3.2.1)
|
| 45 | +### Tag |
| 46 | +`3.2.1`. |
27 | 47 | ### Changes
|
28 | 48 | * Fix static initialization order fiasco condition
|
29 | 49 | * Change `__CPP_REDIS_USE_TACOPIE` (cmake variable: `USE_TACOPIE`) into `__CPP_REDIS_USE_CUSTOM_TCP_CLIENT` (cmake variable: `USE_CUSTOM_TCP_CLIENT`). Of course, the meaning is now the opposite.
|
30 |
| - |
31 | 50 | ### Additions
|
32 | 51 | None
|
33 |
| - |
34 | 52 | ### Removals
|
35 | 53 | None
|
36 | 54 |
|
| 55 | + |
| 56 | + |
37 | 57 | ## [v3.2.0](https://github.com/Cylix/cpp_redis/releases/tag/3.2.0)
|
| 58 | +### Tag |
| 59 | +`3.2.0`. |
38 | 60 | ### Changes
|
39 | 61 | * tacopie is no longer a mandatory dependency, but just provided by default and can be override if necessary.
|
40 |
| - |
41 | 62 | ### Additions
|
42 | 63 | * add a new interface, `cpp_redis::network::tcp_client_iface` that allows you to use your own tcp_client in place of tacopie.
|
43 |
| - |
44 | 64 | ### Removals
|
45 | 65 | * The `sync_client` has been removed as it was a duplicate of `redis_client::sync_commit` but with a different implementation based on futures. Please use `redis_client` and call `sync_commit` instead.
|
46 | 66 |
|
| 67 | + |
| 68 | + |
47 | 69 | ## [v3.1.2](https://github.com/Cylix/cpp_redis/releases/tag/3.1.2)
|
| 70 | +### Tag |
| 71 | +`3.1.2`. |
48 | 72 | ### Changes
|
49 | 73 | * rename the `setbit()` function into `setbit_()` in order to avoid conflict with the standard library macro `setbit` causing compilation error.
|
50 |
| - |
51 | 74 | ### Additions
|
52 | 75 | * add `send()` method to the `sync_client` and `future_client`.
|
53 |
| - |
54 | 76 | ### Removals
|
55 | 77 | None
|
56 | 78 |
|
| 79 | + |
| 80 | + |
57 | 81 | ## [v3.1.1](https://github.com/Cylix/cpp_redis/releases/tag/3.1.1)
|
| 82 | +### Tag |
| 83 | +`3.1.1`. |
58 | 84 | ### Changes
|
59 | 85 | * Fix: subscriber callbacks were sometimes not called due to poll not listening to the appropriate events. Mostly impacted windows as referred in #51, but unix version might also be impacted. Fixed by updating the reference tacopie which contains the fix.
|
60 |
| - |
61 | 86 | ### Additions
|
62 | 87 | None
|
63 |
| - |
64 | 88 | ### Removals
|
65 | 89 | None
|
66 | 90 |
|
| 91 | + |
| 92 | + |
67 | 93 | ## [v3.1.0](https://github.com/Cylix/cpp_redis/releases/tag/3.1.0)
|
| 94 | +### Tag |
| 95 | +`3.1.0`. |
68 | 96 | ### Changes
|
69 | 97 | * Fix: compilation for specific windows compilers concerning atomic variables
|
70 | 98 | * Fix: handle correctly array replies with negative size by returning a null reply instead of throwing an invalid format exception
|
71 | 99 | * Fix: Bump tacopie version to retrieve a fix concerning gethostbyname() thread-safety issue on unix
|
72 | 100 | * Fix: compilation for programs based on Qt ('slots' conflict)
|
73 |
| - |
74 | 101 | ### Additions
|
75 | 102 | * Add some overloads for the Z set functions to support floating point values
|
76 | 103 | * Add an auth method to the subscriber class to allow a subscriber to authenticate on the redis server
|
77 |
| - |
78 | 104 | ### Removals
|
79 | 105 | None
|
80 | 106 |
|
81 | 107 |
|
| 108 | + |
| 109 | + |
82 | 110 | ## [v3.0.0](https://github.com/Cylix/cpp_redis/releases/tag/3.0.0)
|
| 111 | +### Tag |
| 112 | +`3.0.0`. |
83 | 113 | ### Changes
|
84 | 114 | * Rewrite the network side of cpp_redis by using the [tacopie library](https://github.com/Cylix/tacopie)
|
85 |
| - |
86 | 115 | ### Additions
|
87 | 116 | * Tacopie is now a submodule of cpp_redis
|
88 |
| - |
89 | 117 | ### Removals
|
90 | 118 | * All network related code
|
91 | 119 |
|
92 | 120 |
|
| 121 | + |
| 122 | + |
93 | 123 | ## [v2.2](https://github.com/Cylix/cpp_redis/releases/tag/2.2)
|
| 124 | +### Tag |
| 125 | +`2.2`. |
94 | 126 | ### Changes
|
95 | 127 | * Bug patch
|
96 | 128 | * io_service is no longer a singleton
|
97 | 129 | * `redis_client` and `redis_subscriber` instances can be assigned specific io_service
|
98 |
| - |
99 | 130 | ### Additions
|
100 | 131 | * Integration Tests
|
101 | 132 | * Travis Integration
|
|
104 | 135 | * Support for acknowledgement callbacks for `cpp_redis::redis_subscriber`
|
105 | 136 | * Logging system
|
106 | 137 | * Compilation Customizations
|
107 |
| - |
108 | 138 | ### Removals
|
109 | 139 | None
|
0 commit comments