File tree Expand file tree Collapse file tree 5 files changed +6
-6
lines changed Expand file tree Collapse file tree 5 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 66
77### Changes
88
9- - Bump the injected ` nrepl ` to [ 1.5.0 ] ( https://github.com/nrepl/nrepl/blob/master/CHANGELOG.md#150 -2025-10-15 ) .
9+ - Bump the injected ` nrepl ` to [ 1.5.1 ] ( https://github.com/nrepl/nrepl/blob/master/CHANGELOG.md#151 -2025-10-18 ) .
1010 - * [ nrepl #385 ] ( https://github.com/nrepl/nrepl/pull/385 ) : Preserve filename in functions compiled during regular eval.
1111- Bump the injected ` piggieback ` to [ 0.6.1] ( https://github.com/nrepl/piggieback/blob/master/CHANGES.md#061-2025-12-31 ) .
1212- Bump the injected ` cider-nrepl ` to [ 0.58.0] ( https://github.com/clojure-emacs/cider-nrepl/blob/master/CHANGELOG.md#0580-2025-10-16 ) .
Original file line number Diff line number Diff line change @@ -518,7 +518,7 @@ Throws an error if PROJECT-TYPE is unknown."
518518 " List of dependencies where elements are lists of artifact name and version." )
519519(put 'cider-jack-in-dependencies 'risky-local-variable t )
520520
521- (defcustom cider-injected-nrepl-version " 1.5.0 "
521+ (defcustom cider-injected-nrepl-version " 1.5.1 "
522522 " The version of nREPL injected on jack-in.
523523We inject the newest known version of nREPL just in case
524524your version of Leiningen is bundling an older one."
Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ NOTE: Make sure you're using https://github.com/clojurephant/clojurephant[Clojur
6565[source, groovy]
6666----
6767dependencies {
68- devImplementation 'nrepl:nrepl:1.5.0 '
68+ devImplementation 'nrepl:nrepl:1.5.1 '
6969 devImplementation 'cider:cider-nrepl:0.58.0'
7070}
7171
Original file line number Diff line number Diff line change @@ -72,7 +72,7 @@ simple - CIDER passes the extra dependencies and nREPL configuration to
7272your build tool in the command it runs to start the nREPL server. Here's how
7373this looks for `tools.deps`:
7474
75- $ clojure -Sdeps '{:deps {nrepl {:mvn/version "1.5.0 "} cider/cider-nrepl {:mvn/version "0.58.0"}}}' -m nrepl.cmdline --middleware '["cider.nrepl/cider-middleware"]'
75+ $ clojure -Sdeps '{:deps {nrepl {:mvn/version "1.5.1 "} cider/cider-nrepl {:mvn/version "0.58.0"}}}' -m nrepl.cmdline --middleware '["cider.nrepl/cider-middleware"]'
7676
7777TIP: If you don't want `cider-jack-in` to inject dependencies automatically, set
7878`cider-inject-dependencies-at-jack-in` to `nil`. Note that you'll have to setup
@@ -466,7 +466,7 @@ The command tunnels as well the remote port 12345 to local machine on port 12345
466466----
467467ssh -t -L 12345:localhost:12345 MY_REMOTE_SERVER \
468468 devcontainer exec --workspace-folder /home/me/my-clj-code \
469- "clojure -Sdeps '{:deps {nrepl/nrepl {:mvn/version \"1.5.0 \"} cider/cider-nrepl {:mvn/version \"0.58.0\"}}}' -m nrepl.cmdline -p 12345 -b 0.0.0.0 --middleware '[\"cider.nrepl/cider-middleware\"]' "
469+ "clojure -Sdeps '{:deps {nrepl/nrepl {:mvn/version \"1.5.1 \"} cider/cider-nrepl {:mvn/version \"0.58.0\"}}}' -m nrepl.cmdline -p 12345 -b 0.0.0.0 --middleware '[\"cider.nrepl/cider-middleware\"]' "
470470----
471471
472472For this to work, we need as well to configure `devcontainer.json` with a snippet that exposes port `12345` from the container to the (remote) host:
Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ or in `build.gradle`:
5151[source, groovy]
5252----
5353dependencies {
54- devImplementation 'nrepl:nrepl:1.5.0 '
54+ devImplementation 'nrepl:nrepl:1.5.1 '
5555 devImplementation 'cider:cider-nrepl:0.58.0'
5656 devImplementation 'cider:cider-piggieback:0.6.1'
5757}
You can’t perform that action at this time.
0 commit comments