Skip to content

Commit 35707ec

Browse files
Add changelog for java/v1.0.5-01 (#1871)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent ee8427c commit 35707ec

1 file changed

Lines changed: 18 additions & 0 deletions

File tree

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,24 @@ All notable changes to the Copilot SDK are documented in this file.
55
This changelog is automatically generated by an AI agent when stable releases are published.
66
See [GitHub Releases](https://github.com/github/copilot-sdk/releases) for the full list.
77

8+
## [java/v1.0.5-01](https://github.com/github/copilot-sdk/releases/tag/java/v1.0.5-01) (2026-07-01)
9+
10+
### Feature: new session options — citations, agent exclusions, and credit limits
11+
12+
Three new options are available on `SessionConfig` and `ResumeSessionConfig`. `enableCitations` (experimental) enables native model citations for supported providers; `excludedBuiltInAgents` hides named built-in agents from discovery; and `sessionLimits` sets a per-session AI-credit budget. ([#1865](https://github.com/github/copilot-sdk/pull/1865))
13+
14+
```java
15+
SessionConfig config = new SessionConfig()
16+
.setEnableCitations(true)
17+
.setExcludedBuiltInAgents(List.of("copilot"))
18+
.setSessionLimits(new SessionLimitsConfig(100.0));
19+
```
20+
21+
### New contributors
22+
23+
- @coleflennikenmsft made their first contribution in [#1854](https://github.com/github/copilot-sdk/pull/1854)
24+
- @szabta89 made their first contribution in [#1856](https://github.com/github/copilot-sdk/pull/1856)
25+
826
## [java/v1.0.4](https://github.com/github/copilot-sdk/releases/tag/java/v1.0.4) (2026-06-25)
927

1028
### Feature: HTTP request callback support

0 commit comments

Comments
 (0)