Skip to content

2026.05.05-12.58.26

Latest

Choose a tag to compare

@clojure-lsp-bot clojure-lsp-bot released this 05 May 13:36
· 1 commit to master since this release
cd057cf
  • Fix cyclic-dependencies linter falsely reporting cycles for (require ...) calls inside (comment ...) forms. #2107
  • Support find-definition for fully qualified vars even when the namespace is not explicitly required. #2028
  • Fix create-test code action appending a duplicate deftest when one with the matching name already exists, now navigating to the existing deftest instead. #2274
  • Change the default of :clean :ns-inner-blocks-indentation from :next-line to :keep, so clean-ns (including the automatic run after add-missing-libspec, add-require-suggestion, add-missing-import, and move-form) no longer reflows the :require/:import block when the user has not configured an indentation style. Users who want the previous behavior can set :clean :ns-inner-blocks-indentation :next-line explicitly. #2261
  • Fix add-missing-require refer suggestions leaking across languages, so a .clj file no longer offers refers defined only in .cljs files (and vice versa). #2271
  • Add :private-by-default-on-extract? setting to control whether extracted functions and defs are private by default. #2258
  • Measure performance of code actions
  • Avoid incorrect circular dependency errors from :as-alias by working around clj-depend bug.
  • Fix inline-def to work with defs with metas.
  • Bump clj-kondo to 2026.04.16-20260503.191510-9.
  • bump up timeout for code action performance measurement, include p90 measurement #2236
  • implementation of inline function. #1827
  • Fix initialization crash when a source file has syntax errors (e.g. unbalanced parens) by using safe parser in unused-public-var linter's :gen-class check. #2242
  • Bump rewrite-clj to 1.2.54.
  • implement move to :let refactoring #1732
  • Measure performance of didOpen and didChange
  • if code-action selection end-position args aren't provided, don't try to use them #2276
  • add unit tests for command actions location args #2279
  • New code actions: replace :refer with :as and replace :as with :refer, with support for merging into existing :refer vectors.