Karan Lokchandani
Karan Lokchandani
### Enforce Subtyping Depth Limit in WebAssembly Validation This PR resolves [#3949](https://github.com/wasmedge/wasmedge/issues/3949), which identified that WasmEdge incorrectly allows execution of WebAssembly modules with excessive sub-typing depth, creating behavior inconsistencies with...
relevant issue: https://github.com/supermemoryai/supermemory/issues/553
we should probably update the discord invite link since it no longer works
relevant issue: https://github.com/commaai/opendbc/issues/1184 | Branch | Collection Time (Linux CI) | Total Test Time | |----------------|-----------------------------|-----------------| | master | 0.7-1 sec | ~25 – 30 sec | | PR |...
This PR re-enables the previously ignored `outbound-postgres` and `outbound-postgres-variable-permission` tests. It also fixes their flakiness. fixes: https://github.com/spinframework/spin/issues/2907 high-level changes: - Re-enabled previously ignored flaky tests - Added PostgreSQL service to...
fixes: https://github.com/swiftlang/sourcekit-lsp/issues/1089 This PR implements a new code action, AddMissingImports, which provides quick fixes to automatically add import statements for unresolved types or values. It leverages the semantic index to...
### Description I Propose adding a code action to remove redundant parentheses in Swift expressions. Originally discussed here: [https://github.com/swiftlang/sourcekit-lsp/pull/2406#discussion_r2658894049](https://github.com/swiftlang/sourcekit-lsp/pull/2406#discussion_r2658894049) Although it was originally discussed as a improvement to the existing...
### Description SourceKit-LSP lacks a refactoring to invert a negated `if` condition while preserving semantics. I propose a syntax-only refactor that rewrites: ```swift if !cond { thenBranch() } else {...