Skip to content
Merged
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
22 changes: 22 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,25 @@
2026-02-04 [version 1.16.0]
## 🐣 New Features
- Remove the old smget API.
- Add gat API.
- Add shard key support.
## ⚙️ Internal Changes
- Pass authentication when `NOT_SUPPORTED` or `PROTOCOL_ERROR`.
- Subroutine buffer_request check into `memcached_vdo()`.
- Add sasluser to client_list.
- Disable `memcached_set_sasl_callbacks()`.
## 🐛 Bug Fixes
- Unlock mutex before return if sasl startup fails.
- Correct invalid check logic for servername.
## 📝 Documentation
- Add sasl guide docs.
- Add verify_key guide docs.
- Update document structure.
- Add initial user guide.
- Add touch and gat documentations.
## ✅ Testing
- Do not set CFLAGS when running configure.

2025-09-22 [version 1.15.0]
## 🐣 New Features
- Add touch API.
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.15.0-unknown])\n");
write_file('m4/version.m4', "m4_define([VERSION_NUMBER], [1.16.0-unknown])\n");
exit;
}

Expand Down