Fix libmemcachedprotocol's binary `STAT` and `VERSION` handlers.
[awesomized/libmemcached] / ChangeLog-1.1.md
1 # ChangeLog v1.1
2
3 ## v 1.1.0-beta3
4
5 > TBR
6
7 **Changes from beta2:**
8
9 * Fix libmemcachedprotocol's binary `STAT` and `VERSION` handlers.
10 * Fix [gh #105](https://github.com/m6w6/libmemcached/issues/105):
11 EINTR handled too defensively when polling.
12
13 ## v 1.1.0-beta2
14
15 > released 2020-12-28
16
17 **Changes from beta1:**
18
19 * Fix [gh #103](https://github.com/m6w6/libmemcached/issues/103):
20 Build failure on 32-bit.
21 * Fix [gh #102](https://github.com/m6w6/libmemcached/issues/102):
22 Doc build with old sphinx.
23 * Fix [gh #100](https://github.com/m6w6/libmemcached/issues/100):
24 Revert symbolic rename of public header include directories.
25 * Fix [gh #98](https://github.com/m6w6/libmemcached/issues/98):
26 Library SONAMEs and NAME_LINKs differ from 1.0.18.
27 * Fix [gh #97](https://github.com/m6w6/libmemcached/issues/97):
28 Location of cmake files installation directory.
29 * Fix [gh #96](https://github.com/m6w6/libmemcached/issues/96):
30 LIBXXX_VERSION_HEX constants format.
31
32 ## v 1.1.0-beta1
33
34 > released 2020-12-21
35
36 **NOTE:**
37 This is a bug fix release, not a feature release. The minor version number
38 was incremented due to the following changes:
39
40 * Ported build system to CMake.
41 * Ported test suite to Catch2.
42 * Build requires C++11 compiler support.
43 * Tests require C++17 compiler support.
44 * Moved to the Semantic Versioning Specification: https://semver.org
45 * Moved the project from launchpad to github:
46 * Source: https://github.com/m6w6/libmemcached
47 * Documentation: https://m6w6.github.io/libmemcached
48 * Continuous Integration:
49 * Github: https://github.com/m6w6/libmemcached/actions (Linux, MacOS, Windows **·** amd64)
50 * Sourcehut: https://builds.sr.ht/~m6w6/libmemcached (FreeBSD, OpenBSD **·** amd64)
51 * Build artifacts: https://artifacts.m6w6.name/libmemcached/ rsync://m6w6.name::artifacts/libmemcached/
52
53
54 * Fix build failure due to comparison of incompatible types in bin/memflush and bin/memstat.
55 * Fix wrong type of memcached_instance_st::server_timeout_counter_query_id from uint32_t to uint64_t.
56 * Fix memcached_dump():
57 returned MEMCACHED_CLIENT_ERROR on request to dump illegal slab id.
58 * Fix bin/memcapable:
59 failed with "No hostname was provided" when providing a hostname.
60 * Fix hashkit/murmur and hashkit/murur3:
61 undefined behavior on platforms requiring aligned access.
62 * Fix Memcache::set():
63 possible subscription of empty vector.
64 * Fix libmemcached_util_version_check().
65 * Fix ketama/consistent hashing:
66 crash on reallocation of continuum.
67 * Fix [gh #90](https://github.com/m6w6/libmemcached/issues/90):
68 Build fails on Darwin.
69 * Fix [gh #83](https://github.com/m6w6/libmemcached/issues/83):
70 memcp waits forever if file no found.
71 * Fix [gh #80](https://github.com/m6w6/libmemcached/issues/80):
72 memparse docs.
73 * Fix [gh #72](https://github.com/m6w6/libmemcached/issues/72)
74 and [gh #47](https://github.com/m6w6/libmemcached/issues/47):
75 memcached_return_t docs.
76 * Fix [gh #62](https://github.com/m6w6/libmemcached/issues/62):
77 uint32_t overflow cause busy loop.
78 * Removed restriction of UDP+IPv6.
79 * Fix SERVER_ERROR_MEMORY_ALLOCATION_FAILURE:
80 recognize more strings returned by the server.
81 * Fix [gh #13](https://github.com/m6w6/libmemcached/issues/13):
82 reset continuum counter after freeing them.
83 * Fix [gh #14](https://github.com/m6w6/libmemcached/issues/14)
84 and [gh #17](https://github.com/m6w6/libmemcached/issues/17):
85 SASL: AUTH_CONTINUE was considered a failure and caused IO reset.
86 * Fix [gh #25](https://github.com/m6w6/libmemcached/issues/25):
87 hashkit/murmur3 unavailable.
88 * Fix missing handling of EAGAIN for non-blocking unix domain socket.
89 * Fix [gh #35](https://github.com/m6w6/libmemcached/issues/35):
90 handling of BEHAVIOR_REMOVE_FAILED_SERVERS.
91 * Fix [gh #41](https://github.com/m6w6/libmemcached/issues/41):
92 ensure stable sort on continuum host key collision.
93 * Fix [gh #42](https://github.com/m6w6/libmemcached/issues/42):
94 MEMCACHED_MAX_BUFFER docs.
95 * Fix [gh #43](https://github.com/m6w6/libmemcached/issues/43):
96 libmemcached_configuration docs.
97 * Fix [gh #46](https://github.com/m6w6/libmemcached/issues/46):
98 clarification on millisecond timeout docs.
99 * Fix [gh #50](https://github.com/m6w6/libmemcached/issues/50):
100 memcached_fetch_result() can return previously returned data.
101 * Fix [gh #53](https://github.com/m6w6/libmemcached/issues/53):
102 stack overflow in memcached_fetch_result().
103 * Fix [gh #57](https://github.com/m6w6/libmemcached/issues/57):
104 include <inttypes.h> vs <cinttypes>
105 * Fix [gh #58](https://github.com/m6w6/libmemcached/issues/58):
106 more specific error messages when connect() fails.
107 * Fix [gh #59](https://github.com/m6w6/libmemcached/issues/59):
108 bin/memcat: typo in "No servers provied".
109 * Fix [gh #77](https://github.com/m6w6/libmemcached/issues/77):
110 undeclared UINT64_C in ketama.cc.
111 * Fix [gh #12](https://github.com/m6w6/libmemcached/issues/12):
112 never reconnects after connection reset (binary protocol).
113 * Fix [gh #49](https://github.com/m6w6/libmemcached/issues/49):
114 assertion memcached_failed(rc) failed in memcached_send_ascii().
115 * Fix [gh #67](https://github.com/m6w6/libmemcached/issues/67):
116 get returns NOTFOUND on timeout.
117 * Fix [gh #76](https://github.com/m6w6/libmemcached/issues/76):
118 memcached_touch() crashes when expiration=-1 (ASCII only).
119 * Fix [gh #23](https://github.com/m6w6/libmemcached/issues/23):
120 build fails with bison 2.3.
121 * Fix memaslap: build fails with newer compiler versions.
122 * Fix usage of strerror_r() implementations returning pointer to char.
123 * Fix pipelining commands with memcached >= 1.6.
124 * Fix memcached_stat_get_value(): buffer overflow.
125 * Fix memcached_stat(): undefined behavior due to unintialized memcached_return_t.
126 * Fix SASL tests: requires SASL_PWDB_CONF.
127 * Fix bin/memaslap to idnentify itself as memaslap instead of memslap.
128 * Fix bin/memcapable to work with memcached >= 1.6.
129 * Fix murmur and murmur3 hashes on big endian platforms.
130 * Fix [gh #82](https://github.com/m6w6/libmemcached/issues/82),
131 [gh #64](https://github.com/m6w6/libmemcached/issues/64) and
132 [gh #21](https://github.com/m6w6/libmemcached/issues/21):
133 clarify documentation on replication.
134 * Fix [gh #95](https://github.com/m6w6/libmemcached/issues/95):
135 MEMCACHED_CALLBACK_GET_FAILURE and MEMCACHED_BEHAVIOR_BUFFER_REQUESTS
136 * Fix bin/memcat to output flags if requested with `--flag`.
137 * Fix [gh #68](https://github.com/m6w6/libmemcached/issues/68):
138 Windows support.
139
140 ---
141
142 See [ChangeLog-1.0](./ChangeLog-1.0.md) for changes prior v1.1.