Re: Migrating from 1.5.1 to 1.6 and dependencies

2014-06-03 Thread Mike Fikes
Thanks Alex. That's great! My fear of a “dependency yak shave” is unfounded. I noticed the following (once) in my server log file, but have been unable to trace it down not see any ill effects and presumed it could be caused by mixing versions. I'll report if I find anything specific. # -- Yo

Re: Migrating from 1.5.1 to 1.6 and dependencies

2014-06-03 Thread Alex Miller
You can use "lein deps :tree" to detect what different libraries depend on. Specifying an explicit Clojure dependency in your own project should override anything used by downstream dependencies. "lein ancient" is also useful in finding out of date dependencies. I am not aware of any binary inc

Migrating from 1.5.1 to 1.6 and dependencies

2014-06-03 Thread Mike Fikes
I'm making use of core.async, which specifies 1.6. Does leiningen help with ensuring any libraries I'm using are also compatible with 1.6? I'm concerned that I may have another dependency (perhaps transitive) that is incompatible, perhaps simply by being AOT compiled with 1.5.1. -- You receiv