File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -4,6 +4,12 @@ All notable changes to this project are documented in this file.
44
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) .
66
7+ ## [ 0.9.3] - 2026-04-20
8+
9+ ### Fixed
10+
11+ - Fixed missing document links for includes inside overlays.
12+
713## [ 0.9.2] - 2026-04-17
814
915### Fixed
Original file line number Diff line number Diff line change 33 "description" : " Devicetree Language Server" ,
44 "author" : " Kyle Micallef Bonnici" ,
55 "license" : " Apache-2.0" ,
6- "version" : " 0.9.2 " ,
6+ "version" : " 0.9.3 " ,
77 "publisher" : " KyleMicallefBonnici" ,
88 "repository" : {
99 "type" : " git" ,
Original file line number Diff line number Diff line change 55 "author" : " Microsoft Corporation" ,
66 "license" : " Apache-2.0" ,
77 "icon" : " images/icon.png" ,
8- "version" : " 0.9.2 " ,
8+ "version" : " 0.9.3 " ,
99 "repository" : {
1010 "type" : " git" ,
1111 "url" : " https://github.com/kylebonnici/dts-lsp"
Original file line number Diff line number Diff line change 44 "author" : " Kyle Micallef Bonnici" ,
55 "package-name" : " devicetree-language-server" ,
66 "main" : " dist/server.js" ,
7- "version" : " 0.9.2 " ,
7+ "version" : " 0.9.3 " ,
88 "categories" : [
99 " Linters" ,
1010 " Formatters" ,
Original file line number Diff line number Diff line change @@ -251,7 +251,12 @@ export class ContextAware {
251251 . filter ( ( v ) => ! ! v ) ?? [ ] ;
252252
253253 return [
254- ...( this . parser . cPreprocessorParser . dtsIncludes
254+ ...( [
255+ ...this . parser . cPreprocessorParser . dtsIncludes ,
256+ ...this . overlayParsers . flatMap (
257+ ( op ) => op . cPreprocessorParser . dtsIncludes ,
258+ ) ,
259+ ]
255260 . filter (
256261 ( include ) =>
257262 isPathEqual ( include . fsPath , file ) &&
Original file line number Diff line number Diff line change @@ -350,7 +350,7 @@ connection.onInitialize(async (params: InitializeParams) => {
350350 connection . console . log (
351351 `[Server(${ process . pid } ) ${
352352 workspaceFolders ?. at ( 0 ) ?. uri
353- } Version 0.9.2 ] Started and initialize received`,
353+ } Version 0.9.3 ] Started and initialize received`,
354354 ) ;
355355
356356 const capabilities = params . capabilities ;
You can’t perform that action at this time.
0 commit comments