98db674
Modify test_background_task_with_foreground_wait to use oneshot channel for bg-fg communication
Nathan Sobo
created
b303a76
Fix compile errors in scheduler crate: correct syntax error in tick method and Send trait bounds in spawn_labeled
Nathan Sobo
created
588237c
Add scheduler crate with unified TestScheduler and ForegroundExecutor
Click to expand commit body
- Created new shared crate at crates/scheduler/
- Implemented minimal Scheduler trait with schedule_foreground and is_main_thread
- Added TestScheduler with deterministic execution and basic task queuing
- Added ForegroundExecutor wrapper for !Send futures
- Included test_basic_spawn_and_run passing test
- Follows Zed Rust guidelines: parking_lot Mutex, shadowing in scopes
Nathan Sobo
created
5716937
Update scheduler architecture plans with Executor and ForegroundExecutor wrappers
Nathan Sobo
created
d3d1be4
Update TestScheduler design with SchedulerConfig, VariationSource enum, and SchedulerFuzzInput for fuzzing support
Nathan Sobo
created
1c1649d
Restructure unified scheduler architecture: separate GPUI/Cloud sections with comprehensive integration coverage
Click to expand commit body
- Add dedicated GPUI Integration section with BackgroundExecutor/ForegroundExecutor
- Add dedicated Cloud Integration section with SimulatedExecutionContext session coordination
- Clarify session coordination approach: handled directly in Cloud's SimulatedExecutionContext
- Update migration strategies for both domains
- Balance coverage depth between GPUI and Cloud
- Change present-tense to future-tense planning language
- Reorganize platform backend implementations clearly
- Update architecture diagram to show domain-specific integration
Nathan Sobo
created
26d6d82
Update unified scheduler architecture: clarify platform implementations remain in GPUI, update to future tense language for planning document
Nathan Sobo
created
28bd412
Update unified scheduler plan with complete GPUI feature coverage
Click to expand commit body
- Add comprehensive GPUI test methods (tick, run_until_parked, advance_clock, etc.)
- Add enhanced generic helpers for timer, blocking, and other GPUI APIs
- Update TestScheduler with all missing fields and methods
- Ensure object-safe trait supports all current BackgroundExecutor/ForegroundExecutor methods
- Confirm 100% GPUI API compatibility with existing code
Nathan Sobo
created
263eae3
Update unified scheduler architecture to use object-safe trait with generic spawn helpers
Click to expand commit body
- Make Scheduler trait object-safe by replacing generic spawn<R>() with schedule(runnable)
- Add generic spawn helpers on dyn Scheduler to preserve Future-based API
- Move task state management internally to scheduler implementations
- Update GPUI integration to use trait objects with spawn helpers
- Enhance Cloud integration with automatic session association
- Resolve Runnable vs Future interface mismatch while maintaining backwards compatibility
- GPUI and Cloud file paths with specific types to update
- Migration points for each area
- Platform backend files for each OS
- Compatibility checklist for all features
- Step-by-step implementation roadmap
- Test files that will be impacted
Provides complete reference for implementing the unified scheduler architecture.
Nathan Sobo
created
de19c37
Update unified scheduler architecture plan with final layered design
Click to expand commit body
- Clean separation: spawn_labeled on main trait (GPUI API), deprioritize only on TestScheduler (test infrastructure)
- Complete code listings with explanations
- Layered architecture: core Scheduler trait + TestScheduler + Cloud wrapper
- Production-safe: GPUI executors use trait objects, Cloud uses TestScheduler directly
- Full feature set: task coordination, session management, test determinism
- Define single Scheduler trait with low-level primitives and extension methods
- Centralize Task<T> and TaskId in scheduler crate
- Enable Send/non-Send future scheduling with main-thread safety
- Provide delayed scheduling via schedule_at for timer functionality
- Maintain GPUI/Cloud compatibility while unifying platform backends
- Establish foundation for deterministic testing and observability
Nathan Sobo
created
5abc398
nix: Update flake, remove legacy Darwin SDK usage (#37254)
Click to expand commit body
`darwin.apple_sdk.frameworks` has been obsoleted and is no longer
required to be specified explicitly as per [Nixpkgs Reference
Manual](https://nixos.org/manual/nixpkgs/stable/#sec-darwin-legacy-frameworks).
@P1n3appl3 not sure what the process for updating Nix is, so lemme know
if this is desired/acceptable!
Release Notes:
- N/A
Jakub Konka
created
9c8c396
linux: Support ctrl-insert in markdown previews (#37273)
Click to expand commit body
Closes: https://github.com/zed-industries/zed/issues/37240
Release Notes:
- Added support for copying in Markdown preview using `ctrl-insert` on Linux/Windows
Peter Tripp
created
e48be30
vim: Fix `NormalBefore` with completions shown (#37272)
Click to expand commit body
Follow-up to https://github.com/zed-industries/zed/pull/35985
The `!menu` is actually not needed and breaks other keybinds from that
context.
Release Notes:
- N/A
Finn Evers
created
babc0c0
Add a "mandatory PR contents" section in the contribution docs (#37259)
Click to expand commit body
The LLM part is inspired by (and paraphrased from)
https://github.com/ghostty-org/ghostty?tab=contributing-ov-file#ai-assistance-notice
Release Notes:
- N/A
Kirill Bulatov
created
39d41ed
Add another entry to show how to hide the Sign In button from the interface (#37260)
Takes care of
https://github.com/zed-industries/zed/security/dependabot/64
Release Notes:
- N/A
Kirill Bulatov
created
f348737
Update Rust crate tracing-subscriber to v0.3.20 [SECURITY] (#37195)
Click to expand commit body
This PR contains the following updates:
| Package | Type | Update | Change |
|---|---|---|---|
| [tracing-subscriber](https://tokio.rs)
([source](https://redirect.github.com/tokio-rs/tracing)) | dependencies
| patch | `0.3.19` -> `0.3.20` |
### GitHub Vulnerability Alerts
####
[CVE-2025-58160](https://redirect.github.com/tokio-rs/tracing/security/advisories/GHSA-xwfj-jgwm-7wp5)
### Impact
Previous versions of tracing-subscriber were vulnerable to ANSI escape
sequence injection attacks. Untrusted user input containing ANSI escape
sequences could be injected into terminal output when logged,
potentially allowing attackers to:
- Manipulate terminal title bars
- Clear screens or modify terminal display
- Potentially mislead users through terminal manipulation
In isolation, impact is minimal, however security issues have been found
in terminal emulators that enabled an attacker to use ANSI escape
sequences via logs to exploit vulnerabilities in the terminal emulator.
### Patches
`tracing-subscriber` version 0.3.20 fixes this vulnerability by escaping
ANSI control characters in when writing events to destinations that may
be printed to the terminal.
### Workarounds
Avoid printing logs to terminal emulators without escaping ANSI control
sequences.
### References
https://www.packetlabs.net/posts/weaponizing-ansi-escape-sequences/
### Acknowledgments
We would like to thank [zefr0x](http://github.com/zefr0x) who
responsibly reported the issue at `security@tokio.rs`.
If you believe you have found a security vulnerability in any tokio-rs
project, please email us at `security@tokio.rs`.
---
### Release Notes
<details>
<summary>tokio-rs/tracing (tracing-subscriber)</summary>
###
[`v0.3.20`](https://redirect.github.com/tokio-rs/tracing/releases/tag/tracing-subscriber-0.3.20):
tracing-subscriber 0.3.20
[Compare
Source](https://redirect.github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.19...tracing-subscriber-0.3.20)
**Security Fix**: ANSI Escape Sequence Injection (CVE-TBD)
#### Impact
Previous versions of tracing-subscriber were vulnerable to ANSI escape
sequence injection attacks. Untrusted user input containing ANSI escape
sequences could be injected into terminal output when logged,
potentially allowing attackers to:
- Manipulate terminal title bars
- Clear screens or modify terminal display
- Potentially mislead users through terminal manipulation
In isolation, impact is minimal, however security issues have been found
in terminal emulators that enabled an attacker to use ANSI escape
sequences via logs to exploit vulnerabilities in the terminal emulator.
#### Solution
Version 0.3.20 fixes this vulnerability by escaping ANSI control
characters in when writing events to destinations that may be printed to
the terminal.
#### Affected Versions
All versions of tracing-subscriber prior to 0.3.20 are affected by this
vulnerability.
#### Recommendations
Immediate Action Required: We recommend upgrading to tracing-subscriber
0.3.20 immediately, especially if your application:
- Logs user-provided input (form data, HTTP headers, query parameters,
etc.)
- Runs in environments where terminal output is displayed to users
#### Migration
This is a patch release with no breaking API changes. Simply update your
Cargo.toml:
```toml
[dependencies]
tracing-subscriber = "0.3.20"
```
#### Acknowledgments
We would like to thank [zefr0x](http://github.com/zefr0x) who
responsibly reported the issue at `security@tokio.rs`.
If you believe you have found a security vulnerability in any tokio-rs
project, please email us at `security@tokio.rs`.
</details>
---
### Configuration
π **Schedule**: Branch creation - "" in timezone America/New_York,
Automerge - At any time (no schedule defined).
π¦ **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.
β» **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.
π **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
Release Notes:
- N/A
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi43IiwidXBkYXRlZEluVmVyIjoiNDEuODIuNyIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==-->
---------
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Kirill Bulatov <kirill@zed.dev>
renovate[bot]
,
renovate[bot]
, and
Kirill Bulatov
created
1ca5e84
markdown: Add HTML `img` tag support (#36700)
Click to expand commit body
Closes #21992
<img width="1406" height="1184" alt="Screenshot 2025-08-21 at 18 09 24"
src="https://github.com/user-attachments/assets/5f14a0d8-c4d9-48ad-b10d-fadfaca258ea"
/>
Code example:
```markdown
# Html Tag
<img src="https://picsum.photos/200/300" alt="Description of image" />
# Html Tag with width and height
<img src="https://picsum.photos/200/300" alt="Description of image" width="100" height="200" />
# Html Tag with style attribute with width and height
<img src="https://picsum.photos/200/300" alt="Description of image" style="width: 100px; height: 200px" />
# Normal Tag

```
Release Notes:
- Markdown: Added HTML `<img src="/some-image.svg">` tag support
Remco Smits
created
d80f132
Support for "Insert" from character key location (#37219)
Click to expand commit body
Release Notes:
- Added support for the Insert-Key from a character key location for
keyboard layouts like neo2
Gerd Augsburg
created
e115584
docs: Copyedit debugger.md and clarify settings location (#36996)
Click to expand commit body
Release Notes:
- N/A
Dan Dascalescu
created
fe0ab30
Fix auto size rendering of SVG images in Markdown (#36663)
Click to expand commit body
Release Notes:
- Fixed auto size rendering of SVG images in Markdown.
## Before
<img width="836" height="844" alt="image"
src="https://github.com/user-attachments/assets/0782e17e-620f-4c29-a5bc-a2ffe877d220"
/>
<img width="691" height="678" alt="image"
src="https://github.com/user-attachments/assets/dbe2dd5f-fd5b-48f9-bd09-0ee35e116aec"
/>
## After
<img width="873" height="1015" alt="image"
src="https://github.com/user-attachments/assets/59cbb69f-6a81-43cb-989f-3bcea873d81e"
/>
<img width="647" height="598" alt="image"
src="https://github.com/user-attachments/assets/11b67d8e-2b6c-4245-ad13-d4616fdabf22"
/>
For GPUI example
```
cargo run -p gpui --example image
```
<img width="1212" height="740" alt="SCR-20250821-ojoy"
src="https://github.com/user-attachments/assets/62bb2847-c533-4c4d-b5f7-c9764796262a"
/>
Jason Lee
created
253765a
zeta: Improve efficiency and clarity of license detection patterns (#37242)
Click to expand commit body
See discussion on #36564
Adds a simple ad-hoc substring matching pattern language which allows
skipping a bounded number of chars between matched substrings. Before
this change compiling the regex was taking ~120ms on a fast machine and
~8mb of memory. This new version is way faster and uses minimal memory.
Checked the behavior of this vs by running it against 10k licenses that
happened to be in my home dir. There were only 4 differences of behavior
with the regex implementation, and these were false negatives for the
regex implementation that are true positives with the new one.
Of the ~10k licenses in my home dir, ~1k do not match one of these
licenses, usually because it's GPL/MPL/etc.
Release Notes:
- N/A
Michael Sloan
created
ad746f2
zeta: Add zlib to license detection + ignore symbol differences (#37238)
Click to expand commit body
See discussion on #36564. Makes the license regexes a less fragile by
not matching on symbols, while also excluding cases where a long file
ends with a valid license. Also adds Zlib license, a commented out test
to check all license-like files discovered in the homedir, and more
testcases.
Not too happy with the efficiency here, on my quite good computer it
takes ~120ms to compile the regex and allocates ~8mb for it. This is
just not a great use of regexes, I think something using eager substring
matching would be much more efficient - hoping to followup with that.
Release Notes:
- Edit Prediction: Added Zlib license to open-source licenses eligible
for data collection.
Michael Sloan
created
de576bd
agent: Fix agent panel header not updating when opening a history entry (#37189)
Click to expand commit body
Closes #37171
Release Notes:
- agent: Fixed a bug that caused the agent information in the panel
header to be incorrect when opening a thread from history.
Closes #ISSUE
Adds a dependency on `serde_path_to_error` to the workspace allowing us
to include the path to the setting that failed to parse on settings
parse failure.
Release Notes:
- N/A *or* Added/Fixed/Improved ...
Closes #37025
This PR fixes GitHub Copilot thread summary failures by removing the
unnecessary `noop` tool insertion logic. The code was originally added
as a workaround in https://github.com/zed-industries/zed/pull/30007 for
supposed GitHub Copilot API issues when tools were used previously in a
conversation but no tools are provided in the current request. However,
testing revealed that this scenario works fine without the workaround,
and the `noop` tool insertion was actually causing "Invalid schema for
function 'noop'" errors that prevented thread summarization from
working. Removing this logic eliminates the errors and allows thread
summarization to function correctly with GitHub Copilot models.
The best way to see if removing that part of code works is just
triggering thread summarisation.
Error Log:
```
2025-08-27T13:47:50-04:00 ERROR [workspace::notifications] "Failed to connect to API: 400 Bad Request {"error":{"message":"Invalid schema for function 'noop': In context=(), object schema missing properties.","code":"invalid_function_parameters"}}\n"
```
Release Notes:
- Fixed GitHub Copilot thread summary failures by removing unnecessary
noop tool insertion logic.
Umesh Yadav
created
b473f4a
Fix SQL error in recent projects query (#37220)
Click to expand commit body
Follow-up to https://github.com/zed-industries/zed/pull/37035
In the WSL PR, `ssh_connection_id` was renamed to
`remote_connection_id`. However, that was not accounted for within the
`recent_workspaces_query`. This caused a query fail:
```
2025-08-30T14:45:44+02:00 ERROR [recent_projects] Prepare call failed for query:
SELECT
workspace_id,
paths,
paths_order,
ssh_connection_id
FROM
workspaces
WHERE
paths IS NOT NULL
OR ssh_connection_id IS NOT NULL
ORDER BY
timestamp DESC
Caused by:
Sqlite call failed with code 1 and message: Some("no such column: ssh_connection_id")
```
and resulted in no recent workspaces being shown within the recent
projects picker.
This change updates the column name to the new name and thus fixes the
error.
Release Notes:
- N/A
Finn Evers
created
7d0a303
Add xAI to supported language model providers (#37206)
Click to expand commit body
After setting a `grok` model via the agent panel, the settings complains
that it doesn't recognize the language model provider:
<img width="1005" height="188" alt="SCR-20250829-tqqd"
src="https://github.com/user-attachments/assets/a25fc7e0-60f0-44fd-96d2-b1cb316d06b6"
/>
Also, sorted the list, in the follow-up commit.
Release Notes:
- N/A
Closes #36188
## Todo
* [x] CLI
* [x] terminals
* [x] tasks
## For future PRs
* debugging
* UI for opening WSL projects
* fixing workspace state restoration
Release Notes:
- Windows alpha: Zed now supports editing folders in WSL.
---------
Co-authored-by: Junkui Zhang <364772080@qq.com>
Max Brunsfeld
and
Junkui Zhang
created
1c2e2a0
agent: Re-add workaround for language model behavior with empty tool result (#37196)
Click to expand commit body
This is just copying over the same workaround here:
https://github.com/zed-industries/zed/blob/a790e514af4d6957aa1a14cc8190b2ff24a0484c/crates/agent/src/thread.rs#L1455-L1459
Into the agent2 code.
Release Notes:
- agent: Fixed an issue where some tool calls in the Zed agent could
return an error like "`tool_use` ids were found without `tool_result`
blocks immediately after"
Fixes #36866
- Updated internal naming for Claude 4 models to be consistent.
- Corrected max output tokens for Anthropic Bedrock models to match docs
Shoutout to @tlehn for noticing the bug, and finding the resolution.
Release Notes:
- bedrock: Fixed inference config errors causing Opus 4 Thinking and
Opus 4.1 Thinking to fail (thanks [@tlehn](https://github.com/tlehn) and
[@5herlocked](https://github.com/5herlocked])
- bedrock: Fixed an issue which prevented Rules / System prompts not
functioning with Bedrock models (thanks
[@tlehn](https://github.com/tlehn) and
[@5herlocked](https://github.com/5herlocked])
I accidentally pushed
https://github.com/zed-industries/zed/commit/db508bbbe2fe41507b2930d19effbecd25ea84c4
to main instead of to a branch.
That broke tests.
Release Notes:
- N/A
515282d
zeta: Add detection of BSD licenses + efficiency improvements + more lenient whitespace handling (#37194)
Click to expand commit body
Closes #36564
Release Notes:
- Edit Prediction: Added various BSD licenses to open-source licenses
eligible for data collection.
Michael Sloan
created
f2c3f3b
settings ui: Start work on creating the initial structure (#36904)
Click to expand commit body
## Goal
This PR creates the initial settings ui structure with the primary goal
of making a settings UI that is
- Comprehensive: All settings are available through the UI
- Correct: Easy to understand the underlying JSON file from the UI
- Intuitive
- Easy to implement per setting so that UI is not a hindrance to future
settings changes
### Structure
The overall structure is settings layer -> data layer -> ui layer.
The settings layer is the pre-existing settings definitions, that
implement the `Settings` trait. The data layer is constructed from
settings primarily through the `SettingsUi` trait, and it's associated
derive macro. The data layer tracks the grouping of the settings, the
json path of the settings, and a data representation of how to render
the controls for the setting in the UI, that is either a marker value
for the component to use (avoiding a dependency on the `ui` crate) or a
custom render function.
Abstracting the data layer from the ui layer allows crates depending on
`settings` to implement their own UI without having to add additional UI
dependencies, thus avoiding circular dependencies. In cases where custom
UI is desired, and a creating a custom render function in the same crate
is infeasible due to circular dependencies, the current solution is to
implement a marker for the component in the `settings` crate, and then
handle the rendering of that component in `settings_ui`.
### Foundation
This PR creates a macro and a trait both called `SettingsUi`. The
`SettingsUi` trait is added as a new trait bound on the `Settings`
trait, this allows the type system to guarantee that all settings
implement UI functionality. The macro is used to derived the trait for
most types, and can be modified through attributes for unique cases as
well.
A derive-macro is used to generate the settings UI trait impl, allowing
it the UI generation to be generated from the static information in our
code base (`default.json`, Struct/Enum names, field names, `serde`
attributes, etc). This allows the UI to be auto-generated for the most
part, and ensures consistency across the UI.
#### Immediate Follow ups
- Add a new `SettingsPath` trait that will be a trait bound on
`SettingsUi` and `Settings`
- This trait will replace the `Settings::key` value to enable
`SettingsUi` to infer the json path of it's derived type
- Figure out how to render `Option<T> where T: SettingsUi` correctly
- Handle `serde` attributes in the `SettingsUi` proc macro to correctly
get json path from a type's field and identity
Release Notes:
- N/A
---------
Co-authored-by: Ben Kunkle <ben@zed.dev>
Anthony Eid
and
Ben Kunkle
created
e9252a7
editor: Context menu aside scrolling (#35985)
Click to expand commit body
Add support for scrolling the contents rendered aside an
`editor::code_context_menus::CodeContextMenu` by introducing the
`scroll_aside` method.
For now this method is only implemented for the
`CodeContextMenu::Completions` variant, which will scroll the aside
contents for an `editor::code_context_menus::CompletionsMenu` element,
as a `ScrollHandle` is added to the aside content that is rendered.
In order to be possible to trigger this via keybindings, a new editor
action is introduced, `ContextMenuScrollAside`, which accepts a number
of lines or pages to scroll the content by.
Lastly, the default keymaps for both MacOS and Linux, as well as for
Zed's vim mode, are updated to ensure that the following keybindings are
supported when a completion menu is open and the completion item's
documentation is rendered aside:
- `ctrl-e`
- `ctrl-y`
- `ctrl-d`
- `ctrl-u`
### Recording
https://github.com/user-attachments/assets/02043763-87ea-46f5-9768-00e907127b69
---
Closes #13194
Release Notes:
- Added support for scrolling the documentation panel shown alongside
the completion menu in the editor with `cltr-d`, `ctrl-u`, `ctrl-e` and
`ctrl-y`
---------
Co-authored-by: Conrad Irwin <conrad.irwin@gmail.com>
Co-authored-by: MrSubidubi <finn@zed.dev>
Dino
,
Conrad Irwin
, and
MrSubidubi
created
fcc3d10
supermaven: Improve completion caching and position validation (#37047)
Click to expand commit body
Closes #36981
- Add completion text and position caching to reduce redundant API calls
- Only trigger new completion requests on text changes, not cursor
movement
- Validate cursor position to ensure completions show at correct
location
- Improve end-of-line range calculation for more accurate deletions
- Extract reset_completion_cache helper for cleaner code organization
- Update completion diff algorithm documentation for clarity
Edit: Sorry this is the 2nd PR, I forgot that the forks history was
messy; I cherrypicked and cleaned it properly with this PR
Release Notes:
- supermaven: Improved caching of predictions
- supermaven: Fixed an issue where changing cursor position would
incorrectly trigger new completions
Raphael LΓΌthy
created
a790e51
Fix ACP permission request with new tool calls (#37182)
Click to expand commit body
Release Notes:
- Gemini integration: Fixed a bug with permission requests when
`always_allow_tool_calls` is enabled
Agus Zubiaga
created
92f739d
acp: Improve error reporting and log more information when failing to launch gemini (#37178)
Click to expand commit body
In the case where we fail to create an ACP connection to Gemini, only
report the "unsupported version" error if the version for the found
binary is at least our minimum version. That means we'll surface the
real error in this situation.
This also fixes incorrect sorting of downloaded Gemini versions--as @kpe
pointed out we were effectively using the version string as a key. Now
we'll correctly use the parsed semver::Version instead.
Release Notes:
- N/A
Cole Miller
created
3d4f917
Make project symbols picker entry consistent with outline picker (#37176)
Click to expand commit body
Closes https://github.com/zed-industries/zed/issues/36383
The project symbols modal didn't use the buffer font and highlighted
matches through modifying the font weight, which is inconsistent with
the outline picker, which presents code in list items in a similar way,
as well as project _and_ buffer search highlighting design.
Release Notes:
- N/A
Closes #35787
Closes #17890
Closes #28789
Closes #36495
How it works:
For highlights (and selections) within the visible rows of the editor,
we split them row by row. This is efficient since the number of visible
rows is constant. For each row, all highlights and selections, which may
overlap, are flattened using a line sweep. This produces non-overlapping
consecutive segments for each row, each with a blended background color.
Next, for each row, we split text runs into smaller runs to adjust its
color using APCA contrast. Since both text runs and segment are
non-overlapping and consecutive, we can use two-pointer on them to do
this.
For example, a text run for the variable red might be split into two
runs if a highlight partially covers it. As a result, one part may
appear as red, while the other appears as a lighter red, depending on
the background behind it.
Result:
<img width="1458" height="949" alt="image"
src="https://github.com/user-attachments/assets/4814c93d-12e7-4b4d-8542-d912acccfb8e"
/>
<img width="1459" height="952" alt="image"
src="https://github.com/user-attachments/assets/9e497b6c-3e66-43e8-8e5b-f634dd5ee8d3"
/>
<img width="1457" height="621" alt="image"
src="https://github.com/user-attachments/assets/8dfa6ce5-f46b-45b9-8008-66169d5aecd4"
/>
Release Notes:
- Improved text contrast when selected or highlighted in the editor.
Smit Barmase
created
11fb57a
acp: Use the custom claude installation to perform login (#37169)
Click to expand commit body
Release Notes:
- N/A
---------
Co-authored-by: Bennet Bo Fenner <bennetbo@gmx.de>
Co-authored-by: Agus Zubiaga <agus@zed.dev>
Co-authored-by: Nathan Sobo <nathan@zed.dev>
Co-authored-by: Cole Miller <cole@zed.dev>
Co-authored-by: morgankrey <morgan@zed.dev>
Antonio Scandurra
,
Bennet Bo Fenner
,
Agus Zubiaga
,
Nathan Sobo
,
Cole Miller
, and
morgankrey
created
5001c03
Properly process files that cannot be open for a reason (#37170)
Click to expand commit body
Follow-up of https://github.com/zed-industries/zed/pull/36764
* Fix `anyhow!({e})` conversion lossing Collab error codes context when
opening a buffer remotely
* Use this context to only allow opening files that had not specific
Collab error code
Release Notes:
- N/A
Kirill Bulatov
created
20d32d1
Update lsp-types to properly handle brackets (#37166)
Click to expand commit body
Closes #21062
See also this pull request:
https://github.com/zed-industries/lsp-types/pull/6.
Release Notes:
- Fixed incorrect URL encoding of file paths with `[` `]` in them
Wouter Kayser
created
ff035e8
agent: Add CC item in the settings view (#37164)
Click to expand commit body
Release Notes:
- N/A
Danilo Leal
created
01266d1
Do not send any LSP logs by default to collab clients (#37163)
Click to expand commit body
Follow-up https://github.com/zed-industries/zed/pull/37083
Noisy RPC LSP logs were functioning this way already, but to keep Collab
loaded even less, do not send any kind of logs to the client if the
client has a corresponding log tab not opened.
This change is pretty raw and does not fully cover scenarious with
multiple clients: if one client has a log tab open and another opens tab
with another kind of log, the 2nd kind of logs will be streamed only.
Also, it should be possible to forward the host logs to the client on
enabling β that is not done to keep the change smaller.
Release Notes:
- N/A
Kirill Bulatov
created
4507f60
languages: Fix python activation scripts not being quoted (#37159)
Click to expand commit body
Release Notes:
- N/A
Lukas Wirth
created
d13ba01
Require authorization for MCP tools (#37155)
Click to expand commit body
Release Notes:
- Fixed a regression that caused MCP tools to run without requesting
authorization first.