deps: Bump GitHub.Copilot.SDK from 1.0.0 to 1.0.1#1316
Merged
tamirdresher merged 1 commit intoJun 15, 2026
Merged
Conversation
Contributor
Author
LabelsThe following labels could not be found: Please fix the above issues or remove invalid values from |
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>
Collaborator
|
@dependabot rebase |
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>
755f1bb to
e19dcdf
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
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
vMaj.Min.Micro. For example v0.1.32. The corresponding maven version for the release will beMaj.Min.Micro-java.N, whereMaj,MinandMicroare the corresponding numbers for the reference implementation release, andNis a monotonically increasing sequence number starting with 0 for each release. See the corresponding architectural decision record for more information in thedocs/adrdirectory of the source code.📦 [View on Maven Central]((central.sonatype.com/redacted)
📖 [Documentation]((github.github.io/redacted) · [Javadoc]((github.github.io/redacted)
Maven
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:
@CopilotExperimentalcompile-time gate for experimental APIsExperimental SDK APIs are now guarded by the
@CopilotExperimentalannotation. Using them causes a compile error by default; opt in by annotating the consuming class or method with@AllowCopilotExperimental, or pass-Acopilot.experimental.allowed=trueto the Java compiler. (#1601)Feature: open-canvases snapshot on
CopilotSessionCopilotSession.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 viasession.canvas.openedandsession.canvas.closedevents. (#1606)Other changes
... (truncated)
Commits viewable in compare view.