- #60: Implemented EDN transport.
- #152: Bug fix to kill session threads when closing sessions
- #137: Expanded Bencode writer to work with maps that have keywords or symbols as keys. This allowed a simplification of the Bencode transport itself.
- #117: Replace
nrepl.middleware.pr-values
withnrepl.middleware.print
.- New dynamic vars in
nrepl.middleware.print
for configuring the print middleware at the REPL. - The new middleware provides behaviour that is backwards-compatible with the
old one. Existing middleware descriptors whose
:requires
set contains#'pr-values
should instead use#'wrap-print
.
- New dynamic vars in
- #128: New middleware,
nrepl.middleware.caught
, provides a hook called when eval, read, or print throws an exception or error. Defaults toclojure.main/repl-caught
. Configurable by the dynamic varnrepl.middleware.caught/*caught-fn*
.
- [CLI] Make sure ack port parameter is converted to integer for command line nREPL initialization.
- [CLI] When starting the REPL, make sure the transport option is used correctly.
- [CLI] Make sure calling
send-ack
atcmdline
ns works with the correct transport. - #8: Clean up context classloader after eval.
- #16: Use a single session thread per evaluation.
- #107: Stop reading and evaluating code on first read error.
- #108: Refactor cmdline functions into a public, reusable API.
- Restore the
nrepl.bencode
namespace.
- Make sure we never send a nil transport to via
send-ack
.
- [CLI] #90: Doesn't display properly URLs if using a 3rd-party transport.
- #89: Remove
tools.logging
dependency.
- #12: Support custom printing
function in
pr-values
, enabling pretty-printed REPL results. - #66: Add support for a global and local configuration file.
- [CLI] #63: Make it possible to specify the transport via the command-line client (
--transport/-t
).
- #10: Bind
*1
,*2
,*3
and*e
in cloned session. - #33: Add ability to change value of
*print-namespace-maps*
. - #68: Avoid illegal access warning on JDK 9+ caused by
nrepl.middleware.interruptible-eval/set-line!
. - [CLI] #77: Exit cleanly after pressing
ctrl-d
in an interactive REPL. - #13: Catch ThreadDeath exception thrown by interrupt.
- #56: Bind the server by default to
127.0.0.1
instead of to::
(this turned out to be a security risk). - #76: Move version-related logic to a dedicated namespace (
nrepl.version
). - Deprecate
nrepl.core/version
. - Deprecate
nrepl.core/version-string
. - [CLI] #81: Handle interrupt in interactive session.
- [CLI] The built-in the CLI generates an
.nrepl-port
file on server startup. - [CLI] #39: Add a
--connect
command-line option allowing you to connect. with the built-in client to an already running nREPL server. - [CLI] Add shorthand names for most command-line options.
- [CLI] Add a
-v/--version
command-line option.
- #32: Extract the bencode logic in a separate library.
- #38: Remove extra newline in REPL output.
- [CLI] Added
--help
command-line option. - [CLI] Added
--bind
command-line option. - [CLI] Added
--handler
and--middleware
command-line options. Extremely useful when starting nREPL usingclj
andtools.deps
, as this allows you to inject middleware trivially without the need for something likelein
orboot
.
- [CLI] Add missing newline after colorized values displayed in the REPL.
- [CLI] Display connection info when starting the built-in cmd client. This makes it possible
for clients like CIDER to parse it and auto-connect to the server. Pretty handy if you're
using
clj
to start your server.
- #16: Don't change the thread used for form evaluation over time. See #36 for a discussion of the fix. (partial fix)
- The result of
nrepl.server/start-server
no longer contains the legacy key:ss
from the days of nREPL 0.0.x. If someone was using it they should switch to:server-socket
instead. - #28: Echo back missing ns during eval (previously you'd only get an error that a ns is missing, but no mention of the name of that namespace).
- #35: Add constant DCL across evaluations (which means you can now easily hot-load dependencies).
- #34: Treat
nil
port as 0 (which assigns a random port).
- #11: Don't read the version string
from a resource file (
version.txt
).
- #4: Change the project's
namespaces. (breaking)
clojure.tools.nrepl
is nownrepl.core
, the rest of the namespaces were renamed following the patternclojure.tools.nrepl.*
->nrepl.*
.
- #15 Fix for
clojure.tools.nrepl.middleware.session
for:unknown-session
error andclojure.tools.nrepl.middleware.interruptible-eval
for:no-code
error, the correct response of:status :done
is now being returned. - #26: Recompile the Java classes for Java 8.
- #1: Materially identical
to
[org.clojure/tools.nrepl "0.2.13"]
, but released undernrepl/nrepl
coordinates as part of the migration out of clojure-contrib https://github.com/nrepl/nrepl clojure.tools/logging
is now a normal dependency (it used to be an optional dependency).
- #20: If
start-server
is not provided with a:bind
hostname, nREPL will default to binding to the ipv6::
(as before), but will now always fall back tolocalhost
. Previously, the ipv4 hostname was only used if::
could not be resolved; this change ensures that thelocalhost
fallback is used in networking environments where::
is resolved successfully, but cannot be bound.
0.2.13
:
start-server
now binds to::
by default, and falls back tolocalhost
, avoiding confusion when working in environments that have both IPv4 and IPv6 networking available. (NREPL-83)
0.2.11
:
clojure.tools.nrepl.middleware.interruptible-eval
now accepts optionalfile
,line
, andcolumn
values in order to fix location metadata to defined vars and functions, for more useful stack traces, navigation, etc.- REPL evaluations now support use of reader conditionals (loading
.cljc
files containing reader conditionals has always worked transparently)
0.2.10
:
clojure.tools.nrepl.middleware.pr-values
will not print the contents of:value
response messages if the message contains a:printed-value
slot.default-executor
andqueue-eval
inclojure.tools.nrepl.middleware.interruptible-eval
are now public.
0.2.9
:
clojure.tools.nrepl.middleware.interruptible-eval
now defines a default thread executor used for all evaluations (unless a different executor is provided to the configuration ofclojure.tools.nrepl.middleware.interruptible-eval/interruptible-eval
). This should aid in the development ofinterrupt
-capable alternative evaluation middlewares/handlers.
0.2.8
:
- The default bind address used by
clojure.tools.nrepl.server/start-server
is nowlocalhost
, not0.0.0.0
. As always, the bind address can be set explicitly via a:bind
keyword argument to that function. This is considered a security bugfix, though technically it may cause breakage if anyone was implicitly relying upon nREPL's socket server to listen on all network interfaces. - The
ServerSocket
created as part ofclojure.tools.nrepl.server/start-server
is now configured withSO_REUSEADDR
enabled; this should prevent spurious "address already in use" when quickly bouncing apps that open an nREPL server on a fixed port, etc. (NREPL-67) - Middlewares may now contribute to the response of the
"describe"
operation via an optional:describe-fn
function provided via their descriptors. (NREPL-64) - The
:ns
component of the response to"load-file"
operations is now elided, as it was (usually) incorrect (as a result of reusinginterruptible-eval
for handlingload-file
operations) (NREPL-68)
0.2.7
:
- The topological sort ("linearization") applied to middleware provided to start a new nREPL server has been reworked to address certain edge case bugs (NREPL-53)
interruptible-eval
no longer incorrectly clobbers a session's*ns*
binding when it processes aneval
message containing anns
"argument"- Eliminated miscellaneous reflection warnings
0.2.5
:
- Clients can now signal EOF on
*in*
with an empty:stdin
value (NREPL-65) - Clojure
:version-string
is now included in response to adescribe
operation (NREPL-63) - Improve representation of
java.version
information in response to adescribe
operation (NREPL-62)
0.2.4
:
- Fixed the source of a reliable per-connection thread leak (NREPL-40)
- Fix printing of lazy sequences so that
*out*
bindings are properly preserved (NREPL-45) - Enhance
clojure.tools.nrepl.middleware.interruptible-eval/evaluate
so that a customeval
function can be provided on a per-message basis (NREPL-50) - Fix pretty-printing of reference returned by
clojure.tools.nrepl.server/start-server
(NREPL-51) - nREPL now works with JDK 1.8 (NREPL-56)
- The value of the
java.version
system property is now included in the response to adescribe
operation (NREPL-57) - Common session bindings (e.g.
*e
,*1
, etc) are now set in time for nREPL middleware to access them in the case of an exception being thrown (NREPL-58)
0.2.3
:
- Now using a queue to maintain
*in*
, to avoid intermittent failures due to prior use ofPipedReader
/Writer
. (NREPL-39) - When loading a file, always bind
*print-level*
and*print-length*
when generating theclojure.lang.Compiler/load
expression (NREPL-41)
0.2.2
:
- Added
clojure.tools.nrepl/code*
forpr-str
'ing expressions (presumably for later evaluation) - session IDs are now properly combined into a set by
clojure.tools.nrepl/combine-responses
- fixes printing of server instances under Clojure 1.3.0+ (nREPL-37)
0.2.1
:
- fixes incorrect translation between
Writer.write()
andStringBuilder.append()
APIs (NREPL-38)
0.2.0
:
Top-to-bottom redesign
0.0.6
:
Never released; initial prototype of "rich content" support that (in part) helped motivate a re-examination of the underlying protocol and design.
0.0.5
:
- added Clojure 1.3.0 (ALPHA) compatibility
0.0.4
:
- fixed (hacked) obtaining
clojure.test
output whenclojure.test
is initially loaded within an nREPL session - eliminated 1-minute default timeout on expression evaluation
- all standard REPL var bindings are now properly established and maintained within a session