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