Skip to content

chore(deps): bump devalue from 5.6.1 to 5.6.3#231

Closed
dependabot[bot] wants to merge 1805 commits intotestfrom
dependabot/npm_and_yarn/devalue-5.6.3
Closed

chore(deps): bump devalue from 5.6.1 to 5.6.3#231
dependabot[bot] wants to merge 1805 commits intotestfrom
dependabot/npm_and_yarn/devalue-5.6.3

Conversation

@dependabot
Copy link

@dependabot dependabot bot commented on behalf of github Feb 20, 2026

Bumps devalue from 5.6.1 to 5.6.3.

Release notes

Sourced from devalue's releases.

v5.6.3

Patch Changes

  • 0f04d4d: fix: Properly handle __proto__
  • 819f1ac: fix: better encoding for sparse arrays

v5.6.2

Patch Changes

  • 1175584: fix: validate input for ArrayBuffer parsing
  • e46afa6: fix: validate input for typed arrays
  • 1175584: fix: more helpful errors for inputs causing stack overflows
Changelog

Sourced from devalue's changelog.

5.6.3

Patch Changes

  • 0f04d4d: fix: Properly handle __proto__
  • 819f1ac: fix: better encoding for sparse arrays

5.6.2

Patch Changes

  • 1175584: fix: validate input for ArrayBuffer parsing
  • e46afa6: fix: validate input for typed arrays
  • 1175584: fix: more helpful errors for inputs causing stack overflows
Commits

Dependabot compatibility score

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 rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will 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 version will 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 dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    You can disable automated security fix PRs for this repo from the Security Alerts page.

m1rl0k added 30 commits January 19, 2026 10:04
Introduces support for extracting and indexing class inheritance (INHERITS_FROM) relationships across multiple languages using tree-sitter, and adds corresponding edge types and Cypher queries in the Neo4j backend. Updates the ingestion pipeline, metadata extraction, and graph adapters to handle inheritance edges, enabling queries for base classes and subclasses. Also updates the Neo4j docker-compose config to include the Graph Data Science library.
Added automatic .env loading in reset.py to ensure environment variables are set. Updated metadata.py to avoid extracting inheritance for Rust, reflecting that trait implementations differ from class inheritance, and improved base class extraction logic to deduplicate results.
Adds thread-safe locking to Neo4j auto-backfill, improves PageRank computation with GDS fallback, and ensures consistent error handling by returning empty lists on Neo4j query failures. The async subprocess manager now cleans up temporary processes after use. The Qdrant edge upsert function adds retry logic with exponential backoff for transient failures. Both remote and standalone upload clients now use context managers to ensure bundle file handles are properly closed after upload.
Refactored PageRank computation to use the new non-deprecated GDS aggregation function syntax for graph projection in Neo4j. Added explicit graph cleanup and improved handling of existing graph projections. This ensures compatibility with newer GDS versions and avoids deprecated Cypher projection calls.
Adds more robust error logging for Qdrant upsert and delete operations, including batch and sub-batch failures. Updates Neo4j GDS graph drop calls to use YIELD for compatibility. Enhances hybrid search and reranker scripts with better warnings and debug logs for schema and query mismatches. Refactors Qdrant client pool to track and close temporary clients, improving resource management. Minor API signature update in ingest_adapter for Qdrant client injection.
Updated usage of asyncio.get_event_loop() to asyncio.get_running_loop() in async_subprocess_manager.py, refrag_glm.py, and refrag_openai.py to avoid deprecation warnings and ensure compatibility with newer Python versions. Improved destructor logic in AsyncSubprocessManager to handle absence of a running event loop. Enhanced QdrantConnectionPool to close temporary clients in close_all().
Replaced silent exception handling with logging in multiple scripts to improve error visibility and debugging. Now, failures in Qdrant operations, embedding, upserts, and workspace state updates will emit warnings or debug logs with error details.
Replaces bare 'except Exception: pass' blocks with logging statements that record suppressed exceptions using logger.debug. This improves debuggability and traceability of silent failures throughout the codebase, while maintaining previous error-handling behavior.
Introduces a get_results helper in conftest.py to normalize extraction of results from API responses, handling both plain and TOON-encoded formats. Updates all relevant tests to use this helper for improved consistency and robustness in result handling.
Simplifies the TOON encoder by removing legacy helper functions and wrappers, consolidating encoding logic, and ensuring round-trip compatibility with the official python-toon library. Updates search/context result encoding to use direct TOON encoding for easier decoding. Enhances Neo4jGraphBackend auto-backfill logic with rate limiting and improved handling when Qdrant is empty, preventing premature marking of collections as checked. Updates tests for round-trip verification and removes reliance on internal encoding helpers.
Pseudo-tag and graph edge generation is now deferred to a post-indexing backfill step for faster initial indexing. Added a backfill routine to scripts/ingest/cli.py, updated reset.py to set the defer flag, and modified CLI logic to run backfill after indexing if deferred. Tests for dynamic field inclusion were updated to decode and assert on structured output rather than string matching.
Introduces an autouse pytest fixture that removes specific modules from sys.modules after each test. This prevents stale module references from affecting subsequent tests, especially those that monkeypatch sys.modules.
Introduces a timeout parameter to Neo4jKnowledgeGraph query methods and uses explicit transactions for better control. Improves backend driver cleanup by handling async driver pool shutdown at process exit. Also fixes edge deletion queries to correctly count deleted relationships.
Adds threading locks to caches in ranking and upload client scripts for safe concurrent access. Updates error logging to include exception info in several modules. Refactors Neo4j transaction usage for impact analysis and fixes Jaccard similarity calculation. Enhances test coverage for rerank subprocess path.
Improves error handling and logging throughout scripts by adding detailed debug logs for exception cases, especially in workspace_state.py and indexing_admin.py. Enforces stricter argument validation in scripts/ingest/qdrant.py by raising ValueError for missing required arguments instead of printing warnings, ensuring that invalid usage is caught early. Updates scripts/ctx.py to use shlex.split and shell=False for subprocess calls to improve security. These changes enhance maintainability, debuggability, and security of the codebase.
Enhanced exception handling by logging error details in various functions. This improves debuggability by providing more context when exceptions occur, especially during file operations, path resolution, and environment variable parsing.
Enhanced exception handling throughout workspace_state.py by adding logger.debug statements to provide more context when errors occur. This improves traceability and aids in debugging by capturing exception details in log output.
Logs a debug message when OrderedDict import fails and dict is used as a fallback, aiding in diagnosing import issues during testing.
Enhanced exception handling throughout hybrid_search.py by adding debug-level log messages that capture exception details. This improves traceability and aids in debugging by providing more context when errors occur, while maintaining existing fallback behaviors.
Enhanced exception handling throughout multiple MCP implementation scripts and Neo4j plugins by adding logger.debug calls with contextual messages for suppressed exceptions. This improves traceability and debugging without altering core logic or error handling flows. Also, minor adjustments were made to ensure symbol 'id' properties are consistently set in Neo4j graph operations.
Enhanced exception logging throughout admin_tools.py, context_answer.py, and memory.py to provide more context and include suppressed exception details. Added a new utility function _extract_kwargs_payload in utils.py for extracting kwargs from various input formats. Also removed redundant exception handling in _validate_answer_output.
Enhanced debug logging in context_answer.py and search_history.py to provide more detailed information when exceptions are suppressed, aiding in troubleshooting and maintenance.
In context_search.py, force output_format="json" for internal repo_search to ensure consistent result parsing. In neo4j_graph.py, enhance all symbol-matching queries to also support suffix matching for symbols stored with full module paths, improving accuracy for class and method lookups.
Improve symbol matching in graph queries and enforce JSON output
omonien and others added 22 commits February 18, 2026 01:18
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
- Add glowing Login/Sign Up link in desktop header (top-right)
- Add highlighted Login/Sign Up link in mobile menu
- Links to https://dev.context-engine.ai/login
- Pulsing glow animation for high visibility
- Light theme support
Use darker green (#00896b) in light theme for proper contrast
instead of neon #00ffcc which is hard to read on light backgrounds.
Avoids silently routing to dev environment if VITE_CTX_LOGIN_URL
is not set in staging/prod deploys.
Use ${base}/login so the fallback works correctly on GitHub Pages
and other deployments with a non-empty base path.
feat: add prominent Login/Sign Up button to navigation bar
feat: Add Delphi/Pascal support (PascalMapping, DfmMapping & full test suite)
Bumps [devalue](https://github.com/sveltejs/devalue) from 5.6.1 to 5.6.3.
- [Release notes](https://github.com/sveltejs/devalue/releases)
- [Changelog](https://github.com/sveltejs/devalue/blob/main/CHANGELOG.md)
- [Commits](sveltejs/devalue@v5.6.1...v5.6.3)

---
updated-dependencies:
- dependency-name: devalue
  dependency-version: 5.6.3
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Feb 20, 2026
@m1rl0k m1rl0k closed this Mar 1, 2026
@dependabot @github
Copy link
Author

dependabot bot commented on behalf of github Mar 1, 2026

OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting @dependabot ignore this major version or @dependabot ignore this minor version.

If you change your mind, just re-open this PR and I'll resolve any conflicts on it.

@dependabot dependabot bot deleted the dependabot/npm_and_yarn/devalue-5.6.3 branch March 1, 2026 10:43
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

6 participants