Skip to content

Commit af63db1

Browse files
Bump nrepl to 1.4.0
1 parent 389833f commit af63db1

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66

77
### Changes
88

9+
- Bump the injected `nrepl` to [1.4.0](https://github.com/nrepl/nrepl/blob/master/CHANGELOG.md#140-2025-09-02).
910
- Bump the injected `piggieback` to [0.6.1](https://github.com/nrepl/piggieback/blob/master/CHANGES.md#061-2025-12-31).
1011

1112
### Bugs fixed

cider.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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.3.1"
521+
(defcustom cider-injected-nrepl-version "1.4.0"
522522
"The version of nREPL injected on jack-in.
523523
We inject the newest known version of nREPL just in case
524524
your version of Leiningen is bundling an older one."

doc/modules/ROOT/pages/basics/middleware_setup.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ NOTE: Make sure you're using https://github.com/clojurephant/clojurephant[Clojur
6565
[source, groovy]
6666
----
6767
dependencies {
68-
devImplementation 'nrepl:nrepl:1.3.1'
68+
devImplementation 'nrepl:nrepl:1.4.0'
6969
devImplementation 'cider:cider-nrepl:0.57.0'
7070
}
7171

doc/modules/ROOT/pages/basics/up_and_running.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ simple - CIDER passes the extra dependencies and nREPL configuration to
7272
your build tool in the command it runs to start the nREPL server. Here's how
7373
this looks for `tools.deps`:
7474

75-
$ clojure -Sdeps '{:deps {nrepl {:mvn/version "1.3.1"} cider/cider-nrepl {:mvn/version "0.57.0"}}}' -m nrepl.cmdline --middleware '["cider.nrepl/cider-middleware"]'
75+
$ clojure -Sdeps '{:deps {nrepl {:mvn/version "1.4.0"} cider/cider-nrepl {:mvn/version "0.57.0"}}}' -m nrepl.cmdline --middleware '["cider.nrepl/cider-middleware"]'
7676

7777
TIP: 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
----
467467
ssh -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.3.1\"} cider/cider-nrepl {:mvn/version \"0.57.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.4.0\"} cider/cider-nrepl {:mvn/version \"0.57.0\"}}}' -m nrepl.cmdline -p 12345 -b 0.0.0.0 --middleware '[\"cider.nrepl/cider-middleware\"]' "
470470
----
471471

472472
For 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:

doc/modules/ROOT/pages/cljs/up_and_running.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ or in `build.gradle`:
5151
[source, groovy]
5252
----
5353
dependencies {
54-
devImplementation 'nrepl:nrepl:1.3.1'
54+
devImplementation 'nrepl:nrepl:1.4.0'
5555
devImplementation 'cider:cider-nrepl:0.57.0'
5656
devImplementation 'cider:cider-piggieback:0.6.1'
5757
}

0 commit comments

Comments
 (0)