From 82fb122b12c0c678d894a4a2f05f0591d8fd9940 Mon Sep 17 00:00:00 2001 From: David Thompson Date: Wed, 6 May 2026 14:09:30 -0400 Subject: [PATCH 1/2] CHANGELOG for 1.23.0 Signed-off-by: David Thompson --- CHANGELOG.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index ca4e43ac..d607a88c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +### 1.23.0 +- Feat: Disable "Source" URI in hovers. See [#1120](https://github.com/redhat-developer/yaml-language-server/issues/1120), [vscode-yaml#1238](https://github.com/redhat-developer/vscode-yaml/pull/1238). +- Fix: Add support for ajv-i18n to localize validation messages for errors in referenced JSON schemas [#1133](https://github.com/redhat-developer/yaml-language-server/issues/1131). +- Fix: Revert formatter changes, resolving several regressions. See [#1245](https://github.com/redhat-developer/yaml-language-server/issues/1245), [vscode-yaml#1241](https://github.com/redhat-developer/vscode-yaml/issues/1241), [vscode-yaml#1233](https://github.com/redhat-developer/vscode-yaml/issues/1233), [vscode-yaml#1242](https://github.com/redhat-developer/vscode-yaml/issues/1242) +- Fix: Bundled schema resolution fails for schemas with `$id` matching a file name. See [#1236](https://github.com/redhat-developer/yaml-language-server/issues/1236). +- Fix: Skip local sibling probe for non-`file://` schemas. See [#1235](https://github.com/redhat-developer/yaml-language-server/pull/1235). +- Fix: Set `User-Agent` header when requesting schema over HTTP(S). See [#1226](https://github.com/redhat-developer/yaml-language-server/pull/1226), [vscode-yaml#1236](https://github.com/redhat-developer/vscode-yaml/pull/1236). +- Fix: Request `textDocument/hover` failed with message: Invalid regular expression: /(?s).*/: Invalid group. See [#874](https://github.com/redhat-developer/yaml-language-server/issues/874). + +Thanks to [Steffen Videbæk Fredsgaard](https://github.com/svifred) and [Kosta](https://github.com/Kosta-Github) for your contributions. + ### 1.22.0 - Feat: Use `yaml` package (instead of `prettier`) for formatting. See [#933](https://github.com/redhat-developer/yaml-language-server/issues/933), [#1222](https://github.com/redhat-developer/yaml-language-server/pull/1222). - Feat: Allow `# $schema: ` in addition to the existing `# yaml-language-server: $schema=` to specify JSON Schema. See [#950](https://github.com/redhat-developer/yaml-language-server/issues/950). From 03d060cdbc50569605c2e7292043d29431ddbbed Mon Sep 17 00:00:00 2001 From: David Thompson Date: Wed, 6 May 2026 17:58:34 -0400 Subject: [PATCH 2/2] Update CHANGELOG.md Co-authored-by: Morgan Chang --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d607a88c..739c2368 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ ### 1.23.0 - Feat: Disable "Source" URI in hovers. See [#1120](https://github.com/redhat-developer/yaml-language-server/issues/1120), [vscode-yaml#1238](https://github.com/redhat-developer/vscode-yaml/pull/1238). -- Fix: Add support for ajv-i18n to localize validation messages for errors in referenced JSON schemas [#1133](https://github.com/redhat-developer/yaml-language-server/issues/1131). +- Fix: Add support for ajv-i18n to localize validation messages for errors in referenced JSON schemas [#1131](https://github.com/redhat-developer/yaml-language-server/issues/1131). - Fix: Revert formatter changes, resolving several regressions. See [#1245](https://github.com/redhat-developer/yaml-language-server/issues/1245), [vscode-yaml#1241](https://github.com/redhat-developer/vscode-yaml/issues/1241), [vscode-yaml#1233](https://github.com/redhat-developer/vscode-yaml/issues/1233), [vscode-yaml#1242](https://github.com/redhat-developer/vscode-yaml/issues/1242) - Fix: Bundled schema resolution fails for schemas with `$id` matching a file name. See [#1236](https://github.com/redhat-developer/yaml-language-server/issues/1236). - Fix: Skip local sibling probe for non-`file://` schemas. See [#1235](https://github.com/redhat-developer/yaml-language-server/pull/1235).