Release 1.12.84
[1.12.84] - 2026-03-12
Enhancements
-
Added remote REPL session inactivity timeout. Defaults to 30 minutes. Can be configured
through the option-repl-session-timeout twhen starting a REPL server. -
Added function
trace/untrace-all -
The
finderfunction supports now searching for all functions under tracing:(finder :tracing) -
Improved Java interoperability regarding equality checking with Java enums. The
==function
(non strict equal) supports now comparing Java enums with keywords.(let [date (. :java.time.LocalDate :of 2026 1 1) month (. date :getMonth)] (enum? (class-of month)) ;; true (month is a java enum) (== month :JANUARY) ;; true (value equality) (== :JANUARY month)) ;; true (value equality)
-
Added CIDR based IP address ACLs to the IPC server.
Bugs
- Fixed Venice launcher edge case with the
-fileoption that was accidentally passed down to the
the script