Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: github/copilot-sdk
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: AkCodes23/copilot-sdk
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 3 commits
  • 2 files changed
  • 2 contributors

Commits on Feb 6, 2026

  1. ⚡ Bolt: Parallelize session destruction in Node.js SDK

    Optimized the `stop()` method in `CopilotClient` to destroy all active
    sessions in parallel using `Promise.all`.
    
    Previously, sessions were destroyed sequentially, leading to a linear
    increase in shutdown time as the number of sessions grew. With this
    change, the total time for session destruction is approximately the
    duration of the slowest individual destruction.
    
    Measurements:
    - 10 sessions with 100ms destruction delay:
      - Before: ~1000ms
      - After: ~100ms
    - Performance gain: ~10x for 10 sessions.
    
    The individual retry logic and exponential backoff for each session
    are preserved. All failures are still collected and reported.
    
    Co-authored-by: AkCodes23 <135016848+AkCodes23@users.noreply.github.com>
    google-labs-jules[bot] and AkCodes23 committed Feb 6, 2026
    Configuration menu
    Copy the full SHA
    54981d4 View commit details
    Browse the repository at this point in the history

Commits on Feb 7, 2026

  1. Merge pull request #1 from AkCodes23/bolt-parallel-stop-nodejs-138360…

    …18781846015088
    
    ⚡ Bolt: Parallelize session destruction in Node.js SDK
    AkCodes23 authored Feb 7, 2026
    Configuration menu
    Copy the full SHA
    e436065 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    52c48f1 View commit details
    Browse the repository at this point in the history
Loading