{"id":"src_x6Dyj9Llt85SOEWdAUgil","slug":"github-changelog","name":"GitHub Changelog","type":"feed","url":"https://github.blog/changelog/","orgId":"org_yHXqOMVbbu9cGxfhqO8Fd","org":{"slug":"github","name":"GitHub"},"isPrimary":false,"metadata":"{\"feedUrl\":\"https://github.blog/changelog/feed/\",\"feedType\":\"unknown\",\"feedDiscoveredAt\":\"2026-04-07T23:42:16.675Z\",\"noFeedFound\":false,\"feedEtag\":\"W/\\\"c1f69c8ce6a86c02c0bfb48566bdaff9\\\"\",\"feedLastModified\":\"Fri, 17 Apr 2026 22:56:29 GMT\"}","releaseCount":33,"releasesLast30Days":33,"avgReleasesPerWeek":22,"latestVersion":null,"latestDate":"2026-04-17T22:32:41.000Z","changelogUrl":null,"hasChangelogFile":false,"lastFetchedAt":"2026-04-18T01:02:31.185Z","trackingSince":"2026-04-08T16:13:36.000Z","releases":[{"id":"rel_dkVNcFjlDYBrp5SOtGCtp","version":null,"title":"GitHub Copilot CLI now supports Copilot auto model selection","summary":"[Copilot auto model selection](https://docs.github.com/copilot/concepts/auto-model-selection) is now generally available in GitHub Copilot CLI for all...","content":"[Copilot auto model selection](https://docs.github.com/copilot/concepts/auto-model-selection) is now generally available in GitHub Copilot CLI for all Copilot plans. With auto, Copilot chooses the most efficient model on your behalf.\n\n## How it works\n\nAuto is dynamic, giving you reliable access to your favorite models while mitigating rate limits. It routes to models like GPT-5.4, GPT-5.3-Codex, Sonnet 4.6, and Haiku 4.5 based on your plan and policies. The models auto will route to will change over time.\n\n- **Transparency**: See which model was used directly in the Copilot CLI.\n\n- **Stay in control**: Switch between auto and any specific model at any time.\n\n- **Respects your policies**: Auto honors all administrator model settings.\n\n## Premium request use\n\nPremium request use for auto is billed based on the model it selects, which is currently limited to [models with 0x to 1x multipliers](https://docs.github.com/copilot/concepts/billing/copilot-requests#model-multipliers) like those listed above. All paid subscribers get a 10% discount on the model multiplier when using auto. For example, when auto uses a model that has a 1x multiplier, you&rsquo;ll draw down 0.9 premium requests instead of 1.\n\nJoin the discussion within [GitHub Community](https://github.com/orgs/community/discussions/categories/announcements).\n\nThe post [GitHub Copilot CLI now supports Copilot auto model selection](https://github.blog/changelog/2026-04-17-github-copilot-cli-now-supports-copilot-auto-model-selection) appeared first on [The GitHub Blog](https://github.blog).","publishedAt":"2026-04-17T22:32:41.000Z","url":"https://github.blog/changelog/2026-04-17-github-copilot-cli-now-supports-copilot-auto-model-selection","media":[]},{"id":"rel_SJ7JuQN-QaYsUu1WCexaM","version":null,"title":"Manage agent skills with GitHub CLI","summary":"Agent skills are reshaping how developers work with AI coding agents. Today we&rsquo;re launching `gh skill`, a new command in the GitHub CLI that mak...","content":"Agent skills are reshaping how developers work with AI coding agents. Today we&rsquo;re launching `gh skill`, a new command in the GitHub CLI that makes it easy to discover, install, manage, and publish agent skills from GitHub repositories.\n\n### What are agent skills?\n\nAgent skills are portable sets of instructions, scripts, and resources that teach AI agents how to perform specific tasks. They follow the open [Agent Skills specification](https://agentskills.io), and work across multiple agent hosts including GitHub Copilot, Claude Code, Cursor, Codex, and Gemini CLI among others.\n\nWith the new `gh skill` command, you can now install agent skills in a single command, right from the GitHub CLI.\n\n### Get started\n\nUpdate the GitHub CLI to version v2.90.0 or later.\n\nThen discover and install skills interactively:\n\n```\n# Browse skills in a repository and install them interactively\ngh skill install github/awesome-copilot\n\n# Or install a specific skill directly\ngh skill install github/awesome-copilot documentation-writer\n\n# Install a specific version using @tag\ngh skill install github/awesome-copilot documentation-writer@v1.2.0\n\n# Install at a specific commit SHA\ngh skill install github/awesome-copilot documentation-writer@abc123def\n\n# Discover skills\ngh skill search mcp-apps\n\n```\n\nSkills are automatically installed to the correct directory for your agent host. You can target a specific agent and scope with flags:\n\n```\ngh skill install github/awesome-copilot documentation-writer --agent claude-code --scope user\n\n```\n\n### Version pinning and supply chain integrity\n\nAgent skills are executable instructions that shape how AI agents behave. A skill that changes silently between installs is a supply chain risk. `gh skill` brings the same guarantees you expect from package managers to the skills ecosystem, using primitives GitHub already provides.\n\n- **Tags and releases:** Every published release is tied to a git tag. `gh skill publish` offers to enable [immutable releases](https://docs.github.com/repositories/releasing-projects-on-github/about-releases), so release content cannot be altered after publication, even by admins.\n\n- **Content-addressed change detection:** Each installed skill records the git tree SHA of its source directory. `gh skill update` compares local SHAs against the remote to detect real content changes, not just version bumps. By storing this information in skills [front-matter](https://agentskills.io/specification#frontmatter), versioning and pinning are portable too, so you (or your agent) can copy and paste the skill to different projects without losing the ability to track changes and update it. \n\n- **Version pinning:** Lock a skill to a specific tag or commit SHA with `--pin`. Pinned skills are skipped during updates, so you upgrade deliberately, not accidentally.\n\n- **Portable provenance via frontmatter:** When `gh skill` installs a skill, it writes tracking metadata (repository, ref, tree SHA) directly into the `SKILL.md` frontmatter. Because provenance data lives inside the skill file itself, it travels with the skill no matter where it ends up. Skills get moved, copied, and reorganized by users, agents, and scripts.\n\n```\n# Pin to a release tag\ngh skill install github/awesome-copilot documentation-writer --pin v1.2.0\n\n# Pin to a commit for maximum reproducibility\ngh skill install github/awesome-copilot documentation-writer --pin abc123def\n\n```\n\n### Publish your own skills\n\nIf you maintain a skills repository, `gh skill publish` validates your skills against the [agentskills.io spec](https://agentskills.io/specification) and checks remote settings like tag protection, secret scanning, and code scanning. These settings are not required, but strongly recommended to improve the supply chain security of your repo.\n\nEnabling immutable releases, for example, means even if someone gets control of your repository they cannot change existing releases, so users installing via tag pinning are fully protected. The `publish` command makes it trivial to enable these features.\n\n```\n# Validate all skills\ngh skill publish\n\n# Auto-fix metadata issues\ngh skill publish --fix\n\n```\n\n## Keep skills up to date\n\n`gh skill update` scans all known agent host directories, reads provenance metadata from each installed skill, and checks for upstream changes:\n\n```\n# Check for updates interactively\ngh skill update\n\n# Update a specific skill\ngh skill update git-commit\n\n# Update everything without prompting\ngh skill update --all\n\n```\n\n## Supported agent hosts\n\nHost\nInstall command example\n\nGitHub Copilot\n`gh skill install OWNER/REPOSITORY SKILL`\n\nClaude Code\n`gh skill install OWNER/REPOSITORY SKILL --agent claude-code`\n\nCursor\n`gh skill install OWNER/REPOSITORY SKILL --agent cursor`\n\nCodex\n`gh skill install OWNER/REPOSITORY SKILL --agent codex`\n\nGemini CLI\n`gh skill install OWNER/REPOSITORY SKILL --agent gemini`\n\nAntigravity\n`gh skill install OWNER/REPOSITORY SKILL --agent antigravity`\n\n### Learn more\n\n- Check out the [Agent Skills specification](https://agentskills.io).\n\n- Join the discussion in [GitHub Community](https://github.com/orgs/community/discussions).\n\n`gh skill` is launching in public preview and it&rsquo;s subject to change without notice.\n\nSkills are installed at your own discretion. They are not verified by GitHub and may contain prompt injections, hidden instructions, or malicious scripts. We strongly recommend inspecting the content of skills before installation, which can be done via the `gh skill preview` command.\n\nJoin the [GitHub Community](https://github.com/orgs/community/discussions/categories/announcements).\n\nThe post [Manage agent skills with GitHub CLI](https://github.blog/changelog/2026-04-16-manage-agent-skills-with-github-cli) appeared first on [The GitHub Blog](https://github.blog).","publishedAt":"2026-04-16T17:24:41.000Z","url":"https://github.blog/changelog/2026-04-16-manage-agent-skills-with-github-cli","media":[]},{"id":"rel_-q18OeP1J36AcB9jres2K","version":null,"title":"Rule insights dashboard and unified filter bar","summary":"### Rule insights dashboard\n\nGitHub repository rulesets are powerful, but it hasn&rsquo;t been easy to spot trends like spikes in blocked pushes durin...","content":"### Rule insights dashboard\n\nGitHub repository rulesets are powerful, but it hasn&rsquo;t been easy to spot trends like spikes in blocked pushes during an incident or patterns in bypass activity without digging through data in the rule insights page.\n\nThe new **rule insights dashboard** is now available in your repository&rsquo;s **Settings > Rules** tab. It gives you a visual, high-level view of rule evaluation activity, including:\n\n- Successes, failures, and bypasses over time\n\n- The most active bypassers for your rulesets\n\n![GitHub Rule Insights Dashboard screenshot showing rule suites performance with charts and counts for allowed, failed, and bypassed evaluations.](https://github.com/user-attachments/assets/9befa788-af48-4a9c-965f-96264697f4de)\n\nEach chart links back to the rule insights page with filters prefilled, so you can quickly drill into specific statuses, bypassers, or time ranges.\n\nWhether you&rsquo;re responding to an incident or auditing bypass activity, the dashboard helps you spot trends at a glance and jump to the details when you need them.\n\n### Unified filter bar for alert dismissal and bypass request pages\n\nBuilding on [the filter bar improvements shipped in February](https://github.blog/changelog/2026-02-17-custom-properties-and-rule-insights-improvements/), we&rsquo;ve replaced custom dropdowns on several alert management pages with the same unified filter bar component. This affects:\n\n- GitHub code scanning alert dismissal requests at the enterprise and organization levels.\n\n- GitHub Dependabot alert dismissal requests at the enterprise and organization levels.\n\n- GitHub secret scanning alert dismissals at the enterprise and organization levels.\n\n- GitHub secret scanning push protection bypass requests at the enterprise, organization, and repository levels.\n\nYou now get a consistent filtering experience, including support for custom properties, across all of these pages.\n\n[Learn more about GitHub repository rulesets](https://docs.github.com/repositories/configuring-branches-and-merges-in-your-repository/managing-rulesets/about-rulesets).\n\nThese experiences are available in public preview.\n\nThe post [Rule insights dashboard and unified filter bar](https://github.blog/changelog/2026-04-16-rule-insights-dashboard-and-unified-filter-bar) appeared first on [The GitHub Blog](https://github.blog).","publishedAt":"2026-04-16T15:30:10.000Z","url":"https://github.blog/changelog/2026-04-16-rule-insights-dashboard-and-unified-filter-bar","media":[{"type":"image","url":"https://github.com/user-attachments/assets/9befa788-af48-4a9c-965f-96264697f4de","alt":"GitHub Rule Insights Dashboard screenshot showing rule suites performance with charts and counts for allowed, failed, and bypassed evaluations."}]},{"id":"rel_U2YFS6j-mmnRIhcoR2Sh1","version":"4.7","title":"Claude Opus 4.7 is generally available","summary":"**Claude Opus 4.7**, Anthropic&rsquo;s latest Opus model, is now rolling out on GitHub Copilot. In our early testing, Opus 4.7 delivers stronger multi...","content":"**Claude Opus 4.7**, Anthropic&rsquo;s latest Opus model, is now rolling out on GitHub Copilot. In our early testing, Opus 4.7 delivers stronger multi-step task performance and more reliable agentic execution, building on the coding strategy strengths of its predecessor. It also shows meaningful improvement in long-horizon reasoning and complex, tool-dependent workflows.\n\nAs part of our efforts to improve service reliability, we are streamlining our model offerings. Over the coming weeks, Opus 4.7 will replace Opus 4.5 and Opus 4.6 in the model picker for Copilot Pro+. We&rsquo;ve seen strong improvements across our benchmarks, and we&rsquo;re committed to providing individual users with state-of-the-art models while ensuring a fast, reliable Copilot experience.\n\nThis model is launching with a **7.5&times; premium request multiplier** as part of promotional pricing until April 30th.\n\n[Video](https://github.com/user-attachments/assets/084e2555-c07b-40d5-841e-9afac5ac823f)\n\n### Availability in GitHub Copilot\n\nClaude Opus 4.7 will be available to **Copilot Pro+**, **Business**, and **Enterprise** users.\n\nYou&rsquo;ll be able to select the model in the model picker in:\n\n- Visual Studio Code\n\n- Visual Studio\n\n- Copilot CLI\n\n- GitHub Copilot Coding Agent \n\n- github.com\n\n- GitHub Mobile IOS and Android\n\n- JetBrains\n\n- Xcode\n\n- Eclipse\n\nRollout will be gradual. Check back soon if you don&rsquo;t see it yet.\n\n### Enabling access\n\nCopilot Enterprise and Copilot Business plan administrators must enable the Claude Opus 4.7 policy in Copilot settings.\n\n### Learn more\n\nTo explore all models available in GitHub Copilot, see our [documentation on models](https://docs.github.com/copilot/reference/ai-models/supported-models) and get started with Copilot.\n\n### Share your feedback\n\nJoin the [GitHub Community](https://github.com/orgs/community/discussions/categories/copilot-conversations) to share your feedback.\n\nThe post [Claude Opus 4.7 is generally available](https://github.blog/changelog/2026-04-16-claude-opus-4-7-is-generally-available) appeared first on [The GitHub Blog](https://github.blog).","publishedAt":"2026-04-16T14:02:31.000Z","url":"https://github.blog/changelog/2026-04-16-claude-opus-4-7-is-generally-available","media":[{"type":"video","url":"https://github.com/user-attachments/assets/084e2555-c07b-40d5-841e-9afac5ac823f"}]},{"id":"rel_i1zPdpjcihrM7z4T-qZH7","version":"2.25.2","title":"CodeQL 2.25.2 adds Kotlin 2.3.20 support and other updates","summary":"CodeQL is the static analysis engine behind [GitHub code scanning](https://docs.github.com/code-security/code-scanning/introduction-to-code-scanning/a...","content":"CodeQL is the static analysis engine behind [GitHub code scanning](https://docs.github.com/code-security/code-scanning/introduction-to-code-scanning/about-code-scanning-with-codeql), which finds and remediates security issues in your code. We&rsquo;ve recently released [CodeQL 2.25.2](https://codeql.github.com/docs/codeql-overview/codeql-changelog/codeql-cli-2.25.2/), which brings a new Kotlin version update, various accuracy improvements, and a set of security severity score adjustments across multiple languages.\n\n## Language and framework support\n\n**Java/Kotlin**\n\n- Kotlin versions up to 2.3.20 are now supported for analysis.\n\n- The `java/tainted-arithmetic` query no longer flags arithmetic expressions used directly as an operand of a comparison in `if`-condition bounds-checking patterns, reducing false positives.\n\n- The `java/potentially-weak-cryptographic-algorithm` query no longer flags Elliptic Curve algorithms, HMAC-based algorithms, or PBKDF2 key derivation as potentially insecure, reducing false positives for this query.\n\n**C/C++**\n\n- Reduced false positives in the `cpp/suspicious-add-sizeof`, `cpp/wrong-type-format-argument`, and `cpp/integer-multiplication-cast-to-long` queries.\n\n## Query changes\n\n**C#**\n\n- The `cs/constant-condition` query has been simplified to produce fewer false positives. As a result, the `cs/constant-comparison` query has been removed, since `cs/constant-condition` now covers those results.\n\n## Security severity updates\n\nWe&rsquo;ve updated `@security-severity` scores across several languages to better align log injection and XSS queries with their actual impact:\n\n- **C/C++**: `cpp/cgi-xss` increased from medium (6.1) to high (7.8).\n\n- **C#**: `cs/log-forging` reduced from high (7.8) to medium (6.1); `cs/web/xss` increased from medium (6.1) to high (7.8).\n\n- **Go**: `go/log-injection` reduced from high (7.8) to medium (6.1); `go/html-template-escaping-bypass-xss`, `go/reflected-xss`, and `go/stored-xss` increased from medium (6.1) to high (7.8).\n\n- **Java/Kotlin**: `java/log-injection` reduced from high (7.8) to medium (6.1); `java/android/webview-addjavascriptinterface`, `java/android/websettings-javascript-enabled`, and `java/xss` increased from medium (6.1) to high (7.8).\n\n- **Python**: `py/log-injection` reduced from high (7.8) to medium (6.1); `py/jinja2/autoescape-false` and `py/reflective-xss` increased from medium (6.1) to high (7.8).\n\n- **Ruby**: `rb/log-injection` reduced from high (7.8) to medium (6.1); `rb/reflected-xss`, `rb/stored-xss`, and `rb/html-constructed-from-input` increased from medium (6.1) to high (7.8).\n\n- **Swift**: `swift/unsafe-webview-fetch` increased from medium (6.1) to high (7.8).\n\n- **Rust**: `rust/log-injection` increased from low (2.6) to medium (6.1); `rust/xss` increased from medium (6.1) to high (7.8).\n\nFor a full list of changes, please refer to the complete [changelog for version 2.25.2](https://codeql.github.com/docs/codeql-overview/codeql-changelog/codeql-cli-2.25.2/). Every new version of CodeQL is automatically deployed to users of GitHub code scanning on github.com. The new functionality in CodeQL 2.25.2 will also be included in a future GitHub Enterprise Server (GHES) release. If you use an older version of GHES, you can [manually upgrade your CodeQL version](https://docs.github.com/enterprise-server@3.20/admin/managing-code-security/managing-github-advanced-security-for-your-enterprise/configuring-code-scanning-for-your-appliance#configuring-codeql-analysis-on-a-server-without-internet-access).\n\nThe post [CodeQL 2.25.2 adds Kotlin 2.3.20 support and other updates](https://github.blog/changelog/2026-04-15-codeql-2-25-2-adds-kotlin-2-3-20-support-and-other-updates) appeared first on [The GitHub Blog](https://github.blog).","publishedAt":"2026-04-15T22:05:52.000Z","url":"https://github.blog/changelog/2026-04-15-codeql-2-25-2-adds-kotlin-2-3-20-support-and-other-updates","media":[]},{"id":"rel_mbyFB5Zz0bP2-_2iLOpLT","version":null,"title":"Enable Copilot cloud agent via custom properties","summary":"You can now selectively enable GitHub Copilot cloud agent (CCA) access on a per-organization basis. Previously, enterprise admins and AI managers coul...","content":"You can now selectively enable GitHub Copilot cloud agent (CCA) access on a per-organization basis. Previously, enterprise admins and AI managers could only enable the agent everywhere, disable it everywhere,…\n\nThe post [Enable Copilot cloud agent via custom properties](https://github.blog/changelog/2026-04-15-enable-copilot-cloud-agent-via-custom-properties) appeared first on [The GitHub Blog](https://github.blog).","publishedAt":"2026-04-15T18:30:28.000Z","url":"https://github.blog/changelog/2026-04-15-enable-copilot-cloud-agent-via-custom-properties","media":[]},{"id":"rel_MQLRh27yGz2Hur_isq7D8","version":null,"title":"OIDC support for Dependabot and code scanning","summary":"Dependabot and code scanning now support OpenID Connect (OIDC) authentication for private registries configured at the organization level, eliminating...","content":"Dependabot and code scanning now support OpenID Connect (OIDC) authentication for private registries configured at the organization level, eliminating the need to store long-lived credentials as repository secrets. What’s new…\n\nThe post [OIDC support for Dependabot and code scanning](https://github.blog/changelog/2026-04-14-oidc-support-for-dependabot-and-code-scanning) appeared first on [The GitHub Blog](https://github.blog).","publishedAt":"2026-04-14T20:29:03.000Z","url":"https://github.blog/changelog/2026-04-14-oidc-support-for-dependabot-and-code-scanning","media":[]},{"id":"rel_PWVbAg69uvUkYhwTV6Tb2","version":null,"title":"Deployment context in repository properties and alerts","summary":"Artifact and deployment context now appears in two new places: repository properties and security alert pages. Repository properties: deployable and d...","content":"Artifact and deployment context now appears in two new places: repository properties and security alert pages. Repository properties: deployable and deployed Two new built-in repository properties—deployable and deployed—are now available.…\n\nThe post [Deployment context in repository properties and alerts](https://github.blog/changelog/2026-04-14-deployment-context-in-repository-properties-and-alerts) appeared first on [The GitHub Blog](https://github.blog).","publishedAt":"2026-04-14T20:26:26.000Z","url":"https://github.blog/changelog/2026-04-14-deployment-context-in-repository-properties-and-alerts","media":[]},{"id":"rel_1FUvCSnuyDfd5SVs8ipfN","version":null,"title":"Link code scanning alerts to GitHub Issues","summary":"You can now link code scanning alerts to GitHub Issues, bringing security remediation into your existing planning and tracking workflows. This functio...","content":"You can now link code scanning alerts to GitHub Issues, bringing security remediation into your existing planning and tracking workflows. This functionality is in public preview. With this update, you…\n\nThe post [Link code scanning alerts to GitHub Issues](https://github.blog/changelog/2026-04-14-link-code-scanning-alerts-to-github-issues) appeared first on [The GitHub Blog](https://github.blog).","publishedAt":"2026-04-14T18:28:02.000Z","url":"https://github.blog/changelog/2026-04-14-link-code-scanning-alerts-to-github-issues","media":[]},{"id":"rel_H4DQrHh2atc_nzFCwAcwq","version":null,"title":"Dependabot and code scanning: Org-level private registries","summary":"It’s now easier to configure Dependabot and code scanning for organizations that rely on multiple internal package feeds. Previously, organization-lev...","content":"It’s now easier to configure Dependabot and code scanning for organizations that rely on multiple internal package feeds. Previously, organization-level settings only allowed a single private registry configuration per ecosystem…\n\nThe post [Dependabot and code scanning: Org-level private registries](https://github.blog/changelog/2026-04-14-dependabot-and-code-scanning-org-level-private-registries) appeared first on [The GitHub Blog](https://github.blog).","publishedAt":"2026-04-14T18:16:23.000Z","url":"https://github.blog/changelog/2026-04-14-dependabot-and-code-scanning-org-level-private-registries","media":[]},{"id":"rel_ECwnpjfVX2RBt2cVUs5qp","version":null,"title":"Secret scanning pattern updates and product improvements","summary":"This week, we’re rolling out several improvements to our detection coverage, APIs, and workflows. These improvements strengthen our continued investme...","content":"This week, we’re rolling out several improvements to our detection coverage, APIs, and workflows. These improvements strengthen our continued investment in the developer experience of our secret scanning features. Built…\n\nThe post [Secret scanning pattern updates and product improvements](https://github.blog/changelog/2026-04-14-secret-scanning-pattern-updates-and-product-improvements) appeared first on [The GitHub Blog](https://github.blog).","publishedAt":"2026-04-14T17:17:45.000Z","url":"https://github.blog/changelog/2026-04-14-secret-scanning-pattern-updates-and-product-improvements","media":[]},{"id":"rel_kpYx4Ck2Nu98BWU_QCJcD","version":null,"title":"SBOM exports are now computed asynchronously","summary":"Software Bill of Materials (SBOM) exports from repository pages and new API endpoints are now asynchronous operations. Previously, navigating to a rep...","content":"Software Bill of Materials (SBOM) exports from repository pages and new API endpoints are now asynchronous operations. Previously, navigating to a repository’s dependency graph page and clicking the Export SBOM…\n\nThe post [SBOM exports are now computed asynchronously](https://github.blog/changelog/2026-04-14-sbom-exports-are-now-computed-asynchronously) appeared first on [The GitHub Blog](https://github.blog).","publishedAt":"2026-04-14T16:00:14.000Z","url":"https://github.blog/changelog/2026-04-14-sbom-exports-are-now-computed-asynchronously","media":[]},{"id":"rel__MKhsxyyF5LOEbQ-PyCo-","version":null,"title":"Model selection for Claude and Codex agents on github.com","summary":"Model selection is now available for the Claude and Codex third-party coding agents on github.com. Just like Copilot cloud agent, you can now select a...","content":"Model selection is now available for the Claude and Codex third-party coding agents on github.com. Just like Copilot cloud agent, you can now select a model when kicking off a…\n\nThe post [Model selection for Claude and Codex agents on github.com](https://github.blog/changelog/2026-04-14-model-selection-for-claude-and-codex-agents-on-github-com) appeared first on [The GitHub Blog](https://github.blog).","publishedAt":"2026-04-14T15:21:52.000Z","url":"https://github.blog/changelog/2026-04-14-model-selection-for-claude-and-codex-agents-on-github-com","media":[]},{"id":"rel_mF4UzwJtMeIMeQFyJbwKr","version":null,"title":"GitHub Code Quality: Improvements to standard findings in public preview","summary":"We’ve updated the GitHub Code Quality experience to make it easier to navigate and triage findings across your repository. GitHub Code Quality standar...","content":"We’ve updated the GitHub Code Quality experience to make it easier to navigate and triage findings across your repository. GitHub Code Quality standard findings help you detect potential reliability and…\n\nThe post [GitHub Code Quality: Improvements to standard findings in public preview](https://github.blog/changelog/2026-04-14-github-code-quality-improvements-to-standard-findings-in-public-preview) appeared first on [The GitHub Blog](https://github.blog).","publishedAt":"2026-04-14T11:31:43.000Z","url":"https://github.blog/changelog/2026-04-14-github-code-quality-improvements-to-standard-findings-in-public-preview","media":[]},{"id":"rel_PumyWuJdNDddu7eRL4GjW","version":null,"title":"Copilot data residency in US + EU and FedRAMP compliance now available","summary":"GitHub Copilot now supports data residency for US and EU regions, ensuring all inference processing and associated data stay within your designated ge...","content":"GitHub Copilot now supports data residency for US and EU regions, ensuring all inference processing and associated data stay within your designated geography. For US government customers, all model hosts…\n\nThe post [Copilot data residency in US + EU and FedRAMP compliance now available](https://github.blog/changelog/2026-04-13-copilot-data-residency-in-us-eu-and-fedramp-compliance-now-available) appeared first on [The GitHub Blog](https://github.blog).","publishedAt":"2026-04-13T23:03:01.000Z","url":"https://github.blog/changelog/2026-04-13-copilot-data-residency-in-us-eu-and-fedramp-compliance-now-available","media":[]},{"id":"rel_0KHnyZKdvggMV3-mxojAZ","version":null,"title":"Fix merge conflicts in three clicks with Copilot cloud agent","summary":"You can now fix merge conflicts in three clicks with the new Fix with Copilot button on github.com, powered by Copilot cloud agent. Click the button, ...","content":"You can now fix merge conflicts in three clicks with the new Fix with Copilot button on github.com, powered by Copilot cloud agent. Click the button, and a comment is…\n\nThe post [Fix merge conflicts in three clicks with Copilot cloud agent](https://github.blog/changelog/2026-04-13-fix-merge-conflicts-in-three-clicks-with-copilot-cloud-agent) appeared first on [The GitHub Blog](https://github.blog).","publishedAt":"2026-04-13T19:36:26.000Z","url":"https://github.blog/changelog/2026-04-13-fix-merge-conflicts-in-three-clicks-with-copilot-cloud-agent","media":[]},{"id":"rel_WsRNCF0Oi5B6RuVmvwAqy","version":null,"title":"Remote control CLI sessions on web and mobile in public preview","summary":"The Copilot CLI is no longer a purely local experience. Today we’re launching copilot --remote: With remote capabilities, you can now monitor and stee...","content":"The Copilot CLI is no longer a purely local experience. Today we’re launching copilot --remote: With remote capabilities, you can now monitor and steer a running CLI session directly from…\n\nThe post [Remote control CLI sessions on web and mobile in public preview](https://github.blog/changelog/2026-04-13-remote-control-cli-sessions-on-web-and-mobile-in-public-preview) appeared first on [The GitHub Blog](https://github.blog).","publishedAt":"2026-04-13T14:15:43.000Z","url":"https://github.blog/changelog/2026-04-13-remote-control-cli-sessions-on-web-and-mobile-in-public-preview","media":[]},{"id":"rel_jVfxYeurLFLHn3-CHX6SY","version":"4.6","title":"Enforcing new limits and retiring Opus 4.6 Fast from Copilot Pro+","summary":"As GitHub Copilot continues to rapidly grow, we continue to observe an increase in patterns of high concurrency and intense usage. While we understand...","content":"As GitHub Copilot continues to rapidly grow, we continue to observe an increase in patterns of high concurrency and intense usage. While we understand this can be driven by legitimate…\n\nThe post [Enforcing new limits and retiring Opus 4.6 Fast from Copilot Pro+](https://github.blog/changelog/2026-04-10-enforcing-new-limits-and-retiring-opus-4-6-fast-from-copilot-pro) appeared first on [The GitHub Blog](https://github.blog).","publishedAt":"2026-04-10T22:56:46.000Z","url":"https://github.blog/changelog/2026-04-10-enforcing-new-limits-and-retiring-opus-4-6-fast-from-copilot-pro","media":[]},{"id":"rel_5TPzx476Rxe7hg69qptjA","version":null,"title":"Copilot usage metrics now aggregate Copilot cloud agent active user counts","summary":"Note: We’ve recently renamed Copilot coding agent to Copilot cloud agent. We will be updating our data schema for all existing coding agent fields to ...","content":"Note: We’ve recently renamed Copilot coding agent to Copilot cloud agent. We will be updating our data schema for all existing coding agent fields to reflect this change in the…\n\nThe post [Copilot usage metrics now aggregate Copilot cloud agent active user counts](https://github.blog/changelog/2026-04-10-copilot-usage-metrics-now-aggregate-copilot-cloud-agent-active-user-counts) appeared first on [The GitHub Blog](https://github.blog).","publishedAt":"2026-04-10T21:42:47.000Z","url":"https://github.blog/changelog/2026-04-10-copilot-usage-metrics-now-aggregate-copilot-cloud-agent-active-user-counts","media":[]},{"id":"rel_3mSNszib_zytlj2yPC1FA","version":null,"title":"Pausing new GitHub Copilot Pro trials","summary":"As GitHub Copilot continues to grow, we’ve seen a significant rise in abuse of our free trial system. To protect the experience and integrity of the p...","content":"As GitHub Copilot continues to grow, we’ve seen a significant rise in abuse of our free trial system. To protect the experience and integrity of the platform for legitimate developers,…\n\nThe post [Pausing new GitHub Copilot Pro trials](https://github.blog/changelog/2026-04-10-pausing-new-github-copilot-pro-trials) appeared first on [The GitHub Blog](https://github.blog).","publishedAt":"2026-04-10T20:25:32.000Z","url":"https://github.blog/changelog/2026-04-10-pausing-new-github-copilot-pro-trials","media":[]}],"pagination":{"page":1,"pageSize":20,"totalPages":2,"totalItems":33},"summaries":{"rolling":{"windowDays":90,"summary":"GitHub shipped broad investments across security workflows, Copilot integrations, and developer experience. Security took center stage with new Code Security risk assessments for organizations, contextual Copilot assistance directly in assessment results, and expanded secret scanning APIs to support delegated workflows. Beyond security, the platform deepened Copilot's reach—the cloud agent graduated from pull request work to research and coding tasks on Mobile, while new merge metrics landed in the usage API. Moderation and navigation received polish too: a Low Quality comment classification option, sortable notifications, and release information now accessible from issue sidebars.","releaseCount":10,"generatedAt":"2026-04-09T20:41:02.656Z"},"monthly":[]}}