Skip to content

Release 1.12.90

Choose a tag to compare

@jlangch jlangch released this 17 Apr 14:48
· 417 commits to master since this release

[1.12.90] - 2026-04-17

Enhancements

  • The REPL start scripts support now custom Java VM options

    Modify {REPL_HOME}/repl.env on Linux/MacOS, e.g.:

    export JAVA_OPTS=-Xms512M -Xmx2G
    

    Modify {REPL_HOME}/repl.env.bat on Windows, e.g.:

    set JAVA_OPTS=-Xms512M -Xmx2G
    
  • The REPL start scripts support now loadpaths defined in the REPL env file

    Modify {REPL_HOME}/repl.env on Linux/MacOS, e.g.:

    export LOADPATH=/home/data/scripts
    

    Modify {REPL_HOME}/repl.env.bat on Windows, e.g.:

    set LOADPATH=C:\home\data\scripts
    

Bugs

  • Fixed the REPL internal manual restart, broken since 1.12.89