Skip to content

version 1.14.1 #373

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 1 commit into
base: develop
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,28 @@
2025-06-02 [version 1.14.1]
## 🐣 New Features
- Add a handler for the `INVALID` error.
- Return `MEMCACHED_DEPRECATED` when using old query_init function
in memcached_bop_smget
## 🔧 Enhancements
- Log unexpected events received from ZooKeeper watch.
- Do not reconnect about unknown response.
## ⚙️ Internal Changes
- Re-generate using the latest flex.
- Validation check for the bkey.
- Increase the cursor_active even in non-successful situations.
- Do not overwrite a last response on error.
- Fix a compile Werror
## 🐛 Bug Fixes
- Add a success case for 'NOT_EXIST' in the exist API.
- Fix an overwrite issue for the big key.
- Check dependencies in the prefix path before the default path.
## 📝 Documentation
- Update ChangeLog format.
- Improve API description.
## ✅ Testing
- Upgrade the ubuntu version for CI.
- Upgrade github actions version.

2024-09-02 [version 1.14.0]
## 🐣 New Features
- Add `mop upsert` method. #292
Expand Down
2 changes: 1 addition & 1 deletion config/version.pl
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
chomp $arcus_describe;

unless ($arcus_describe =~ m/^\d+\.\d+\.\d+/) {
write_file('m4/version.m4', "m4_define([VERSION_NUMBER], [1.14.0-unknown])\n");
write_file('m4/version.m4', "m4_define([VERSION_NUMBER], [1.14.1-unknown])\n");
exit;
}

Expand Down