Releases: hypertrace/document-store
Releases · hypertrace/document-store
Release v0.6.6
What's Changed
- Encode alias so that they can contain special characters like dot
Release v0.6.5
Handle duplications using
(i) a overwrite strategy for duplicate selections
(ii) an error-out strategy for duplicate aliases
Release v0.6.4
What's Changed
- Got rid of hibernate and java el based validations by @avinashkolluru in #65
Full Changelog: 0.6.3...0.6.4
Release v0.6.3
What's Changed
- Fixed document-store dependencies by @avinashkolluru in #63
New Contributors
- @avinashkolluru made their first contribution in #63
Full Changelog: v0.6.2...0.6.3
Release v0.6.2
What's Changed
- Introduced a new Query design to support advanced querying
- Introduce the "aggregate()" and "find()" methods to support grouping and searching based on the new Query design
- Implemented the new methods for MongoDB
Contributors
Release v0.6.1
Added support for bulk operations on array value
Release v0.6.0
Use UpdateMany() instead of UpdateOne() for bulk updates (#53) * used updateMany() instead of updateOne() for bulk update operations * added implementation for postgres * added bulkUpdateSubDoc * added integration tests * changed return value for bulkUpdateSubDocs from int to BulkUpdateResult * Update document-store/src/main/java/org/hypertrace/core/documentstore/Collection.java Co-authored-by: SJ <[email protected]> Co-authored-by: Ankit Choudhary <[email protected]> Co-authored-by: Ankit Choudhary <[email protected]> Co-authored-by: SJ <[email protected]>
Release v0.5.8
fix: postgres iterator interface to handle any order (#52) * fix: postgres iterator interface to handle any order * chore: explictly failing instead of using assertion stmt * chore: rename the variable to cursorMovedForward
Release v0.5.7
Fixes #50: Handle sorting of documents on multiple attributes (#51) * fix: sorting on multiple attributes * style: reformat code * refactor: extract mongo query parsing methods into MongoQueryParser * refactor: extract postgres query parsing methods into PostgresQueryParser * test: parseOrderBys in PostgresQueryParser * test(integration): extend testOffsetAndLimitOrderBy with multiple orderBys
Release v0.5.6
Issue: https://github.com/hypertrace/document-store/issues/48 (#49) * Issue: https://github.com/hypertrace/document-store/issues/48 Add bulk update API implementation for Mongo. This PR does not provide an implementation for postgresql and can be added in a follow up PR * 1. Return BulkUpdateResult 2. Add logger.isDebugEnabled check * Fix spotless formatting issues * Introduce BulkUpdateRequest class to capture the triple that is passed to the bulkUpdate API * Update document-store/src/main/java/org/hypertrace/core/documentstore/Collection.java Co-authored-by: kotharironak <[email protected]> Co-authored-by: kotharironak <[email protected]>