-
Notifications
You must be signed in to change notification settings - Fork 67
Modernize deps #185
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
onetom
wants to merge
12
commits into
dundalek:master
Choose a base branch
from
onetom:modernize-deps
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Modernize deps #185
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
780a6a3
Apple M1 compatibility
onetom f0c0440
Upgrade cljfmt to 0.9.0
onetom 45b08ae
Upgrade Clojure to 1.11.1
onetom 316537b
Upgrade SCI to 0.5.36
onetom 8026dff
Upgrade Cognitect test runner
onetom 008330b
Upgrade kaocha to 1.71.1119
onetom f490f38
Upgrade com.cemerick/pomegranate & add changelog links to dep specs
onetom 0aa5bea
Add changelog links to most dep specs
onetom e7908d1
Upgrade depstar to 2.1.303
onetom 71d7959
Upgrade CircleCI images
onetom cbd5936
Disable CLJS builds
onetom 960e4ad
Install `bc` on CI correctly
onetom File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,40 +1,86 @@ | ||
| {:deps | ||
| {org.clojure/clojure {:mvn/version "1.10.2-alpha2"} | ||
| org.clojure/tools.reader {:mvn/version "1.3.2"} | ||
| org.clojure/data.json {:mvn/version "0.2.6"} | ||
| com.cemerick/pomegranate {:mvn/version "1.1.0"} | ||
| org.clojure/tools.cli {:mvn/version "0.4.1"} | ||
| org.clojure/java.jdbc {:mvn/version "0.7.9"} | ||
| org.xerial/sqlite-jdbc {:mvn/version "3.27.2.1"} | ||
| squarepeg/squarepeg {:mvn/version "0.6.1"} | ||
| com.bhauman/rebel-readline {:mvn/version "0.1.4" | ||
| :exclusions [rewrite-cljs/rewrite-cljs]}} | ||
| {org.clojure/clojure | ||
| {:mvn/version "1.11.1" | ||
| :changelog "https://github.com/clojure/clojure/blob/master/changes.md"} | ||
|
|
||
| org.clojure/tools.reader | ||
| {:mvn/version "1.3.6" | ||
| :changelog "https://github.com/clojure/tools.reader/blob/master/CHANGELOG.md"} | ||
|
|
||
| org.clojure/data.json | ||
| {:mvn/version "2.4.0" | ||
| :changelog "https://github.com/clojure/data.json#change-log"} | ||
|
|
||
| clj-commons/pomegranate | ||
| {:mvn/version "1.2.1" | ||
| :changelog "https://github.com/clj-commons/pomegranate/blob/master/CHANGES.md"} | ||
|
|
||
| org.clojure/tools.cli | ||
| {:mvn/version "1.0.214" | ||
| :changelog "https://github.com/clojure/tools.cli/blob/master/CHANGELOG.md"} | ||
|
|
||
| org.clojure/java.jdbc | ||
| {:mvn/version "0.7.12" | ||
| :changelog "https://github.com/clojure/java.jdbc/blob/master/CHANGES.md"} | ||
|
|
||
| org.xerial/sqlite-jdbc | ||
| {:mvn/version "3.40.0.0" | ||
| :changelog "https://github.com/xerial/sqlite-jdbc/releases"} | ||
|
|
||
| squarepeg/squarepeg | ||
| {:mvn/version "0.6.1" | ||
| :changelog "https://github.com/ericnormand/squarepeg/tags"} | ||
|
|
||
| com.bhauman/rebel-readline | ||
| {:mvn/version "0.1.4" | ||
| :exclusions [rewrite-cljs/rewrite-cljs]}} | ||
|
|
||
| :paths ["src/common" "src/jvm" "resources"] | ||
|
|
||
| :aliases | ||
| {:test {:extra-paths ["test"] | ||
| :extra-deps {com.cognitect/test-runner | ||
| {:git/url "https://github.com/cognitect-labs/test-runner.git" | ||
| :sha "cb96e80f6f3d3b307c59cbeb49bb0dcb3a2a780b"}}} | ||
|
|
||
| :depstar {:extra-deps {seancorfield/depstar {:mvn/version "1.1.117"}}} | ||
|
|
||
| :sci {:extra-paths ["src/closh-sci" "classes"] | ||
| :extra-deps {fipp/fipp {:mvn/version "0.6.22"} | ||
| borkdude/sci {:mvn/version "0.1.0"} | ||
| borkdude/edamame {:mvn/version "0.0.10"} | ||
| com.bhauman/rebel-readline | ||
| {:git/url "https://github.com/dundalek/rebel-readline.git" | ||
| :sha "123be27a75de902233356e11ac66ac53cc5edc08" | ||
| :deps/root "rebel-readline" | ||
| :exclusions [rewrite-cljs/rewrite-cljs]}}} | ||
|
|
||
| :lint {:extra-deps {cljfmt/cljfmt {:mvn/version "0.7.0"}} | ||
| :main-opts ["-m" "cljfmt.main" "--file-pattern" "(?<!clojure_main_sci)\\.clj[csx]?$" "check"]} | ||
|
|
||
| :lint/fix {:extra-deps {cljfmt/cljfmt {:mvn/version "0.7.0"}} | ||
| :main-opts ["-m" "cljfmt.main" "--file-pattern" "(?<!clojure_main_sci)\\.clj[csx]?$" "fix"]} | ||
|
|
||
| :kaocha {:extra-paths ["test"] | ||
| :extra-deps {lambdaisland/kaocha {:mvn/version "0.0-409"}}}}} | ||
| {:test | ||
| {:extra-paths ["test"] | ||
| :extra-deps {io.github.cognitect-labs/test-runner | ||
| {:git/tag "v0.5.1" :git/sha "dfb30dd"}} | ||
| :changelog "https://github.com/cognitect-labs/test-runner/blob/master/changes.md"} | ||
|
|
||
| :run/test | ||
| {:main-opts ["-m" "cognitect.test-runner"] | ||
| :exec-fn cognitect.test-runner.api/test} | ||
|
|
||
| :depstar | ||
| {:exec-fn hf.depstar/uberjar | ||
| :exec-args {:aot true} | ||
| :replace-deps | ||
| {com.github.seancorfield/depstar | ||
| {:mvn/version "2.1.303" | ||
| :changelog "https://github.com/seancorfield/depstar/blob/develop/CHANGELOG.md"}}} | ||
|
|
||
| :sci | ||
| {:extra-paths ["src/closh-sci" "classes"] | ||
| :extra-deps {fipp/fipp {:mvn/version "0.6.26"} | ||
| org.babashka/sci {:mvn/version "0.5.36"} | ||
| borkdude/edamame {:mvn/version "1.0.16"} | ||
| com.bhauman/rebel-readline | ||
| {:git/url "https://github.com/dundalek/rebel-readline.git" | ||
| :sha "123be27a75de902233356e11ac66ac53cc5edc08" | ||
| :deps/root "rebel-readline" | ||
| :exclusions [rewrite-cljs/rewrite-cljs]}}} | ||
|
|
||
| :lint | ||
| {:extra-deps {cljfmt/cljfmt {:mvn/version "0.9.0"}} | ||
| :main-opts ["-m" "cljfmt.main" "--file-pattern" "(?<!clojure_main_sci)\\.clj[csx]?$" "check"]} | ||
|
|
||
| :lint/fix | ||
| {:extra-deps {cljfmt/cljfmt {:mvn/version "0.9.0"}} | ||
| :main-opts ["-m" "cljfmt.main" "--file-pattern" "(?<!clojure_main_sci)\\.clj[csx]?$" "fix"]} | ||
|
|
||
| :kaocha | ||
| {:extra-paths ["test"] | ||
| :extra-deps {lambdaisland/kaocha | ||
| {:mvn/version "1.71.1119" | ||
| :changelog "https://github.com/lambdaisland/kaocha/blob/main/CHANGELOG.md"}}} | ||
|
|
||
| :run/kaocha | ||
| {:exec-fn kaocha.runner/exec-fn | ||
| :exec-args {}}}} | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
What are these
changelogfields? Is that something supported by tools.deps?