Spring Data Aerospike version 3.1.0 was released on August 25, 2021.
Features
- Support Multiple Namespaces @roimenashe (#269).
Bug Fixes
- Storing a user key twice fix (PK vs @user_key) @roimenashe (#275).
Breaking Changes
- We do not store “@user_key” anymore, there is “PK” instead (same data: the actual user key) - if you used @user_key in your application please use “PK” instead.
- AerospikeWriteData: forWrite method:
This method is used internally by our “write” flows, if you used it directly please notice that this method’s signature was changed
from:
AerospikeWriteData forWrite()
to:
AerospikeWriteData forWrite(String namespace)