lein-ancient icon indicating copy to clipboard operation
lein-ancient copied to clipboard

Check your Projects for outdated Dependencies

Results 19 lein-ancient issues
Sort by recently updated
recently updated
newest added

Hi, Is there a way to upgrade a single dep? I saw the `:only` arg, but that appears to only work if I have deps flagged with keywords. I was...

I'm using `[lein-ancient "1.0.0-RC3"]`. Here's a minimal repro: ``` (defproject foo-project "1.0.0" :dependencies [[commons-collections "3.2.2"]]) ``` The output of `lein-ancient` is: ``` [commons-collections "20040616"] is available but we use "3.2.2"...

When running` lein ancient` on version 0.7.0 I get this error: ``` Retrieving lein-cloverage/lein-cloverage/1.2.2/lein-cloverage-1.2.2.pom from clojars Retrieving lein-cloverage/lein-cloverage/1.2.2/lein-cloverage-1.2.2.jar from clojars ←[31m(error)←[m #error { :cause "Assert failed: (string-of? s r/linebreak?)" :via...

### Steps to reproduce Minimal `project.clj`: ```clojure (defproject ancient-minimal "0.1.0-SNAPSHOT" :description "FIXME: write description" :url "http://example.com/FIXME" :license {:name "EPL-2.0 OR GPL-2.0-or-later WITH Classpath-exception-2.0" :url "https://www.eclipse.org/legal/epl-2.0/"} :dependencies [[org.clojure/clojure "1.11.1"] [lambdaisland/kaocha-cloverage "1.0.75"]]...

For people who rely on packages that are semantically versioned, it would be nice to have an option to only upgrade to the newest version that does not have breaking...

I'm using Nexus as a private maven mirror, but I can not use ancient to upgrade any packages after the mirror is configured. `cat ~/.lein/profiles.clj` `{:user {:mirrors {#".+" "https://nexus.icc/repository/maven-public/"} :certificates...

investigate

How can I set my proxy settings so that lein-ancient can connect to the internet properly? I'm receiving a status code 407 from those.

I have a project.clj set up using ":env" as the password like explained in https://github.com/technomancy/leiningen/blob/stable/doc/DEPLOY.md#credentials-in-the-environment When using `export LEIN_PASSWORD=password && lein ancient` however, the plugin gets 401 error. This plugin...

Issue #83 showed that it's possible to have versions defined outside of the `project.clj` file. There are multiple cases where this could happen: - Using `lein-parent` to include e.g. `:managed-dependencies`...

investigate