Jules Updates & Release Notes
44 updates curated from 1 source by the Releasebot Team. Last updated: Mar 9, 2026
- Mar 9, 2026
- Date parsed from source:Mar 9, 2026
- First seen by Releasebot:Mar 9, 2026
Gemini 3.1 Pro is now available in Jules
Google announces Gemini 3.1 Pro is now available for Google Pro plan users, replacing Gemini 3 Pro as the default model for complex problem solving.
Gemini 3.1 Pro is now available in Jules for Google Pro plan users
Gemini 3.1 Pro is a smarter, more capable baseline for complex problem-solving.
This replaces Gemini 3 Pro as the default model for Pro users. Give it a try and let us know what you think.
Original source - Feb 19, 2026
- Date parsed from source:Feb 19, 2026
- First seen by Releasebot:Feb 20, 2026
Auto-Fixing CI Failures and configure Jules to commit as you
Jules now auto-detects and fixes CI failures on pull requests, looping through fix, commit, and resubmit to keep PRs moving. It eliminates manual error handling and REST calls, smoothing CI workflows. New commit authorship options let you choose Jules only, co-authored, or user only across all repos.
Release notes
Jules now automatically detects and fixes CI failures on pull requests it creates. When a check fails in GitHub Actions, Jules receives the error, works through a fix, and resubmits the PR — all without manual intervention.
Previously, a failed CI check on a Jules PR would stall your workflow. Resolving it required setting up REST API calls or manually copy-pasting error logs back to Jules. CI Fixer closes that gap. Jules now operates in a loop — fixing, committing, and resubmitting — so your PRs keep moving forward.
Authorship modes
You can now control how commits from Jules are attributed on GitHub. Three authorship modes are available:
- Jules: Jules is the sole author of all commits (default, existing behavior).
- Co-authored (Jules + You or You + Jules): Commits are co-authored by both you and Jules, crediting both contributors.
- User only: You are the sole author. Jules applies its changes under your identity.
Previously, Jules authored every commit and PR, which meant your GitHub contribution graph didn’t reflect the work you initiated. Setting the commit authorship in to co-authored to you or you + Jules, makes it clear to contributors and PR reviewers who is driving each change.
It applies at the user level across all repositories and all task types — scheduled, suggested, and manually triggered tasks.
Setting commit authorship
- Go to the Jules Settings page
- Open the Commit Authoring section
- Select your preferred authorship mode
- All future sessions will use the selected attribution
All of your release notes in one feed
Join Releasebot and get updates from Google and hundreds of other software products.
- Feb 2, 2026
- Date parsed from source:Feb 2, 2026
- First seen by Releasebot:Feb 3, 2026
MCP support comes to Jules
Jules launches MCP server support with API-key setup for Linear, Stitch, Neon, Tinybird, Context7, and Supabase. Security-first integration ensures isolated keys and limited permissions, triggering MCP tools automatically in a session. We’ll expand the trusted list and welcome partner suggestions.
Today we’re launching MCP Server support in Jules starting with: Linear, Stitch, Neon, Tinybird, Context7, and Supabase.
Add a service connection in the Settings page and will trigger the MCP server tools in a session when it detects the need for a tool call.Getting started
Our MCP server integration uses API key authentication. To get started:
- Get the service’s API key (such as Linear or Stitch)
- Go to the Jules Settings page
- Click on the MCP section
- Plug in your API key for that specific service
- Kick off a new session
- Jules will trigger the MCP server tools when it detects the need for the call
Focus on Security
It might seem odd for us to limit which MCP servers Jules can connect to. However, we are wanted to start with a focus on security. Jules operates within a cloud development environment connected to your GitHub repositories, so we prioritize a security-first approach to third-party integrations.
By hand-selecting these initial servers, we can:- Validate Data Flow: We ensure that each server adheres to strict data-handling standards, keeping your source code and API keys isolated.
- Audit Tool Permissions: We verify that each server only requests the specific permissions it needs to function, preventing “over-privileged” access to your environment.
- Ensure Stability: A vetted integration means fewer connection drops and a more predictable experience when Jules interacts with your external data.
We plan to expand this list as we work with more partners.
Tell us what to add next
If you have an MCP server in mind, you can let us know in the settings panel what we should add next.
Original source - Jan 30, 2026
- Date parsed from source:Jan 30, 2026
- First seen by Releasebot:Jan 31, 2026
Gemini 3 Flash is now the base model in Jules
Gemini 3 Flash Launch
Today we’re launching Gemini 3 Flash in Jules for all users on all tiers. It’s our new base model that’s faster and significantly more capable than our previous base model, Gemini 2.5 Pro. If it feels like Jules feels like it had a double espresso, you now know why. Give it a spin and let us know what you think.
Original source - Jan 26, 2026
- Date parsed from source:Jan 26, 2026
- First seen by Releasebot:Jan 28, 2026
Introducing the Planning Critic for Auto-Approved Plans
We’ve introduced a secondary agent—the Planning Critic—to review all plans that do not require human intervention. Before Jules executes a single line of code, this agent rigorously critiques and refines the proposed plan. While this adds a small amount of time to the planning phase, the result is a 9.5% reduction in task failure rates and significantly higher quality execution paths.
Original source - Jan 26, 2026
- Date parsed from source:Jan 26, 2026
- First seen by Releasebot:Jan 28, 2026
Jules now finds performance optimizations
Jules now surfaces Performance Optimizations
Jules now surfaces Performance Optimizations Jules has expanded its detection capabilities.
In addition to standard TODOs, Jules now proactively identifies performance optimizations within your code. These suggestions appear alongside your existing TODOs in the Suggested Tasks view, helping you catch bottlenecks and inefficiencies just as easily as you catch unfinished code.
Original source - Jan 26, 2026
- Date parsed from source:Jan 26, 2026
- First seen by Releasebot:Jan 28, 2026
REST API: Repoless, File Outputs, and Activity Filters
Repoless launches a REST API powered serverless dev environment with preloaded runtimes and an AI coding agent. Spawn a session with a prompt and download the git patch of the completed task; sessions are immutable and auditable. A new createTime filter speeds up fetching activities and signals bigger news.
Release Notes
Repoless comes to the REST API and we think this has massive potential. A repoless session in a sense becomes serverless, because it creates an ephemeral cloud dev environment with Node, Python, Rust, Bun, and other runtimes preloaded on the image.
The massive potential is that this serverless environment comes with an AI coding agent.
With a single API call you can spawn a serverless dev environment with only the context in your prompt. When it’s done you can download the file outputs from the session.
We can’t wait to see what you all do with this one.Speaking of file outputs, we just made that a lot easier. When a session completes a task, you can now get the entire change set.
This is stored in a git patch format for parsing changes such as additions, modifications, and deletions.Each Jules Session has a collection of activities that represent the steps Jules took to complete the task. These activities are immutable and can be used to reconstruct the session.
Original source
Activities follow the event source pattern, meaning once they occur they never change. They are a record in time of the steps Jules took to complete the task. Since they never change, you can cache them aggressively.
We added a createTime filter that works like a range cursor and allows you to only fetch new activities over the network.
This may seem like a small optimization but stay tuned. We have some big news around this one. - Jan 26, 2026
- Date parsed from source:Jan 26, 2026
- First seen by Releasebot:Jan 28, 2026
Update Scheduled Tasks
Quick quality-of-life update
Quick quality-of-life update: You no longer need to delete and recreate a scheduled task just to fix a typo or change the timing. You can now Edit, Pause, and Resume your tasks directly from the menu. It’s a small change that saves a lot of clicking.
Original source - Dec 10, 2025
- Date parsed from source:Dec 10, 2025
- First seen by Releasebot:Jan 7, 2026
Put routine maintenance on autopilot with Scheduled Tasks
Jules now supports recurring tasks so you can schedule weekly checks, nightly lint fixes, or monthly cleanups. Define it once and Jules will run on your schedule and open PRs automatically, with everything managed from the Scheduled tab.
Scheduled Tasks
You can now set recurring tasks for Jules. Whether it’s a weekly dependency check, a nightly lint fix, or a monthly cleanup, just define it once and Jules will handle the rest on your schedule.
To get started, navigate to the Scheduled tab on your repo page to configure your first task.
Set it and forget it: Define your maintenance chores once. Jules will wake up, perform the task, and open a PR without you needing to lift a finger.
Never miss a beat: No more manual prompts for the stuff that needs to happen every week. Ensure consistent code quality and dependency hygiene by automating your routine work.
This feature is available today for all Jules users.
Read more at: Scheduled Tasks.
Original source - Dec 10, 2025
- Date parsed from source:Dec 10, 2025
- First seen by Releasebot:Jan 7, 2026
Automated fixes for Render deployments
Jules now integrates with Render to automate failure recovery and proactive PR fixes. It detects build failures, analyzes logs, and pushes fixes as commits, available now with a setup in Render and Jules integrations docs.
Render integration
We’ve integrated with Render to handle the last mile of shipping code. Jules can now detect failed builds, analyze the logs, and push fixes to its PRs before you even know your build failed.
To enable this, go to your Render Dashboard, open the Help menu (top-right), and click Coding Agents to provision your API Key. Paste this key into Settings > Integrations in Jules.
- Instant Recovery: No more context switching to dig through console logs. Jules detects the failure immediately and identifies the root cause.
- Proactive Fixes: Instead of just alerting you to an error, Jules writes the code to fix it. Review the solution as a standard commit on your PR, merge it, and get back to green.
This integration is available now. Check out the docs for the full setup guide, including enabling PR previews.
Note: For now, Jules only fixes PRs it has created.
Original source - Dec 10, 2025
- Date parsed from source:Dec 10, 2025
- First seen by Releasebot:Jan 7, 2026
Enable suggested tasks to let Jules find issues proactively
Jules adds proactive background analysis with Suggested Tasks that surface code improvement ideas on your repo page. The initial focus tackles #TODOs, turning comments into approved tasks, with continuous monitoring for eligible projects.
Proactive Suggestions: Suggested Tasks
Jules can now work proactively in the background to improve your code. With Suggested Tasks, Jules scans your repository for potential improvements and presents them on your repo page.
To get started, enable the proactive suggestions toggle on the repo page.
Tackle the #TODOs: In this initial release, Jules focuses on identifying #TODO comments in your code. It reads the context, formulates a plan, and presents it for your approval—turning idle comments into active solutions. More use cases coming soon.
Continuous Improvement: Once enabled, Jules continuously monitors your codebase. You don’t have to ask; just check your dashboard for new suggestions and approve the ones you want.
This experimental feature is available today for Google AI Pro and Ultra subscribers on up to five repositories.
Read more at: Suggested Tasks.
Original source - Nov 20, 2025
- Date parsed from source:Nov 20, 2025
- First seen by Releasebot:Jan 7, 2026
Start from scratch—instantly
Jules now lets you start tasks without selecting a repository, removing the extra step between idea and code. Start a repoless session by clicking the X next to the repo, skip the empty-repo detour, and dive into instant ideation. Available now for all users.
New: Start a Jules task without selecting a repository
You can now start a Jules task immediately without selecting a repository. We’ve removed the speed bump between your idea and your code, allowing you to capture that spark of inspiration without the overhead.
To trigger this, simply click the “X” next to the selected repo to start a fresh, repoless session.
Skip the Detour: Previously, starting a fresh journey meant hopping over to GitHub to create an empty repo first. Now, you can bypass that context switch entirely and keep your momentum.
Instant Ideation: Whether you are prototyping a new feature or writing a quick script, you can dive straight into the logic. Just describe what you want, and Jules gets to work.
This update is available now for all users starting a new task.
Original source - Nov 19, 2025
- Date parsed from source:Nov 19, 2025
- First seen by Releasebot:Jan 7, 2026
Introducing Gemini 3 Pro
Gemini 3 Pro lands in Jules with sharper reasoning, better instruction following, and stronger day to day reliability. Highlights include coherent planning, visual verification, and agentic memories that adapt to your coding style. Rolling out now to Google AI Ultra users and coming to Pro users soon.
Gemini 3 Pro is now available in Jules. This is the newest generation of the Gemini family, bringing clearer reasoning, stronger instruction following, and a meaningful lift in day-to-day reliability.
Coherent Planning: Multi-step tasks hold together more naturally. The agent requires less management during transitions, meaning your work moves forward with fewer detours.
Visual Verification: Leveraging the improved multimodal capabilities of Gemini 3 Pro, Jules renders and verifies web app outcomes with significantly higher precision.
Agentic Memories: The new model utilizes context more effectively, helping Jules adapt to your coding preferences and project nuances more reliably over time.
Gemini 3 Pro is rolling out now to Google AI Ultra users and will be available to Pro users in the coming days.
Original source - Nov 10, 2025
- Date parsed from source:Nov 10, 2025
- First seen by Releasebot:Jan 7, 2026
New Jules Tools CLI Updates: Side-by-Side Diffs, Repo Inference, and More
Jules Tools CLI unveils parallel task execution for the same prompt and a stream of stability upgrades. The release also adds repo inference, PNPM compatibility, OAuth2 hardening, WSL/Arch fixes, and a new side‑by‑side diff viewer.
We’ve been busy shipping a bunch of new updates to the Jules Tools CLI to make your experience smoother and more powerful. Here’s a rundown of what’s new:
Parallel Task Execution
You can now start multiple parallel tasks for the same prompt using the --parallel flag with jules remote new. This is useful for getting multiple suggestions from Jules at once (max of 5).
- Added: --parallel flag to remote new command.
v0.1.40 - WSL/Arch Linux Credential Fixes
We’ve refactored how we handle authentication to resolve credential issues for users on WSL and Arch Linux. This means broader platform support and no more login issues.
v0.1.39 - OAuth2 Error Handling Improvements
We’ve enhanced our OAuth2 flow to be more resilient with better error recovery, making the authentication process more reliable.
v0.1.38 - Repository Inference Feature
To shorten CLI commands and reduce configuration, we’ve added repository inference. Now, Jules can automatically detect the repository from your current directory, so you don’t have to specify it manually.
v0.1.37 - PNPM Installation Fixes
We’ve added better support for the PNPM package manager, ensuring full compatibility for a wider range of JavaScript projects.
v0.1.36 - Side-by-Side Diff Viewer + Bug Fixes
Reviewing code is now faster and more readable with the new side-by-side diff viewer in the TUI. We’ve also added comprehensive test coverage and fixed bugs related to auto-approval and timeout validation.
Original source - Oct 3, 2025
- Date parsed from source:Oct 3, 2025
- First seen by Releasebot:Jan 7, 2026
- Modified by Releasebot:Jan 28, 2026
Introducing the Jules API
Jules launches a public API to programmatically access its capabilities, enabling Slack chatops, bug fixing automation with Linear/Jira, and CI/CD integration via GitHub Actions. Documentation and examples provided.
Jules API
You can now programmatically access Jules’s capabilities to automate your work and build powerful integrations. The Jules API is designed to help you seamlessly integrate Jules into your existing development workflows, unlocking new ways to automate and enhance the entire software development lifecycle.
Capabilities
With the API, you can:
- Create custom integrations with tools like Slack for “ChatOps” workflows, allowing you to assign tasks directly from your chat client.
- Automate bug fixing and feature implementation by connecting Jules to your project management tools like Linear or Jira.
- Integrate Jules directly into your CI/CD pipelines in services like GitHub Actions.
Example
Here’s a quick example of how to create a new task (a “Session”) using a cURL command:
For more examples see the API documentation.
Original source
Curated by the Releasebot team
Releasebot is an aggregator of official product update announcements from hundreds of software vendors and thousands of sources.
Our editorial process involves the manual review and audit of release notes procured with the help of automated systems.
Similar to Jules with recent updates:
- Claude updates87 release notes · Latest May 12, 2026
- OpenAI Models updates45 release notes · Latest Mar 18, 2026
- ChatGPT updates162 release notes · Latest May 7, 2026
- Claude Code updates312 release notes · Latest May 13, 2026
- OpenAI updates64 release notes · Latest May 7, 2026
- Anthropic updates40 release notes · Latest May 6, 2026