| 27 ## Changelog |
27 ## Changelog |
| 28 |
28 |
| 29 ### Version 4.0 - preview {collapsible="true"} |
29 ### Version 4.0 - preview {collapsible="true"} |
| 30 |
30 |
| 31 * adds cx_system_page_size() to allocator.h |
31 * adds cx_system_page_size() to allocator.h |
| |
32 * changes cxFreeDefault() from a macro to a function so that it can be used as a simple destructor |
| 32 * changes cxBufferReserve() to allow reducing the capacity |
33 * changes cxBufferReserve() to allow reducing the capacity |
| 33 * changes the members of CxJson and CxJsonValue |
34 * changes the members of CxJson and CxJsonValue |
| 34 * changes the return value of cxJsonObjIter() to CxMapIterator |
35 * changes the return value of cxJsonObjIter() to CxMapIterator |
| 35 * changes CxTree structure so that it now inherits CX_COLLECTION_BASE |
36 * changes CxTree structure so that it now inherits CX_COLLECTION_BASE |
| |
37 * changes cxPropertiesLoad() to directly load properties from a file to a CxMap |
| 36 * fixes cxJsonWrite() incorrectly returning non-zero when strings needed to be escaped |
38 * fixes cxJsonWrite() incorrectly returning non-zero when strings needed to be escaped |
| 37 * fixes critical memory leak when using cxMapFree() on a kv-list that is using destructors |
39 * fixes critical memory leak when using cxMapFree() on a kv-list that is using destructors |
| 38 * fixes that overwriting items with cxMapPut() in a kv-list did not work |
40 * fixes that overwriting items with cxMapPut() in a kv-list did not work |
| 39 * fixes that cxReallocate(), cxReallocateArray(), cx_reallocate(), and cx_reallocatearray() |
41 * fixes that cxReallocate(), cxReallocateArray(), cx_reallocate(), and cx_reallocatearray() |
| 40 were not returning zero after freeing the memory when passed a size of zero |
42 were not returning zero after freeing the memory when passed a size of zero |
| 41 * removes the sort_members feature from CxJsonWriter |
43 * removes the sort_members feature from CxJsonWriter |
| |
44 * removes the source and sink API from properties.h |
| 42 |
45 |
| 43 ### Version 3.2 - 2025-11-30 {collapsible="true"} |
46 ### Version 3.2 - 2025-11-30 {collapsible="true"} |
| 44 |
47 |
| 45 * adds cxMempoolTransfer() and cxMempoolTransferObject() |
48 * adds cxMempoolTransfer() and cxMempoolTransferObject() |
| 46 * adds support for different destruction strategies in CxMempool |
49 * adds support for different destruction strategies in CxMempool |