-
-
Notifications
You must be signed in to change notification settings - Fork 179
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Update nREPL and REPL-y #724
Conversation
nREPL doesn't have a hard Clojure dependency these days.
@@ -8,7 +8,7 @@ | |||
[boot.from.io.aviso.exception :refer [*fonts*]])) | |||
|
|||
(def ^:dynamic *default-dependencies* | |||
(atom '[[nrepl/nrepl "0.4.4" :exclusions [[org.clojure/clojure]]]])) | |||
(atom '[[nrepl/nrepl "0.5.3"]])) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(atom '[[nrepl/nrepl "0.5.3"]])) | |
(atom '[[nrepl/nrepl "0.6.0"]])) |
#### Improved | ||
|
||
- Updated REPL-y to 0.4.3. | ||
- Updated nREPL to 0.5.3. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- Updated nREPL to 0.5.3. | |
- Updated nREPL to 0.6.0. |
@flyboarder Can you merge this and bump the version to 0.6.0? Tools like CIDER now target nREPL 0.6 and it’d be nice if Boot users didn’t have to manually override their nREPL dependency. |
Yes, I’ll look into a new patch version soon. |
Thanks! Generally nREPL upgrades are safe, as we’re very careful about backwards compatibility. |
A straightforward change.
One thing to note - nREPL introduced a config file, that ideally boot should support at some point. See https://nrepl.org/nrepl/usage/server.html#_server_options
It's not a big deal and should be trivial to do. Perhaps someone like @alexander-yakushev would like to land a hand with this, as I'm not really a boot user.