Skip to content

Commit c508490

Browse files
Bump cider-nrepl to 0.55.1
1 parent 8888391 commit c508490

File tree

9 files changed

+35
-35
lines changed

9 files changed

+35
-35
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
- [#3793](https://github.com/clojure-emacs/cider/issues/3793): **(Breaking)** Remove features that relied on printed exception parsing:
1515
- `cider-stacktrace-analyze-string` and `cider-stacktrace-analyze-at-point` functions.
1616
- Automatic stacktrace parsing in log viewer.
17-
- Bump the injected `cider-nrepl` to [0.55.0](https://github.com/clojure-emacs/cider-nrepl/blob/master/CHANGELOG.md#0550-2025-04-10).
17+
- Bump the injected `cider-nrepl` to [0.55.1](https://github.com/clojure-emacs/cider-nrepl/blob/master/CHANGELOG.md#0551-2025-04-14).
1818
- [compliment#122](https://github.com/alexander-yakushev/compliment/pull/122): Completion: sort candidates by priority.
1919
- Inspector: add dedicated view for Exceptions.
2020
- Stop vendoring Haystack dependency.

cider.el

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

576-
(defconst cider-required-middleware-version "0.55.0"
576+
(defconst cider-required-middleware-version "0.55.1"
577577
"The CIDER nREPL version that's known to work properly with CIDER.")
578578

579579
(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.0"]])
5+
:plugins [[cider/cider-nrepl "0.55.1"]])

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.0"]
5+
:plugins [[cider/cider-nrepl "0.55.1"]
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.0"]]
23+
:plugins [[cider/cider-nrepl "0.55.1"]]
2424
----
2525

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

2828
[source,clojure]
2929
----
30-
{:repl {:plugins [[cider/cider-nrepl "0.55.0"]]}}
30+
{:repl {:plugins [[cider/cider-nrepl "0.55.1"]]}}
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.0"}}
46+
:cider-clj {:extra-deps {cider/cider-nrepl {:mvn/version "0.55.1"}}
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.0"}
50+
cider/cider-nrepl {:mvn/version "0.55.1"}
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:0.9.0'
69-
devImplementation 'cider:cider-nrepl:0.55.0'
69+
devImplementation 'cider:cider-nrepl:0.55.1'
7070
}
7171
7272
tasks.named('clojureRepl') {

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.55.0"}}}' -m nrepl.cmdline --middleware '["cider.nrepl/cider-middleware"]'
75+
$ clojure -Sdeps '{:deps {nrepl {:mvn/version "1.3.1"} cider/cider-nrepl {:mvn/version "0.55.1"}}}' -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.0"}}}' -m nrepl.cmdline --middleware "[cider.nrepl/cider-middleware]"
335+
$ clj -Sdeps '{:deps {cider/cider-nrepl {:mvn/version "0.55.1"}}}' -m nrepl.cmdline --middleware "[cider.nrepl/cider-middleware]"
336336
----
337337

338338
Alternatively, you can start nREPL either manually or using the facilities

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.0"] ;; 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.55.1"] ;; 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
@@ -61,7 +61,7 @@ or in `build.gradle`:
6161
----
6262
dependencies {
6363
devImplementation 'nrepl:nrepl:1.3.1'
64-
devImplementation 'cider:cider-nrepl:0.55.0'
64+
devImplementation 'cider:cider-nrepl:0.55.1'
6565
devImplementation 'cider:cider-piggieback:0.5.3'
6666
}
6767

0 commit comments

Comments
 (0)