Commit 3618c44
merge: resolve conflicts with main, document IDisposable patterns
Resolve merge conflicts from main:
- dotnet/src/Session.cs: Integrate SetModelAsync, simplified permission cleanup
- python/copilot/client.py: Adopt ExceptionGroup-based stop() error handling
- python/e2e/test_client.py: Update to ExceptionGroup test pattern
Document IDisposable/cleanup patterns across all SDKs:
- .NET: Class-level XML docs explain IAsyncDisposable contract, README documents
DisconnectAsync + DisposeAsync with await using examples
- Python: README documents async with context manager pattern
- Node.js: README documents Symbol.asyncDispose / await using pattern
- Session persistence guide: Add cross-SDK cleanup pattern comparison table
Update new files from main (tool-overrides scenario, streaming fidelity tests)
to use disconnect()/Disconnect() instead of destroy()/Destroy().
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>File tree
101 files changed
+6283
-697
lines changed- .github
- aw
- workflows
- docs
- guides
- dotnet
- src
- Generated
- test
- Harness
- go
- internal/e2e
- testharness
- rpc
- nodejs
- samples
- src
- generated
- test
- e2e
- harness
- python
- copilot
- generated
- e2e
- testharness
- scripts/docs-validation
- test
- harness
- scenarios
- callbacks
- hooks/csharp
- permissions/csharp
- user-input/csharp
- tools
- skills/csharp
- tool-overrides
- csharp
- go
- python
- typescript
- src
- virtual-filesystem/csharp
- snapshots
- session
- streaming_fidelity
- tools
Some content is hidden
Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
101 files changed
+6283
-697
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
7 | 7 | | |
8 | 8 | | |
9 | 9 | | |
| 10 | + | |
10 | 11 | | |
11 | 12 | | |
12 | 13 | | |
| 14 | + | |
13 | 15 | | |
14 | 16 | | |
15 | 17 | | |
16 | 18 | | |
| 19 | + | |
17 | 20 | | |
18 | 21 | | |
19 | 22 | | |
| 23 | + | |
20 | 24 | | |
21 | 25 | | |
22 | 26 | | |
23 | 27 | | |
| 28 | + | |
24 | 29 | | |
25 | 30 | | |
26 | 31 | | |
27 | 32 | | |
| 33 | + | |
28 | 34 | | |
29 | 35 | | |
30 | 36 | | |
31 | 37 | | |
| 38 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
77 | 77 | | |
78 | 78 | | |
79 | 79 | | |
80 | | - | |
| 80 | + | |
81 | 81 | | |
82 | 82 | | |
83 | 83 | | |
| |||
0 commit comments