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