From 447601dea1ce449e3335f296ea9fb5dbe202ea60 Mon Sep 17 00:00:00 2001 From: Namjae Kim Date: Thu, 11 Jul 2024 11:32:15 +0900 Subject: [PATCH] version 1.14.0 --- ChangeLog | 30 ++++++++++++++++++++++++++++++ config/version.pl | 2 +- 2 files changed, 31 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index fd587377b..c3622e3f1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,33 @@ +# 2024-07-11 [version 1.14.0] +## 🐣 New Features +* Remove an unused command `bget`. #749 +* Add `shutdown` command. #752 +* Add `mop upsert` command. #772 +## 🔧 Enhancements +* Enhance arcus_zk_watcher log messages. +* Set the update flag only when `ZOO_CONNECTED_STATE`. #735 +* Reduce `add_iov()` work for TCP connections. #737 +* Refactor the method of building UDP headers. +* Limit a value length from exceeding INT_MAX in binary protocol. +* Enhance log message when new respones before pipe error reset. +* Fix a clang static analyzer issue. +## 🐛 Bug Fixes +* Modify mismatched error types when `get_item_info()` failed. +* Fix the wrong `write_and_free` error handling in binary protocol. +* Fix problems about not released items and an assertion in UDP. +* Wait till the previous cmdlog flush thread ends. +* Correct wrong actions in `process_mop_prepare_nread()`. +## 📝 Documentation +* Remove old `bop smget` documentation. +* Correct small memory allocator threshold. +* Create Issue/PR templates. +* Update the description of `cmdlog`, `lqdetect`, `dump` commands. +* Add `mop upsert` document. +## ✅ Testing +* Add a distributed packet test about long key in UDP. +## ⬆️ Dependency Upgrades +* Update Docker base image from `centos:7` to `rockylinux:8`. + # 2024-01-17 [version 1.13.5] ## 🐣 New Features * Add `ready` command Add ready command to verify that the cache server can receive requests. In Zookeeper clustering, the cache node becomes ready state after creating its cache_list znode. #707 diff --git a/config/version.pl b/config/version.pl index 7a6658aa6..3b4becfbb 100755 --- a/config/version.pl +++ b/config/version.pl @@ -11,7 +11,7 @@ #my $version = '1.4.2-30-gf966dba'; #my $version = '1.4.3-rc1'; #my $version = '1.4.3'; -my $default_version = '1.13.5-unknown'; +my $default_version = '1.14.0-unknown'; unless ($version =~ m/^\d+\.\d+\.\d+/) { write_file('m4/version.m4', "m4_define([VERSION_NUMBER], [$default_version])\n");