Skip to content

Commit 3e54af3

Browse files
committed
Use cider-nrepl 0.35.1
1 parent 856a35c commit 3e54af3

File tree

6 files changed

+34
-33
lines changed

6 files changed

+34
-33
lines changed

CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,15 +40,16 @@
4040
- [#3375](https://github.com/clojure-emacs/cider/pull/3375): `cider-test`: don't render a newline between expected and actual, most times.
4141
- Improve `nrepl-dict` error reporting.
4242
- Bump the injected `piggieback` to [0.5.3](https://github.com/nrepl/piggieback/blob/0.5.3/CHANGES.md#053-2021-10-26).
43-
- Bump the injected `cider-nrepl` to [0.35](https://github.com/clojure-emacs/cider-nrepl/blob/v0.35.0/CHANGELOG.md#0350-2023-08-09).
43+
- Bump the injected `cider-nrepl` to [0.35.1](https://github.com/clojure-emacs/cider-nrepl/blob/v0.35.1/CHANGELOG.md#0351-2023-08-18).
4444
- Improves indentation, font-locking and other metadata support for ClojureScript.
4545
- Updates [Orchard](https://github.com/clojure-emacs/orchard/blob/v0.14.2/CHANGELOG.md)
4646
- introduces support for displaying the docstring and arglists of 'indirect' vars (e.g. `(def foo bar)`) for Clojure/Script.
4747
- fixes xref support across deftest vars.
4848
- Updates [Suitable](https://github.com/clojure-emacs/clj-suitable/blob/v0.5.0/CHANGELOG.md#050-2023-07-28)
4949
- avoiding side-effecting `->` evaluation for pure-ClojureScript chains.
5050
- Updates [Compliment](https://github.com/alexander-yakushev/compliment/blob/0.4.0/CHANGELOG.md#040-2023-07-05)
51-
- Supports better completions for var-quote (`#'some/var`) .
51+
- Supports better completions for var-quote (`#'some/var`).
52+
- Updates [Haystack](https://github.com/clojure-emacs/haystack/blob/v0.1.0/CHANGELOG.md#010).
5253

5354
## 1.7.0 (2023-03-23)
5455

cider.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -489,7 +489,7 @@ the artifact.")
489489
(defconst cider-latest-clojure-version "1.10.1"
490490
"Latest supported version of Clojure.")
491491

492-
(defconst cider-required-middleware-version "0.35.0"
492+
(defconst cider-required-middleware-version "0.35.1"
493493
"The CIDER nREPL version that's known to work properly with CIDER.")
494494

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

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

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

3333
[source,clojure]
3434
----
35-
:plugins [[cider/cider-nrepl "0.35.0"]
35+
:plugins [[cider/cider-nrepl "0.35.1"]
3636
[mx.cider/enrich-classpath "x.y.z"]]
3737
----
3838

@@ -46,7 +46,7 @@ A minimal `profiles.clj` for CIDER would be:
4646

4747
[source,clojure]
4848
----
49-
{:repl {:plugins [[cider/cider-nrepl "0.35.0"]
49+
{:repl {:plugins [[cider/cider-nrepl "0.35.1"]
5050
[mx.cider/enrich-classpath "1.9.0"]]}}
5151
----
5252

@@ -67,7 +67,7 @@ all of their projects using a `~/.boot/profile.boot` file like so:
6767
(require 'boot.repl)
6868
6969
(swap! boot.repl/*default-dependencies*
70-
concat '[[cider/cider-nrepl "0.35.0"]])
70+
concat '[[cider/cider-nrepl "0.35.1"]])
7171
7272
(swap! boot.repl/*default-middleware*
7373
conj 'cider.nrepl/cider-middleware)
@@ -84,11 +84,11 @@ run `cider-connect` or `cider-connect-cljs`.
8484

8585
[source,clojure]
8686
----
87-
:cider-clj {:extra-deps {cider/cider-nrepl {:mvn/version "0.35.0"}}
87+
:cider-clj {:extra-deps {cider/cider-nrepl {:mvn/version "0.35.1"}}
8888
:main-opts ["-m" "nrepl.cmdline" "--middleware" "[cider.nrepl/cider-middleware]"]}
8989
9090
:cider-cljs {:extra-deps {org.clojure/clojurescript {:mvn/version "1.10.339"}
91-
cider/cider-nrepl {:mvn/version "0.35.0"}
91+
cider/cider-nrepl {:mvn/version "0.35.1"}
9292
cider/piggieback {:mvn/version "0.5.3"}}
9393
:main-opts ["-m" "nrepl.cmdline" "--middleware"
9494
"[cider.nrepl/cider-middleware,cider.piggieback/wrap-cljs-repl]"]}

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

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

70-
$ clojure -Sdeps '{:deps {nrepl {:mvn/version "0.6.0"} cider/cider-nrepl {:mvn/version "0.35.0"}}}' -m nrepl.cmdline --middleware '["cider.nrepl/cider-middleware"]'
70+
$ clojure -Sdeps '{:deps {nrepl {:mvn/version "0.6.0"} cider/cider-nrepl {:mvn/version "0.35.1"}}}' -m nrepl.cmdline --middleware '["cider.nrepl/cider-middleware"]'
7171

7272
TIP: If you don't want `cider-jack-in` to inject dependencies automatically, set
7373
`cider-inject-dependencies-at-jack-in` to `nil`. Note that you'll have to setup
@@ -292,7 +292,7 @@ It is also possible for plain `clj`, although the command is somewhat longer:
292292

293293
[source,sh]
294294
----
295-
$ clj -Sdeps '{:deps {cider/cider-nrepl {:mvn/version "0.35.0"}}}' -m nrepl.cmdline --middleware "[cider.nrepl/cider-middleware]"
295+
$ clj -Sdeps '{:deps {cider/cider-nrepl {:mvn/version "0.35.1"}}}' -m nrepl.cmdline --middleware "[cider.nrepl/cider-middleware]"
296296
----
297297

298298
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.35.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.35.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}`

0 commit comments

Comments
 (0)