Strict world age conflict with julials

Recently my LSP setup stopped working. I am using julials with nvim-lspconfig in neovim. Here is the main error that I think could be the coulprit. This is taken from the output of :LspLog

[ERROR][2026-02-26 09:40:41] …p/_transport.lua:36 rpc julia stderr [ Info: Processing ITensors… (67%)\n
[ERROR][2026-02-26 09:40:41] …p/_transport.lua:36 rpc julia stderr ERROR:
[ERROR][2026-02-26 09:40:41] …p/_transport.lua:36 rpc julia stderr LoadError:
[ERROR][2026-02-26 09:40:42] …p/_transport.lua:36 rpc julia stderr UndefVarError: ITensors not defined
[ERROR][2026-02-26 09:40:42] …p/_transport.lua:36 rpc julia stderr in Main.SymbolServer.LoadingBay
[ERROR][2026-02-26 09:40:42] …p/_transport.lua:36 rpc julia stderr \nThe binding may be too new: running in world age 39181, while current world is 39275.
[ERROR][2026-02-26 09:40:42] …p/_transport.lua:36 rpc julia stderr \nHint: ITensors is loaded but not imported in the active module Main.

Any suggestions on what to try to get back LSP capabilities would be greatly appreciated.

That worked! I had to run

(@nvim-lspconfig) pkg> add LanguageServer#main StaticLint#master SymbolServer#master

This should be run in a REPL with the nvim-lspconfig project activated. I had to update the three packages simultaneously due to dependency issues. And the LanguageServer latest commit is in main, not master.