Skip to content

Commit 187a7e8

Browse files
alexander-yakushevbbatsov
authored andcommitted
Bump cider-nrepl to 0.56.0
1 parent 9dc5107 commit 187a7e8

File tree

8 files changed

+17
-13
lines changed

8 files changed

+17
-13
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@
66

77
### Changes
88

9+
- Bump the injected `cider-nrepl` to [0.56.0](https://github.com/clojure-emacs/cider-nrepl/blob/master/CHANGELOG.md#0560-2025-05-29).
10+
- [cider-nrepl#941](https://github.com/clojure-emacs/cider-nrepl/pull/941): Stop vendoring Fipp dependency.
11+
- [cider-nrepl#943](https://github.com/clojure-emacs/cider-nrepl/pull/943): Reduce debugger insrumentation bytecode footprint.
12+
- [orchard#342](https://github.com/clojure-emacs/orchard/pull/342): Inspector: add hexdump view mode.
913
- [#3816](https://github.com/clojure-emacs/cider/issues/3816): **(Breaking)** Remove enrich-classpath support from cider-jack-in.
1014
- [#3817](https://github.com/clojure-emacs/cider/issues/3817): Enable `cider-download-java-sources` by default.
1115

cider.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -549,7 +549,7 @@ the artifact.")
549549
550550
Used when `cider-jack-in-auto-inject-clojure' is set to `latest'.")
551551

552-
(defconst cider-required-middleware-version "0.55.7"
552+
(defconst cider-required-middleware-version "0.56.0"
553553
"The CIDER nREPL version that's known to work properly with CIDER.")
554554

555555
(defcustom cider-injected-middleware-version cider-required-middleware-version

dev/docker-sample-project/project.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
:dependencies [[org.clojure/clojure "1.11.1"]
33
[clj-http "3.12.3"]]
44
:source-paths ["src"]
5-
:plugins [[cider/cider-nrepl "0.55.7"]])
5+
:plugins [[cider/cider-nrepl "0.56.0"]])

dev/tramp-sample-project/project.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
:dependencies [[org.clojure/clojure "1.11.1"]
33
[clj-http "3.12.3"]]
44
:source-paths ["src"]
5-
:plugins [[cider/cider-nrepl "0.55.7"]
5+
:plugins [[cider/cider-nrepl "0.56.0"]
66
[refactor-nrepl "3.9.0"]])

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@ Use the convenient plugin for defaults, either in your project's
2020

2121
[source,clojure]
2222
----
23-
:plugins [[cider/cider-nrepl "0.55.7"]]
23+
:plugins [[cider/cider-nrepl "0.56.0"]]
2424
----
2525

2626
A minimal `profiles.clj` for CIDER would be:
2727

2828
[source,clojure]
2929
----
30-
{:repl {:plugins [[cider/cider-nrepl "0.55.7"]]}}
30+
{:repl {:plugins [[cider/cider-nrepl "0.56.0"]]}}
3131
----
3232

3333
WARNING: Be careful not to place this in the `:user` profile, as this way CIDER's
@@ -43,11 +43,11 @@ run `cider-connect` or `cider-connect-cljs`.
4343

4444
[source,clojure]
4545
----
46-
:cider-clj {:extra-deps {cider/cider-nrepl {:mvn/version "0.55.7"}}
46+
:cider-clj {:extra-deps {cider/cider-nrepl {:mvn/version "0.56.0"}}
4747
:main-opts ["-m" "nrepl.cmdline" "--middleware" "[cider.nrepl/cider-middleware]"]}
4848
4949
:cider-cljs {:extra-deps {org.clojure/clojurescript {:mvn/version "1.10.339"}
50-
cider/cider-nrepl {:mvn/version "0.55.7"}
50+
cider/cider-nrepl {:mvn/version "0.56.0"}
5151
cider/piggieback {:mvn/version "0.6.0"}}
5252
:main-opts ["-m" "nrepl.cmdline" "--middleware"
5353
"[cider.nrepl/cider-middleware,cider.piggieback/wrap-cljs-repl]"]}
@@ -66,7 +66,7 @@ NOTE: Make sure you're using https://github.com/clojurephant/clojurephant[Clojur
6666
----
6767
dependencies {
6868
devImplementation 'nrepl:nrepl:1.3.1'
69-
devImplementation 'cider:cider-nrepl:0.55.7'
69+
devImplementation 'cider:cider-nrepl:0.56.0'
7070
}
7171
7272
tasks.named('clojureRepl') {

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

Lines changed: 3 additions & 3 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.55.7"}}}' -m nrepl.cmdline --middleware '["cider.nrepl/cider-middleware"]'
75+
$ clojure -Sdeps '{:deps {nrepl {:mvn/version "1.3.1"} cider/cider-nrepl {:mvn/version "0.56.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
@@ -332,7 +332,7 @@ It is also possible for plain `clj`, although the command is somewhat longer:
332332

333333
[source,sh]
334334
----
335-
$ clj -Sdeps '{:deps {cider/cider-nrepl {:mvn/version "0.55.7"}}}' -m nrepl.cmdline --middleware "[cider.nrepl/cider-middleware]"
335+
$ clj -Sdeps '{:deps {cider/cider-nrepl {:mvn/version "0.56.0"}}}' -m nrepl.cmdline --middleware "[cider.nrepl/cider-middleware]"
336336
----
337337

338338
Alternatively, you can start nREPL either manually or using the facilities
@@ -450,7 +450,7 @@ The command tunnels as well the remote port 12345 to local machine on port 12345
450450
----
451451
ssh -t -L 12345:localhost:12345 MY_REMOTE_SERVER \
452452
devcontainer exec --workspace-folder /home/me/my-clj-code \
453-
"clojure -Sdeps '{:deps {nrepl/nrepl {:mvn/version \"1.3.1\"} cider/cider-nrepl {:mvn/version \"0.55.7\"}}}' -m nrepl.cmdline -p 12345 -b 0.0.0.0 --middleware '[\"cider.nrepl/cider-middleware\"]' "
453+
"clojure -Sdeps '{:deps {nrepl/nrepl {:mvn/version \"1.3.1\"} cider/cider-nrepl {:mvn/version \"0.56.0\"}}}' -m nrepl.cmdline -p 12345 -b 0.0.0.0 --middleware '[\"cider.nrepl/cider-middleware\"]' "
454454
----
455455

456456
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/shadow-cljs.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ And connect to it with `cider-connect`.
6262
...For that to work, `shadow-cljs.edn` contents like the following are assumed:
6363

6464
```clj
65-
:dependencies [[cider/cider-nrepl "0.55.7"] ;; mandatory (unless it's inherited from deps.edn or otherwise present in the classpath of shadow-cljs's JVM process)
65+
:dependencies [[cider/cider-nrepl "0.56.0"] ;; mandatory (unless it's inherited from deps.edn or otherwise present in the classpath of shadow-cljs's JVM process)
6666
[refactor-nrepl/refactor-nrepl "3.9.0"]] ;; refactor-nrepl is optional
6767

6868
:nrepl {:middleware [cider.nrepl/cider-middleware ;; it's advisable to explicitly add this middleware. It's automatically added by shadow-cljs (if available in the classpath), unless `:nrepl {:cider false}`

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ or in `build.gradle`:
5252
----
5353
dependencies {
5454
devImplementation 'nrepl:nrepl:1.3.1'
55-
devImplementation 'cider:cider-nrepl:0.55.7'
55+
devImplementation 'cider:cider-nrepl:0.56.0'
5656
devImplementation 'cider:cider-piggieback:0.5.3'
5757
}
5858

0 commit comments

Comments
 (0)