This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2024-03-11
Channels
- # announcements (1)
- # aws (5)
- # beginners (35)
- # calva (18)
- # clerk (5)
- # clojure (20)
- # clojure-berlin (1)
- # clojure-dev (12)
- # clojure-europe (16)
- # clojure-nl (1)
- # clojure-norway (159)
- # clojure-uk (5)
- # clojurescript (8)
- # conjure (1)
- # cursive (18)
- # events (10)
- # fulcro (23)
- # hyperfiddle (5)
- # introduce-yourself (3)
- # juxt (2)
- # off-topic (1)
- # polylith (4)
- # portal (11)
- # releases (1)
- # shadow-cljs (4)
- # xtdb (9)
- # yamlscript (1)
These seem to be new reflection warnings in tools.reader
:
Reflection warning, clojure/tools/reader.clj:1025:74 - call to method setLength can't be resolved (target class is unknown).
Reflection warning, clojure/tools/reader.clj:1030:74 - call to method setLength can't be resolved (target class is unknown).
I haven't checked whether they are due to changes in tools.reader
or Clojure 1.12 Alpha 9.so these are new as of ... 1.12.0?
Unclear at the moment. We did some dependency updates this morning (but not of Clojure which was already on alpha 9) so I haven't tracked down exactly what causes these new warnings...
(I posted mostly as an FYI in case anyone had an immediate response that might save me some work)
new to me, but we can look into it
can easily repro in the lib, doesn't seem related to 1.12, will look
looks like it was in "TRDR-71: source-logging-push-back-reader throws" change from Nov
Ah, interesting. I wonder why we've only just started seeing it?
> clojure -Stree -M:build:cfml-affiliate:dev:+default:test | fgrep tools.reader
X org.clojure/tools.reader 1.3.6 :older-version
X org.clojure/tools.reader 1.3.6 :parent-omitted
. org.clojure/tools.reader 1.3.6
X org.clojure/tools.reader 1.3.4 :older-version
X org.clojure/tools.reader 1.3.6 :older-version
. org.clojure/tools.reader 1.4.0
We don't depend on it directly so it could be due to our round of minor updates this morning bringing in 1.4.0?(we exclude known reflection warnings from all our deps but this was an "unknown") 🙂
Ah, it's due to moving from tools.build
0.9.6 to 0.10.0 which brings in an updated tools.namespace
which in turn brings in the updated tools.reader
.