-
Notifications
You must be signed in to change notification settings - Fork 2
Release version 1.8.4 #87
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
Changes from 4 commits
234a5a6
01be54c
dc53828
dca1b97
4682160
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,10 +1,20 @@ | ||
| # Changelog - @objectql/driver-redis | ||
|
|
||
| ## 1.8.4 | ||
|
|
||
| ### Patch Changes | ||
|
|
||
| - Release version 1.8.4 with latest improvements and bug fixes | ||
| - **Note**: Version synchronized with other ObjectQL packages per fixed versioning policy | ||
| - Updated dependencies | ||
| - @objectql/types@1.8.4 | ||
|
|
||
| All notable changes to the Redis driver will be documented in this file. | ||
|
|
||
| ## [0.1.0] - 2026-01-15 | ||
|
|
||
| ### Added | ||
|
|
||
|
||
| - Initial example implementation of Redis driver for ObjectQL | ||
| - Basic CRUD operations (Create, Read, Update, Delete) | ||
| - Query filtering support (in-memory) | ||
|
|
@@ -15,18 +25,21 @@ All notable changes to the Redis driver will be documented in this file. | |
| - Documentation and usage examples | ||
|
|
||
| ### Notes | ||
|
|
||
| - This is an **example/template implementation** for educational purposes | ||
| - Not recommended for production use with large datasets due to full key scanning | ||
| - Serves as a reference for creating custom ObjectQL drivers | ||
|
|
||
| ### Known Limitations | ||
|
|
||
| - Uses KEYS command which scans all keys (inefficient for large datasets) | ||
| - All filtering and sorting done in-memory | ||
| - No native aggregation support | ||
| - No transaction support | ||
| - No schema introspection | ||
|
|
||
| ### Recommendations for Production | ||
|
|
||
| - Implement RedisJSON module integration | ||
| - Add RedisSearch for indexed queries | ||
| - Create secondary indexes using Redis Sets | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The existing changelog content should be moved under the initial 0.1.0 release section. The line "All notable changes to the Redis driver will be documented in this file" appears after the new 1.8.4 section but logically belongs at the top of the file before any version entries.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed in commit 4682160. Removed the misplaced line and updated the header to match other driver CHANGELOG formats (using
# @objectql/driver-redisinstead of# Changelog - @objectql/driver-redis).