From 1f3469cef5bf3bdc49b26a3975e4b57b432eb3a0 Mon Sep 17 00:00:00 2001 From: Smit Barmase Date: Fri, 17 Apr 2026 22:52:50 +0530 Subject: [PATCH] Fix YAML custom tags incorrectly showing as errors (#54148) Closes https://github.com/zed-industries/zed/issues/49568 Read more: https://github.com/zed-industries/lsp-types/pull/14 Self-Review Checklist: - [x] I've reviewed my own diff for quality, security, and reliability - [x] Unsafe blocks (if any) have justifying comments - [x] The content is consistent with the [UI/UX checklist](https://github.com/zed-industries/zed/blob/main/CONTRIBUTING.md#uiux-checklist) - [x] Tests cover the new/changed behavior - [x] Performance impact has been considered and is acceptable Release Notes: - Fixed YAML language server settings (like `customTags`) being ignored, causing valid tags to show as errors. --- Cargo.lock | 2 +- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 9cc4011ff11502c9a992f3a1a00d7325bca6e74d..ca135c2285297ab96d0ba25abddc8a73933cbab6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -10184,7 +10184,7 @@ dependencies = [ [[package]] name = "lsp-types" version = "0.95.1" -source = "git+https://github.com/zed-industries/lsp-types?rev=c7396459fefc7886b4adfa3b596832405ae1e880#c7396459fefc7886b4adfa3b596832405ae1e880" +source = "git+https://github.com/zed-industries/lsp-types?rev=9bceaf7d06bd9394dc6ed002e27d306348d5b83d#9bceaf7d06bd9394dc6ed002e27d306348d5b83d" dependencies = [ "bitflags 1.3.2", "serde", diff --git a/Cargo.toml b/Cargo.toml index dfab0c339c9d995672669a1d3e309c03d8694442..e845ba983e2df5f97ec4f8eeea08724ac8a6f867 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -611,7 +611,7 @@ linkify = "0.10.0" libwebrtc = "0.3.26" livekit = { version = "0.7.32", features = ["tokio", "rustls-tls-native-roots"] } log = { version = "0.4.16", features = ["kv_unstable_serde", "serde"] } -lsp-types = { git = "https://github.com/zed-industries/lsp-types", rev = "c7396459fefc7886b4adfa3b596832405ae1e880" } +lsp-types = { git = "https://github.com/zed-industries/lsp-types", rev = "9bceaf7d06bd9394dc6ed002e27d306348d5b83d" } mach2 = "0.5" markup5ever_rcdom = "0.3.0" metal = "0.33"