From aa5d164dfa27e5eb0ab8099b9a1e1db7acb13a91 Mon Sep 17 00:00:00 2001 From: Giles Odigwe Date: Thu, 23 Jul 2026 13:20:43 -0700 Subject: [PATCH] Promote agent-framework-github-copilot to 1.0.0 (released) Promote the GitHub Copilot package from release candidate (1.0.0rc4) to released (1.0.0): bump the version, switch the classifier to Production/Stable, update PACKAGE_STATUS.md, and drop the --pre install flag from the package and sample READMEs. Add a github-copilot-1.0.0 CHANGELOG section covering the promotion and the input-attachment forwarding shipped in this release. No core/root bump: this is a standalone package promotion and the core[all] extra references the package without a version pin. Copilot-Session: f523064c-60b4-4d18-bf95-c16c5fda9126 --- python/CHANGELOG.md | 8 ++++++++ python/PACKAGE_STATUS.md | 2 +- python/packages/github_copilot/README.md | 2 +- python/packages/github_copilot/pyproject.toml | 4 ++-- .../samples/02-agents/providers/github_copilot/README.md | 2 +- python/uv.lock | 2 +- 6 files changed, 14 insertions(+), 6 deletions(-) diff --git a/python/CHANGELOG.md b/python/CHANGELOG.md index 5ca3fa5449..3c9c2fc7ff 100644 --- a/python/CHANGELOG.md +++ b/python/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [github-copilot-1.0.0] - 2026-07-23 + +### Added +- **agent-framework-github-copilot**: Forward input attachments (images, documents, and other inline binary content) to GitHub Copilot as inline blobs ([#7300](https://github.com/microsoft/agent-framework/pull/7300)) + +### Changed +- **agent-framework-github-copilot**: Promote the package from release candidate to stable + ## [hosting-a2a-1.0.0a260723] - 2026-07-23 ### Added diff --git a/python/PACKAGE_STATUS.md b/python/PACKAGE_STATUS.md index a7dfa47b90..9e8033c885 100644 --- a/python/PACKAGE_STATUS.md +++ b/python/PACKAGE_STATUS.md @@ -35,7 +35,7 @@ Status is grouped into these buckets: | `agent-framework-foundry-hosting` | `python/packages/foundry_hosting` | `beta` | | `agent-framework-foundry-local` | `python/packages/foundry_local` | `beta` | | `agent-framework-gemini` | `python/packages/gemini` | `beta` | -| `agent-framework-github-copilot` | `python/packages/github_copilot` | `rc` | +| `agent-framework-github-copilot` | `python/packages/github_copilot` | `released` | | `agent-framework-hosting` | `python/packages/hosting` | `alpha` | | `agent-framework-hosting-a2a` | `python/packages/hosting-a2a` | `alpha` | | `agent-framework-hosting-mcp` | `python/packages/hosting-mcp` | `alpha` | diff --git a/python/packages/github_copilot/README.md b/python/packages/github_copilot/README.md index 36cb11a949..4d07cabcb8 100644 --- a/python/packages/github_copilot/README.md +++ b/python/packages/github_copilot/README.md @@ -3,7 +3,7 @@ Please install this package via pip: ```bash -pip install agent-framework-github-copilot --pre +pip install agent-framework-github-copilot ``` ## GitHub Copilot Agent diff --git a/python/packages/github_copilot/pyproject.toml b/python/packages/github_copilot/pyproject.toml index c57564a845..756c231adc 100644 --- a/python/packages/github_copilot/pyproject.toml +++ b/python/packages/github_copilot/pyproject.toml @@ -4,7 +4,7 @@ description = "GitHub Copilot integration for Microsoft Agent Framework." authors = [{ name = "Microsoft", email = "af-support@microsoft.com"}] readme = "README.md" requires-python = ">=3.10" -version = "1.0.0rc4" +version = "1.0.0" license-files = ["LICENSE"] urls.homepage = "https://aka.ms/agent-framework" urls.source = "https://github.com/microsoft/agent-framework/tree/main/python" @@ -12,7 +12,7 @@ urls.release_notes = "https://github.com/microsoft/agent-framework/releases?q=ta urls.issues = "https://github.com/microsoft/agent-framework/issues" classifiers = [ "License :: OSI Approved :: MIT License", - "Development Status :: 4 - Beta", + "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.10", diff --git a/python/samples/02-agents/providers/github_copilot/README.md b/python/samples/02-agents/providers/github_copilot/README.md index d58698e7da..476f614b85 100644 --- a/python/samples/02-agents/providers/github_copilot/README.md +++ b/python/samples/02-agents/providers/github_copilot/README.md @@ -10,7 +10,7 @@ This directory contains examples demonstrating how to use the `GitHubCopilotAgen 2. **GitHub Copilot Subscription**: An active GitHub Copilot subscription 3. **Install the package**: ```bash - pip install agent-framework-github-copilot --pre + pip install agent-framework-github-copilot ``` ## Environment Variables diff --git a/python/uv.lock b/python/uv.lock index 304fe7c421..7a8effc063 100644 --- a/python/uv.lock +++ b/python/uv.lock @@ -668,7 +668,7 @@ requires-dist = [ [[package]] name = "agent-framework-github-copilot" -version = "1.0.0rc4" +version = "1.0.0" source = { editable = "packages/github_copilot" } dependencies = [ { name = "agent-framework-core", marker = "sys_platform == 'darwin' or sys_platform == 'linux' or sys_platform == 'win32'" },