chore(deps): Update dashmap requirement from 5.5 to 6.1#1
Closed
dependabot[bot] wants to merge 1 commit intomasterfrom
Closed
chore(deps): Update dashmap requirement from 5.5 to 6.1#1dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot[bot] wants to merge 1 commit intomasterfrom
Conversation
Updates the requirements on [dashmap](https://github.com/xacrimon/dashmap) to permit the latest version. - [Release notes](https://github.com/xacrimon/dashmap/releases) - [Commits](xacrimon/dashmap@v5.5.0...v6.1.0) --- updated-dependencies: - dependency-name: dashmap dependency-version: 6.1.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
Author
LabelsThe following labels could not be found: Please fix the above issues or remove invalid values from |
Author
|
Looks like dashmap is no longer updatable, so this is no longer needed. |
petitan
added a commit
that referenced
this pull request
Dec 19, 2025
…ch updates BUG #3 FIX: Added clear() method to BPlusTree and call it before rebuild in apply_batch_updates(). Without this, build_from_sorted was adding entries to the existing tree instead of replacing them, causing duplicate document entries after update_many operations. BUG #1 FIX: Extended batch_update_indexes() to also update fulltext indexes when document fields change. Previously only btree indexes were updated, leaving fulltext indexes stale after update_many. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
petitan
added a commit
that referenced
this pull request
Dec 19, 2025
Added 4 regression tests to prevent these bugs from recurring: BUG #1 (fulltext index not updated after update_many): - test_fulltext_index_updated_after_update_many: Verifies fulltext search returns correct results after bulk document updates BUG #3 (duplicate index entries after update_many): - test_apply_batch_updates_no_duplicates: Unit test for B+ tree - test_clear_resets_tree: Unit test for new clear() method - test_no_duplicate_documents_after_update_many: Integration test 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
petitan
added a commit
that referenced
this pull request
Dec 20, 2025
Changes: - Add WiX manifest (mcp-server/wix/main.wxs) with: - Windows Service installation (auto-start) - Start Menu shortcuts (HTTP + stdio modes) - ProgramData folder for config/database - Upgrade support (MajorUpgrade) - Add MIT License in RTF format for installer - Update release.yml to build MSI installer Also includes: - fix(core): WAL ABORT on persist failure (BUG #5) - fix(core): batch_update_indexes for compound/fuzzy/fulltext - fix(core): collection_write_locks cleanup in drop_collection - feat(tui): fulltext search modal with F3 shortcut - test: regression tests for BUG #1, #3, schema cache 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
petitan
added a commit
that referenced
this pull request
Dec 21, 2025
…ation BUG #1: $pull unknown operator now returns false (was true - caused data loss) BUG #2: $inc uses saturating_add to prevent integer overflow corruption BUG #3: Query cache uses consistent lock ordering to prevent TOCTOU race BUG #4: $inc validates numeric values and returns error for non-numeric BUG #5: $push $position validates non-negative values BUG #6: compare_values uses integer comparison first for precision BUG #7: $first/$last returns null instead of error for missing fields 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
petitan
added a commit
that referenced
this pull request
Dec 21, 2025
CRITICAL: - BUG #1: Transaction commit/rollback now uses write lock (was read lock - race condition) - BUG #2: max_operations=0 now uses default limit (was unlimited - DoS vulnerability) - BUG #3: switch_database acquires write lock before existence check (TOCTOU fix) - BUG #4: API key serialization uses ? instead of unwrap (was panic risk) HIGH: - BUG #5: Script versioning uses optimistic locking with version check (race condition fix) - BUG #6: API key cache logs errors instead of silent ignore - BUG #7: Script delete checks for dependent scripts before deletion - BUG #8: TLS key file read once into memory, no double-open - BUG #9: Collection flags update uses write lock (was read lock) MEDIUM: - BUG #10: Projection validation checks values before truncating cast - BUG #12: Script name validation added (same rules as collection names) - BUG #13: Directory creation failures logged instead of silent ignore - BUG #14: All unwrap/expect calls replaced with proper error handling NOT A BUG: - BUG #11: parking_lot::Mutex doesn't poison (verified) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
petitan
added a commit
that referenced
this pull request
Dec 21, 2025
BUG #1: Signal handler panic - .expect() replaced with graceful error handling BUG #2: Error response body read - unwrap_or_default() replaced with proper error handling BUG #3: JSON serialization - .ok() replaced with serialize_response() helper BUG #4: stdout write errors - detect broken pipe and exit gracefully BUG #5: DoS via unbounded batch - add MAX_BATCH_SIZE limit (1000) BUG #6: DoS via response size - add MAX_RESPONSE_SIZE limit (10MB) BUG #7: SSRF via URL parsing - use url crate for proper URL construction BUG #8: Insecure TLS mode - add prominent warning banner BUG #9: Notification errors silent - log notification forward errors BUG #10: Health check sleep overflow - cap backoff to MAX_HEALTH_BACKOFF_MS BUG #11: Empty batch allowed - reject per JSON-RPC 2.0 spec BUG #12: Missing jsonrpc validation - validate "2.0" version field 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
petitan
added a commit
that referenced
this pull request
Dec 21, 2025
CRITICAL: - BUG #1: UTF-8 byte slicing in error.rs wrap_text() - use char count - BUG #2: UTF-8 byte slicing in main.rs command bar truncation HIGH: - BUG #3: UTF-8 byte slicing in fulltext.rs format_doc_preview() - BUG #4: UTF-8 byte slicing in api_key.rs truncate() - BUG #5: Added timeout to stdio transport to prevent deadlock - BUG #6: Unsafe unwrap in detail.rs - use if-let pattern - BUG #7: Unsafe iterator unwrap in detail.rs - use while-let All string slicing operations now use .chars().count() and .chars().take(n).collect() for UTF-8 safety with Hungarian text. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
petitan
added a commit
that referenced
this pull request
Jan 6, 2026
Bug fixes for timeout/cancellation not being enforced in several code paths: ## Critical fixes (BUG #3, #4, #11) - filter_doc_ids_by_query: Now checks deadline BEFORE expensive regex matching - collect_doc_ids_for_logical_operator: Propagates cancel_flag/deadline to all branches (And/Or/Nor) - distinct_with_ctx: Was ignoring ctx parameter, now properly extracts and passes deadline ## Medium severity fixes (BUG #1, #2, #5) - FAST PATH: Added deadline check before returning cached/fast results - collect_doc_ids_from_plan: Added cancel_flag/deadline parameters - find_with_index: Added ctx parameters for future support ## ACID Safety Write operations (insert/update/delete) explicitly pass None for deadline to preserve atomicity - only READ operations can be interrupted. ## Documentation - Added deadline propagation docs to QueryExecutionContext - Added timeout behavior docs to filter_doc_ids_by_query Propagation chain: collect_doc_ids_with_options → collect_doc_ids_from_plan → collect_doc_ids_for_logical_operator → filter_doc_ids_by_query → scan_documents_with_early_termination 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
petitan
added a commit
that referenced
this pull request
Jan 14, 2026
Bug fixes for timeout/cancellation not being enforced in several code paths: ## Critical fixes (BUG #3, #4, #11) - filter_doc_ids_by_query: Now checks deadline BEFORE expensive regex matching - collect_doc_ids_for_logical_operator: Propagates cancel_flag/deadline to all branches (And/Or/Nor) - distinct_with_ctx: Was ignoring ctx parameter, now properly extracts and passes deadline ## Medium severity fixes (BUG #1, #2, #5) - FAST PATH: Added deadline check before returning cached/fast results - collect_doc_ids_from_plan: Added cancel_flag/deadline parameters - find_with_index: Added ctx parameters for future support ## ACID Safety Write operations (insert/update/delete) explicitly pass None for deadline to preserve atomicity - only READ operations can be interrupted. ## Documentation - Added deadline propagation docs to QueryExecutionContext - Added timeout behavior docs to filter_doc_ids_by_query Propagation chain: collect_doc_ids_with_options → collect_doc_ids_from_plan → collect_doc_ids_for_logical_operator → filter_doc_ids_by_query → scan_documents_with_early_termination 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
petitan
added a commit
that referenced
this pull request
Jan 23, 2026
Previously insert_one_tx used HashMap.get() for index field lookup which only worked for top-level fields. Changed to use get_nested_value() for consistency with update_one_tx and delete_one_tx, enabling proper indexing of nested fields like "profile.code". Fixes audit issue #1 - inconsistent dot notation support across tx methods. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This was referenced Feb 17, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Updates the requirements on dashmap to permit the latest version.
Release notes
Sourced from dashmap's releases.
Commits
f2d248ev6.1.0da6ac5eAdd typesize::TypeSize implementation for DashMap/DashSet (#308)633aadbv6.0.1d5c8be6add shrink_to_fit test488dbfafix deadlock in shrink_to_fit (#305)458238cv6.0.01e3df1av6.0.0-rc.1bdb86b0Merge branch 'arthurprs-small-optimizations'4cdfc39fix: merge errors74b34f8Merge branch 'small-optimizations' of github.com:arthurprs/dashmap into arthu...Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)