This repository has been archived by the owner on Jun 4, 2022. It is now read-only.
Releases: anmonteiro/lumo
Releases · anmonteiro/lumo
1.4.0
New features
- Return exit code
1
on exception (#58). - Pretty print evaluation results. This is turned on by default. It is posisble to
turn off pretty printing by bindinglumo.repl/*pprint-results*
tofalse
. - Add ability to kill infinite loops at the REPL with
Ctrl+C
. - Print the Node.js version in the repl (#104).
- Add programmatic access to Lumo's version through
lumo.core/*lumo-version*
(#127). - Interrupt printing at the REPL with
Ctrl+C
(#107) - Add missing Clojure repl special vars (*1, *2, *3, *e) (#101)
- Make the classpath dynamic, add a new namespace
lumo.classpath
to interact
with the Lumo classpath (#31).
Changes
- Print namespaced maps at the REPL.
- Do not print empty line if input is empty or whitespace only (make behavior
consistent withclojure.main
). - Invalidate cache when source file changes (#54).
- Upgrade ClojureScript to version 1.9.521.
- Upgrade Closure Compiler JS to version v20170409.
- Upgrade Node.js to version 7.9.0.
Bug fixes
print
always outputs newline (#116).- Fix crash related to calculating indentation when entering multi-line forms at
the REPL (#120). - Fix
doc
for special forms (#124). - JavaScript completion only works in readline mode (#103).
- Comments in the REPL cause reader exception errors (#74).
- Fix error when calling
child_process.fork
(#53). - Fix a bug that would prevent TTY support on Windows. Lumo is now at feature-parity
with every other supported platform. - NPM installer defaults to Windows executable on failure (#129).
- Fix bug where completions for an empty suffix preceded by a NS alias would include
all vars incljs.core
.
1.3.0
New features
- Autocomplete JavaScript Node globals (#85).
- Add
dir
REPL special (#87). - Add
-V / --version
CLI option to print the Lumo version.
Changes
- Upgrade Node.js to version 7.8.0.
- Do not print verbose information on REPL startup, even if
--verbose
. - Upgrade Google Closure Compiler to v20170218.
- Don't print
nil
result on--eval
(#108). - Remove readline history duplicates (
removeHistoryDuplicates
option introduced
in nodejs/node#2982)
Bug fixes
1.2.0
New features
- Add the ability to compile ClojureScript projects.
Changes
- Upgrade Node.js to version 7.5.0.
Bug fixes
- Fix a bug where
cljs.nodejs/require
wouldn't find modules in scripts run from
nested directories.
1.1.0
1.0.0
Lumo hits 1.0.0! This is a very exciting release, which includes the following new features / changes:
New features
- Highlight the matching brace when inserting a closing brace.
- TCP socket REPL (#24).
- REPL editing autocompletion.
- Add a
-m / --main
command line option that specifies a namespace in the
classpath in which to call a-main
function with all args after it (#27). - Add a
-a / --elide-asserts
command option that defines whether asserts in
evaluated code should be ignored (#37). doc
REPL special function (#26).
Changes
- Stop compiling Lumo with a static
--use-strict
V8 flag, allows to override it
at runtime (#28). - Command line arg parsing has been rewritten so that CLI arguments are parsed in
the order they appear. Additionally, similarly to the Clojure REPL, arguments that
appear after a main option will be bound to thelumo.core/*command-line-args*
var, a seq of strings. - Print a newline when pressing ctrl+C or evaluating empty form (#29).
1.0.0-alpha3
Changes
- Switch to a semantic versioning scheme. This release follows semantic versioning.
Bug fixes
- Fix a regression in non-TTY mode introduced by emitting keypress events.
- Fix a crash that would happen if Parinfer wouldn't succeed at calculating the
indentation.
1.0-alpha2
New features
- Add
load
REPL special function. Same as Clojure'sload
. - Add support for Windows-formatted class paths #18.
- Add support for indentation via Parinfer when multiline editing.
Bug fixes
- Lack of OpenSSL support breaks some Node.js modules (#2).
- Allow foreign libraries to side-effect the global scope when required.
- Improve error message when a path is not passed to
-k
(#14). - Don't throw when loading empty files #10.
load-file
and init scripts shouldn't change the current namespace.- Don't crash if JAR not found when looking for upstream foreign libs (#19).
1.0-alpha1
This is Lumo's first release!
Lumo is a fast, cross-platform, standalone ClojureScript REPL that runs on Node.js.
There are binaries available for Mac OS X, Linux (64-bit) and Windows (64-bit).