Skip to content

Release 1.12.84

Choose a tag to compare

@jlangch jlangch released this 12 Mar 11:39
· 679 commits to master since this release

[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 t when starting a REPL server.

  • Added function trace/untrace-all

  • The finder function 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 -file option that was accidentally passed down to the
    the script