File tree Expand file tree Collapse file tree 5 files changed +6
-5
lines changed Expand file tree Collapse file tree 5 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 6
6
7
7
### Changes
8
8
9
+ - Bump the injected ` nrepl ` to [ 1.4.0] ( https://github.com/nrepl/nrepl/blob/master/CHANGELOG.md#140-2025-09-02 ) .
9
10
- Bump the injected ` piggieback ` to [ 0.6.1] ( https://github.com/nrepl/piggieback/blob/master/CHANGES.md#061-2025-12-31 ) .
10
11
11
12
### Bugs fixed
Original file line number Diff line number Diff line change @@ -518,7 +518,7 @@ Throws an error if PROJECT-TYPE is unknown."
518
518
" List of dependencies where elements are lists of artifact name and version." )
519
519
(put 'cider-jack-in-dependencies 'risky-local-variable t )
520
520
521
- (defcustom cider-injected-nrepl-version " 1.3.1 "
521
+ (defcustom cider-injected-nrepl-version " 1.4.0 "
522
522
" The version of nREPL injected on jack-in.
523
523
We inject the newest known version of nREPL just in case
524
524
your 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
65
65
[source, groovy]
66
66
----
67
67
dependencies {
68
- devImplementation 'nrepl:nrepl:1.3.1 '
68
+ devImplementation 'nrepl:nrepl:1.4.0 '
69
69
devImplementation 'cider:cider-nrepl:0.57.0'
70
70
}
71
71
Original file line number Diff line number Diff line change @@ -72,7 +72,7 @@ simple - CIDER passes the extra dependencies and nREPL configuration to
72
72
your build tool in the command it runs to start the nREPL server. Here's how
73
73
this looks for `tools.deps`:
74
74
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"]'
76
76
77
77
TIP: If you don't want `cider-jack-in` to inject dependencies automatically, set
78
78
`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
466
466
----
467
467
ssh -t -L 12345:localhost:12345 MY_REMOTE_SERVER \
468
468
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\"]' "
470
470
----
471
471
472
472
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:
Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ or in `build.gradle`:
51
51
[source, groovy]
52
52
----
53
53
dependencies {
54
- devImplementation 'nrepl:nrepl:1.3.1 '
54
+ devImplementation 'nrepl:nrepl:1.4.0 '
55
55
devImplementation 'cider:cider-nrepl:0.57.0'
56
56
devImplementation 'cider:cider-piggieback:0.6.1'
57
57
}
You can’t perform that action at this time.
0 commit comments