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
19 changes: 19 additions & 0 deletions packages/qvac-lib-registry-server/shared/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Changelog

## 0.2.0

### Features

- Add `findBy()` method to `RegistryDatabase` for unified model querying with optional filters (`name`, `engine`, `quantization`, `includeDeprecated`)
- Add `findModelsByEngineQuantization()` method for compound index queries
- Add `models-by-engine-quantization` compound HyperDB index for efficient multi-field lookups

### Notes

- The `findBy()` method intelligently routes to the most efficient HyperDB index based on the provided parameters
- Compound index follows B-tree leftmost prefix matching: queries by `engine` alone or `engine + quantization` use the index natively; other combinations use in-memory filtering
- Existing `findModels*` methods remain unchanged

## 0.1.0

- Initial release
2 changes: 1 addition & 1 deletion packages/qvac-lib-registry-server/shared/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tetherto/qvac-registry-schema",
"version": "0.1.0",
"version": "0.2.1",
"description": "HyperDB schema and database wrapper for QVAC Registry",
"license": "Apache-2.0",
"type": "commonjs",
Expand Down