dart_valkey 0.0.3
dart_valkey: ^0.0.3 copied to clipboard
Dart client for Valkey (and Redis-compatible servers)
Changelog #
All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
0.0.3 - 2025-10-20 #
Changed #
- Enhanced repository quality and project standards with a wide range of documentation, CI, and metadata improvements.
- Added community standards files:
AUTHORS.md,CONTRIBUTING.md. - Added GitHub templates for bug reports, feature requests, and pull requests.
- Added a runnable example in the
example/directory. - Updated
pubspec.yamlwithtopicsfor better discoverability. - Added a comprehensive set of badges and a Codecov graph to
README.md. - Configured Dependabot for automatic dependency updates.
- Integrated Codecov for test coverage reporting in the CI workflow.
0.0.2 - 2025-09-14 #
Added #
- Added the ability to customize the Nagle algorithm (
socket.setOption(SocketOption.tcpNoDelay, true)).
0.0.1 #
- Initial version.
Added #
- Initial release of the package.
- Added core client functionality.
- Implemented basic RESP decoding and encoding.
- Included initial set of commands (e.g., PING, ECHO).
- Implemented connection management (secure and insecure).
- Added Pub/Sub client with regular, pattern, and shard subscription mixins.
- Implemented various command groups (Hashes, Keys, Lists, Sets, Strings, ZSets).