Copilot

Results 4682 issues of Copilot

The `always_kill` monitor and `ArithmeticAddCalculationImporter` were causing `FileNotFoundError` when `transport.getfile()` attempted to write to temporary files created with `NamedTemporaryFile('w+')`. The open file handle conflicted with external file access, particularly on...

Version 3.5.2 removed code that handled `Literal` objects in `ActivityExecutionContext.TryGet()`, breaking the common pattern of programmatically creating activities with literal inputs. This throws `InvalidOperationException: The memory block 'Elsa.Expressions.Models.Literal`1[T]' does not...

The `--clean-workdir` flag only cleaned `remote_folder` outputs but ignored `remote_stash` outputs created by the stashing mechanism. ## Changes - **`src/aiida/orm/utils/remote.py`**: Added `get_calcjob_stashed_paths()` and `clean_mapping_stashed_paths()` to query and clean stashed data,...

Adds an optional fluent API over Elsa's existing workflow builder to reduce boilerplate and improve discoverability for code-first workflows. The API is a thin façade—all methods emit standard Elsa workflow...

`WorkflowDefinitionActivityProvider` was exposing workflow activities from all tenants to every tenant. When workflows were marked `UsableAsActivity = true`, they populated the singleton `ActivityRegistry` without tenant isolation, making them globally visible....

### Issue describing the changes in this PR resolves #4709 Python projects using `poetry` or `uv` for dependency management were blocked from using `func pack --no-build` due to hard requirement...

Changes the default target framework from .NET 8 to .NET 10 when running `func init --worker-runtime dotnet-isolated` without an explicit `--target-framework` flag. ## Changes - Updated `DefaultTargetFramework` constant from `Net8`...

## Problem This PR addresses two related issues in the Azure Functions Templates repository: 1. **Unused resource strings**: There were 645 unreferenced entries in `Resources.resx` that were not being used...

The jsforce command line interface was truncating output at exactly 64KB (65,536 bytes) when piped to other commands like `jq`, `grep`, or other JSON processors. This made it impossible to...

The `conn.bulk.query()` method was failing with error "No sobject type found in query" when queries contained parentheses in both SELECT and WHERE clauses. This was caused by a greedy regex...