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