Skip to content

deps: Bump GitHub.Copilot.SDK from 1.0.0 to 1.0.1#1316

Merged
tamirdresher merged 1 commit into
devfrom
dependabot/nuget/src/Squad.Agents.AI/GitHub.Copilot.SDK-1.0.1
Jun 15, 2026
Merged

deps: Bump GitHub.Copilot.SDK from 1.0.0 to 1.0.1#1316
tamirdresher merged 1 commit into
devfrom
dependabot/nuget/src/Squad.Agents.AI/GitHub.Copilot.SDK-1.0.1

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 15, 2026

Copy link
Copy Markdown
Contributor

Updated GitHub.Copilot.SDK from 1.0.0 to 1.0.1.

Release notes

Sourced from GitHub.Copilot.SDK's releases.

1.0.1

Installation

⚠️ Artifact versioning plan: Releases of this implementation track releases of the reference implementation. For each release of the reference implementation, there may follow a corresponding release of this implementation with the same number as the reference implementation. Release identifiers of the reference implementation are in the form vMaj.Min.Micro. For example v0.1.32. The corresponding maven version for the release will be Maj.Min.Micro-java.N, where Maj, Min and Micro are the corresponding numbers for the reference implementation release, and N is a monotonically increasing sequence number starting with 0 for each release. See the corresponding architectural decision record for more information in the docs/adr directory of the source code.

📦 [View on Maven Central]((central.sonatype.com/redacted)

📖 [Documentation]((github.github.io/redacted) · [Javadoc]((github.github.io/redacted)

Maven

<dependency>
    <groupId>com.github</groupId>
    <artifactId>copilot-sdk-java</artifactId>
    <version>1.0.1</version>
</dependency>

Gradle (Kotlin DSL)

implementation("com.github:copilot-sdk-java:1.0.1")

Gradle (Groovy DSL)

implementation 'com.github:copilot-sdk-java:1.0.1'

Feature: @​CopilotExperimental compile-time gate for experimental APIs

Experimental SDK APIs are now guarded by the @​CopilotExperimental annotation. Using them causes a compile error by default; opt in by annotating the consuming class or method with @​AllowCopilotExperimental, or pass -Acopilot.experimental.allowed=true to the Java compiler. (#​1601)

`@AllowCopilotExperimental`
public class MyHandler {
    // may use `@​CopilotExperimental` APIs here
}

Feature: open-canvases snapshot on CopilotSession

CopilotSession.getOpenCanvases() now returns the live set of canvas instances open for the session, bringing the Java SDK to parity with the other SDK languages. The snapshot is seeded from the session create/resume response and kept current via session.canvas.opened and session.canvas.closed events. (#​1606)

List<OpenCanvasInstance> open = session.getOpenCanvases();

Other changes

... (truncated)

Commits viewable in compare view.

@dependabot @github

dependabot Bot commented on behalf of github Jun 15, 2026

Copy link
Copy Markdown
Contributor Author

Labels

The following labels could not be found: dependencies, squad:belanna. Please create them before Dependabot can add them to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

tamirdresher added a commit that referenced this pull request Jun 15, 2026
The fence-parity check used /\\\/g which matched triple-backticks
anywhere in file content — including inside table cells and inline code
spans that document fence syntax itself.

Reproducer: docs/src/content/docs/features/skill-security-scanner.md L69
contains a table cell that shows the fence-syntax escape with four-backtick
quoting (\\\\ \\\ \\\\). The old regex matched 3 backtick-triples
from that one cell plus 2 from the real fenced bash block at L82/L91 = 5
total (odd) → failing parity check.

Fix: anchor both regexes to line start with /^\\\/gm so only real
fence delimiters (at column 0) are counted or matched.

- Line-count check: /\\\/g → /^\\\/gm
- Block-extraction regex: /\\\[\s\S]*?\\\/g → /^\\\[\s\S]*?^\\\/gm

This unblocks PRs #1316, #1317, #1234 which are all failing CI on dev.

Co-authored-by: Tamir Dresher <tamirdresher@users.noreply.github.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
@tamirdresher

Copy link
Copy Markdown
Collaborator

@dependabot rebase

@tamirdresher

Copy link
Copy Markdown
Collaborator

@dependabot recreate

---
updated-dependencies:
- dependency-name: GitHub.Copilot.SDK
  dependency-version: 1.0.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot force-pushed the dependabot/nuget/src/Squad.Agents.AI/GitHub.Copilot.SDK-1.0.1 branch from 755f1bb to e19dcdf Compare June 15, 2026 16:07
@tamirdresher tamirdresher merged commit 0b38155 into dev Jun 15, 2026
17 checks passed
@tamirdresher tamirdresher deleted the dependabot/nuget/src/Squad.Agents.AI/GitHub.Copilot.SDK-1.0.1 branch June 15, 2026 16:15
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant