This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2023-08-03
Channels
- # aleph (8)
- # announcements (3)
- # architecture (47)
- # babashka (22)
- # beginners (22)
- # chlorine-clover (2)
- # cider (15)
- # clj-yaml (6)
- # cljs-dev (3)
- # clojure (76)
- # clojure-austin (2)
- # clojure-europe (16)
- # clojure-france (10)
- # clojure-gamedev (11)
- # clojure-norway (28)
- # clojure-sweden (4)
- # clojurescript (32)
- # conjure (1)
- # datahike (2)
- # datomic (6)
- # events (9)
- # graalvm (8)
- # gratitude (5)
- # honeysql (8)
- # humbleui (2)
- # hyperfiddle (37)
- # jobs (1)
- # polylith (4)
- # re-frame (14)
- # releases (2)
- # rum (9)
- # sci (9)
- # scittle (8)
- # shadow-cljs (9)
- # spacemacs (4)
- # sql (10)
- # xtdb (24)
;; Startup: /usr/local/bin/lein update-in :dependencies conj \[nrepl/nrepl\ \"1.0.0\"\] -- update-in :plugins conj \[cider/cider-nrepl\ \"0.30.0\"\] -- repl :headless :host localhost
WARNING: CIDER 1.7.0 requires cider-nrepl 0.30.0, but you're currently using cider-nrepl 0.21.1. The version mismatch might break some functionality! (More information)
Notice the warning I'm using cider-nrepl 0.21.1, though I'm requesting 0.30.0. Any ideas why this might be?@U45T93RA6, yes, here it is:
{:repl {:plugins [[cider/cider-nrepl "0.30.0"]]}}
yep, that was it, thanks!
Is there a way to disable those warnings cider-shadow-cljs-global-options is obsolete (since 1.8.0); use 'cider-shadow-cljs-parameters' instead
(CIDER 1.8.0-snapshot)?
Want to βhideβ them until I have a minute to figure out how this has changed (as it seems there is a semantics shift, not only naming).
There's a long list of Cider variables on https://practical.li/spacemacs/reference/cider/configuration-variables/ Maybe one of them does the trick?
obsolete variables is an emacs thing, not cider specific, so either modify that variable in cider or disable warnings entirely i guess ?
thanks @U05254DQM, thanks @U02F0C62TC1 β tried suppressing this with setting warning-minimum-log-level
to :error
but no luck π
at this point Iβll probably take the time to understand the actual changes in cider π
i think you're looking for warning-minimum-level
instead of warning-minimum-log-level
but i really can't recommend hiding warning in emacs
@U7MHWDLD8 Basically two similar variables were folded into one. If you had something in global options you should move it to parameters.
makes sense, thanks @U051BLM8F!