From 1785cf1b1aecc8ad78d85214e3390c60b9dc9a2e Mon Sep 17 00:00:00 2001 From: liquidz Date: Sat, 10 Feb 2024 10:50:16 +0900 Subject: [PATCH 01/10] chore: Delete extra lines --- test/antq/dep/github_action/uses_test.clj | 1 - test/antq/log_test.clj | 1 - test/antq/upgrade/boot_test.clj | 1 - test/antq/upgrade/clojure/tool_test.clj | 1 - 4 files changed, 4 deletions(-) diff --git a/test/antq/dep/github_action/uses_test.clj b/test/antq/dep/github_action/uses_test.clj index d6aaf4ea..92efea0d 100644 --- a/test/antq/dep/github_action/uses_test.clj +++ b/test/antq/dep/github_action/uses_test.clj @@ -37,4 +37,3 @@ :extra {:url "https://github.com/git/sha-short.git" const.gh-action/type-key "uses"}})] (sut/detect [:uses "git/sha-short@8be0919"])))) - diff --git a/test/antq/log_test.clj b/test/antq/log_test.clj index 82d730fa..e945f8c4 100644 --- a/test/antq/log_test.clj +++ b/test/antq/log_test.clj @@ -30,4 +30,3 @@ (sut/warning "WARNING") (str sw))] (t/is (= "WARNING\n" warn-str))))) - diff --git a/test/antq/upgrade/boot_test.clj b/test/antq/upgrade/boot_test.clj index 6aefc123..857295b8 100644 --- a/test/antq/upgrade/boot_test.clj +++ b/test/antq/upgrade/boot_test.clj @@ -57,4 +57,3 @@ (slurp)) upgraded (upgrade/upgrader dummy-excluded-dep)] (t/is (= original upgraded)))) - diff --git a/test/antq/upgrade/clojure/tool_test.clj b/test/antq/upgrade/clojure/tool_test.clj index e17c8a31..58631bf0 100644 --- a/test/antq/upgrade/clojure/tool_test.clj +++ b/test/antq/upgrade/clojure/tool_test.clj @@ -35,4 +35,3 @@ :sha {:- "bc28de64fb36b395da4267e8d7916d1a9e167bcd" :+ "9876543"}}} (h/diff-deps from-deps to-deps)))))) - From 02aaa04d0172c4a0c5462dce1e1e38d0b2c14aa6 Mon Sep 17 00:00:00 2001 From: liquidz Date: Sat, 10 Feb 2024 10:51:04 +0900 Subject: [PATCH 02/10] fix: Update github action thrird party detection by adding babashka, clj-kondo, cljfmt, cljstyle, zprint cf. #248 --- src/antq/constant/github_action.clj | 9 ++++ src/antq/dep/github_action/third_party.clj | 44 +++++++++++++++-- .../dep/github_action/third_party_test.clj | 47 ++++++++++++++++--- 3 files changed, 90 insertions(+), 10 deletions(-) diff --git a/src/antq/constant/github_action.clj b/src/antq/constant/github_action.clj index 6651852e..8f7475d5 100644 --- a/src/antq/constant/github_action.clj +++ b/src/antq/constant/github_action.clj @@ -1,3 +1,12 @@ (ns antq.constant.github-action) (def type-key ::type) + +(def setup-clojure-name "clojure/brew-install") +(def setup-leiningen-name "technomancy/leiningen") +(def setup-boot-name "boot-clj/boot") +(def setup-babashka-name "babashka/babashka") +(def setup-clj-kondo-name "clj-kondo/clj-kondo") +(def setup-cljfmt-name "weavejester/cljfmt") +(def setup-cljstyle-name "greglook/cljstyle") +(def setup-zprint-name "zprint/zprint") diff --git a/src/antq/dep/github_action/third_party.clj b/src/antq/dep/github_action/third_party.clj index 48bf4f30..7bef7370 100644 --- a/src/antq/dep/github_action/third_party.clj +++ b/src/antq/dep/github_action/third_party.clj @@ -18,12 +18,48 @@ (->> (:with form) (keep (fn [[k v]] (case k - (:tools-deps :cli) {:name "clojure/brew-install" :version v} - :lein {:name "technomancy/leiningen" :version v} - :boot {:name "boot-clj/boot" :version v} + (:tools-deps :cli) + {:type :github-tag + :name const.gh-action/setup-clojure-name + :version v} + + :lein + {:type :github-tag + :name const.gh-action/setup-leiningen-name + :version v} + + :boot + {:type :github-tag + :name const.gh-action/setup-boot-name + :version v} + + :bb + {:type :java + :name const.gh-action/setup-babashka-name + :version v} + + :clj-kondo + {:type :java + :name const.gh-action/setup-clj-kondo-name + :version v} + + :cljfmt + {:type :github-tag + :name const.gh-action/setup-cljfmt-name + :version v} + + :cljstyle + {:type :github-tag + :name const.gh-action/setup-cljstyle-name + :version v} + + :zprint + {:type :java + :name const.gh-action/setup-zprint-name + :version v} + nil))) (map #(-> % - (assoc :type :github-tag) (assoc-in [:extra const.gh-action/type-key] "DeLaGuardo/setup-clojure") (r/map->Dependency))))) diff --git a/test/antq/dep/github_action/third_party_test.clj b/test/antq/dep/github_action/third_party_test.clj index b614da86..2aae9e64 100644 --- a/test/antq/dep/github_action/third_party_test.clj +++ b/test/antq/dep/github_action/third_party_test.clj @@ -19,36 +19,71 @@ (t/deftest detect-setup-clojure-test (t/testing "Clojure Tools" - (t/is (= [(git-tag-dependency {:name "clojure/brew-install" + (t/is (= [(git-tag-dependency {:name const.gh-action/setup-clojure-name :version "1.0.0" :extra {const.gh-action/type-key "DeLaGuardo/setup-clojure"}})] (sut/detect {:uses "DeLaGuardo/setup-clojure@main" :with {:tools-deps "1.0.0"}}))) - (t/is (= [(git-tag-dependency {:name "clojure/brew-install" + (t/is (= [(git-tag-dependency {:name const.gh-action/setup-clojure-name :version "2.0.0" :extra {const.gh-action/type-key "DeLaGuardo/setup-clojure"}})] (sut/detect {:uses "DeLaGuardo/setup-clojure@main" :with {:cli "2.0.0"}})))) (t/testing "Leiningen" - (t/is (= [(git-tag-dependency {:name "technomancy/leiningen" + (t/is (= [(git-tag-dependency {:name const.gh-action/setup-leiningen-name :version "3.0.0" :extra {const.gh-action/type-key "DeLaGuardo/setup-clojure"}})] (sut/detect {:uses "DeLaGuardo/setup-clojure@main" :with {:lein "3.0.0"}})))) (t/testing "Boot" - (t/is (= [(git-tag-dependency {:name "boot-clj/boot" + (t/is (= [(git-tag-dependency {:name const.gh-action/setup-boot-name :version "4.0.0" :extra {const.gh-action/type-key "DeLaGuardo/setup-clojure"}})] (sut/detect {:uses "DeLaGuardo/setup-clojure@main" :with {:boot "4.0.0"}})))) + (t/testing "Babashka" + (t/is (= [(java-dependency {:name const.gh-action/setup-babashka-name + :version "4.0.0" + :extra {const.gh-action/type-key "DeLaGuardo/setup-clojure"}})] + (sut/detect {:uses "DeLaGuardo/setup-clojure@main" + :with {:bb "4.0.0"}})))) + + (t/testing "clj-kondo" + (t/is (= [(java-dependency {:name const.gh-action/setup-clj-kondo-name + :version "4.0.0" + :extra {const.gh-action/type-key "DeLaGuardo/setup-clojure"}})] + (sut/detect {:uses "DeLaGuardo/setup-clojure@main" + :with {:clj-kondo "4.0.0"}})))) + + (t/testing "cljfmt" + (t/is (= [(git-tag-dependency {:name const.gh-action/setup-cljfmt-name + :version "4.0.0" + :extra {const.gh-action/type-key "DeLaGuardo/setup-clojure"}})] + (sut/detect {:uses "DeLaGuardo/setup-clojure@main" + :with {:cljfmt "4.0.0"}})))) + + (t/testing "cljstyle" + (t/is (= [(git-tag-dependency {:name const.gh-action/setup-cljstyle-name + :version "4.0.0" + :extra {const.gh-action/type-key "DeLaGuardo/setup-clojure"}})] + (sut/detect {:uses "DeLaGuardo/setup-clojure@main" + :with {:cljstyle "4.0.0"}})))) + + (t/testing "zprint" + (t/is (= [(java-dependency {:name const.gh-action/setup-zprint-name + :version "4.0.0" + :extra {const.gh-action/type-key "DeLaGuardo/setup-clojure"}})] + (sut/detect {:uses "DeLaGuardo/setup-clojure@main" + :with {:zprint "4.0.0"}})))) + (t/testing "Multiple" - (t/is (= [(git-tag-dependency {:name "clojure/brew-install" + (t/is (= [(git-tag-dependency {:name const.gh-action/setup-clojure-name :version "5.0.0" :extra {const.gh-action/type-key "DeLaGuardo/setup-clojure"}}) - (git-tag-dependency {:name "technomancy/leiningen" + (git-tag-dependency {:name const.gh-action/setup-leiningen-name :version "6.0.0" :extra {const.gh-action/type-key "DeLaGuardo/setup-clojure"}})] (sut/detect {:uses "DeLaGuardo/setup-clojure@main" From badf6c9e6e0d55960698213d3aa6bc6a75f2cbeb Mon Sep 17 00:00:00 2001 From: liquidz Date: Sat, 10 Feb 2024 22:31:05 +0900 Subject: [PATCH 03/10] fix: Fix github action upgrader to support bb, clj-kondo, cljfmt, cljstyle, zprint on setup-clojure cf. #248 --- src/antq/upgrade/github_action.clj | 14 ++- .../upgrade/github_action/third_party.clj | 89 +++++++++++++++++++ test/antq/upgrade/github_action_test.clj | 58 ------------ .../dep/test_github_action_third_party.yml | 13 --- .../dep/third-party/setup-clojure.yml | 28 ++++++ 5 files changed, 127 insertions(+), 75 deletions(-) create mode 100644 test/antq/upgrade/github_action/third_party.clj create mode 100644 test/resources/dep/third-party/setup-clojure.yml diff --git a/src/antq/upgrade/github_action.clj b/src/antq/upgrade/github_action.clj index 4d0111e9..e456efc7 100644 --- a/src/antq/upgrade/github_action.clj +++ b/src/antq/upgrade/github_action.clj @@ -1,5 +1,6 @@ (ns antq.upgrade.github-action (:require + [antq.constant.github-action :as const.gh-action] [antq.dep.github-action :as dep.gh-action] [antq.log :as log] [antq.upgrade :as upgrade] @@ -50,10 +51,15 @@ (defmethod upgrade-dep "DeLaGuardo/setup-clojure" [loc version-checked-dep] - (let [target-re (case (:name version-checked-dep) - "clojure/brew-install" #"cli\s*:" - "technomancy/leiningen" #"lein\s*:" - "boot-clj/boot" #"boot\s*:" + (let [target-re (condp = (:name version-checked-dep) + const.gh-action/setup-clojure-name #"cli\s*:" + const.gh-action/setup-leiningen-name #"lein\s*:" + const.gh-action/setup-boot-name #"boot\s*:" + const.gh-action/setup-babashka-name #"bb\s*:" + const.gh-action/setup-clj-kondo-name #"clj-kondo\s*:" + const.gh-action/setup-cljfmt-name #"cljfmt\s*:" + const.gh-action/setup-cljstyle-name #"cljstyle\s*:" + const.gh-action/setup-zprint-name #"zprint\s*:" nil)] (if-not target-re (log/error (format "%s: Unexpected name for setup-clojure" diff --git a/test/antq/upgrade/github_action/third_party.clj b/test/antq/upgrade/github_action/third_party.clj new file mode 100644 index 00000000..80ac6659 --- /dev/null +++ b/test/antq/upgrade/github_action/third_party.clj @@ -0,0 +1,89 @@ +(ns antq.upgrade.github-action.third-party + (:require + [antq.constant.github-action :as const.gh-action] + [antq.dep.github-action :as dep.gha] + [antq.record :as r] + [antq.test-helper :as h] + [antq.upgrade :as upgrade] + [antq.upgrade.github-action] + [clojure.java.io :as io] + [clojure.test :as t])) + +(defn- map->Dependency + [m] + (-> (merge {:project :github-action + :type :github-tag + :latest-version "9.0.0" + :file (io/resource "dep/third-party/setup-clojure.yml") + :extra {const.gh-action/type-key "DeLaGuardo/setup-clojure"}} + m) + (r/map->Dependency))) + +(defn upgrading-diff + [dep] + (let [from-deps (->> (:file dep) + (slurp) + (dep.gha/extract-deps "")) + to-deps (->> (upgrade/upgrader dep) + (dep.gha/extract-deps ""))] + (h/diff-deps from-deps to-deps))) + +(t/deftest upgrade-setup-clojure-dep-test + (t/testing "Clojure CLI" + (t/is (= #{{:name const.gh-action/setup-clojure-name :version {:- 1 :+ "9.0.0"}} + {:name const.gh-action/setup-clojure-name :version {:- -1 :+ "9.0.0"}}} + (-> {:name const.gh-action/setup-clojure-name} + (map->Dependency) + (upgrading-diff))))) + + (t/testing "Leiningen" + (t/is (= #{{:name const.gh-action/setup-leiningen-name :version {:- 2 :+ "9.0.0"}} + {:name const.gh-action/setup-leiningen-name :version {:- -2 :+ "9.0.0"}}} + (-> {:name const.gh-action/setup-leiningen-name} + (map->Dependency) + (upgrading-diff))))) + + (t/testing "Boot" + (t/is (= #{{:name const.gh-action/setup-boot-name :version {:- 3 :+ "9.0.0"}} + {:name const.gh-action/setup-boot-name :version {:- -3 :+ "9.0.0"}}} + (-> {:name const.gh-action/setup-boot-name} + (map->Dependency) + (upgrading-diff))))) + + (t/testing "Babashka" + (t/is (= #{{:name const.gh-action/setup-babashka-name :version {:- 4 :+ "9.0.0"}} + {:name const.gh-action/setup-babashka-name :version {:- -4 :+ "9.0.0"}}} + (-> {:name const.gh-action/setup-babashka-name + :type :java} + (map->Dependency) + (upgrading-diff))))) + + (t/testing "clj-kondo" + (t/is (= #{{:name const.gh-action/setup-clj-kondo-name :version {:- 5 :+ "9.0.0"}} + {:name const.gh-action/setup-clj-kondo-name :version {:- -5 :+ "9.0.0"}}} + (-> {:name const.gh-action/setup-clj-kondo-name + :type :java} + (map->Dependency) + (upgrading-diff))))) + + (t/testing "cljfmt" + (t/is (= #{{:name const.gh-action/setup-cljfmt-name :version {:- 6 :+ "9.0.0"}} + {:name const.gh-action/setup-cljfmt-name :version {:- -6 :+ "9.0.0"}}} + (-> {:name const.gh-action/setup-cljfmt-name} + (map->Dependency) + (upgrading-diff))))) + + (t/testing "cljstyle" + (t/is (= #{{:name const.gh-action/setup-cljstyle-name :version {:- 7 :+ "9.0.0"}} + {:name const.gh-action/setup-cljstyle-name :version {:- -7 :+ "9.0.0"}}} + (-> {:name const.gh-action/setup-cljstyle-name} + (map->Dependency) + (upgrading-diff))))) + + (t/testing "zprint" + (t/is (= #{{:name const.gh-action/setup-zprint-name :version {:- 8 :+ "9.0.0"}} + {:name const.gh-action/setup-zprint-name :version {:- -8 :+ "9.0.0"}}} + (-> {:name const.gh-action/setup-zprint-name + :type :java} + (map->Dependency) + (upgrading-diff)))))) diff --git a/test/antq/upgrade/github_action_test.clj b/test/antq/upgrade/github_action_test.clj index 44571b6c..8a620f87 100644 --- a/test/antq/upgrade/github_action_test.clj +++ b/test/antq/upgrade/github_action_test.clj @@ -25,30 +25,6 @@ :latest-version "v9.0.0" :file (io/resource "dep/test_github_action.yml")})) -(def ^:private dummy-clojure-cli-dep - (r/map->Dependency {:project :github-action - :type :github-tag - :name "clojure/brew-install" - :latest-version "9.0.0" - :file (io/resource "dep/test_github_action_third_party.yml") - :extra {const.gh-action/type-key "DeLaGuardo/setup-clojure"}})) - -(def ^:private dummy-leiningen-dep - (r/map->Dependency {:project :github-action - :type :github-tag - :name "technomancy/leiningen" - :latest-version "9.0.0" - :file (io/resource "dep/test_github_action_third_party.yml") - :extra {const.gh-action/type-key "DeLaGuardo/setup-clojure"}})) - -(def ^:private dummy-boot-dep - (r/map->Dependency {:project :github-action - :type :github-tag - :name "boot-clj/boot" - :latest-version "9.0.0" - :file (io/resource "dep/test_github_action_third_party.yml") - :extra {const.gh-action/type-key "DeLaGuardo/setup-clojure"}})) - (def ^:private dummy-clj-kondo-dep (r/map->Dependency {:project :github-action :type :java @@ -95,40 +71,6 @@ (t/is (nil? (upgrade/upgrader dummy-not-supported-dep))))) (t/deftest upgrade-third-party-dep-test - (t/testing "clojure" - (t/testing "clojure cli" - (let [from-deps (->> (:file dummy-clojure-cli-dep) - (slurp) - (dep.gha/extract-deps "")) - to-deps (->> dummy-clojure-cli-dep - (upgrade/upgrader) - (dep.gha/extract-deps ""))] - (t/is (= #{{:name "clojure/brew-install" :version {:- 1 :+ "9.0.0"}} - {:name "clojure/brew-install" :version {:- -1 :+ "9.0.0"}}} - (h/diff-deps from-deps to-deps))))) - - (t/testing "leiningen" - (let [from-deps (->> (:file dummy-leiningen-dep) - (slurp) - (dep.gha/extract-deps "")) - to-deps (->> dummy-leiningen-dep - (upgrade/upgrader) - (dep.gha/extract-deps ""))] - (t/is (= #{{:name "technomancy/leiningen" :version {:- 2 :+ "9.0.0"}} - {:name "technomancy/leiningen" :version {:- -2 :+ "9.0.0"}}} - (h/diff-deps from-deps to-deps))))) - - (t/testing "boot" - (let [from-deps (->> (:file dummy-boot-dep) - (slurp) - (dep.gha/extract-deps "")) - to-deps (->> dummy-boot-dep - (upgrade/upgrader) - (dep.gha/extract-deps ""))] - (t/is (= #{{:name "boot-clj/boot" :version {:- 3 :+ "9.0.0"}} - {:name "boot-clj/boot" :version {:- -3 :+ "9.0.0"}}} - (h/diff-deps from-deps to-deps)))))) - (t/testing "clj-kondo" (let [from-deps (->> (:file dummy-clj-kondo-dep) (slurp) diff --git a/test/resources/dep/test_github_action_third_party.yml b/test/resources/dep/test_github_action_third_party.yml index 0ffde0a2..3b07bb00 100644 --- a/test/resources/dep/test_github_action_third_party.yml +++ b/test/resources/dep/test_github_action_third_party.yml @@ -4,12 +4,6 @@ jobs: test: runs-on: ubuntu-latest steps: - - uses: DeLaGuardo/setup-clojure@master - with: - cli: 1 - lein: 2 - boot: 3 - bb: 4 - uses: DeLaGuardo/setup-clj-kondo@master with: version: '5' @@ -20,13 +14,6 @@ jobs: with: cljstyle-version: "7" - - name: with name - uses: DeLaGuardo/setup-clojure@master - with: - cli: -1 - lein: -2 - boot: -3 - bb: -4 - name: with name uses: DeLaGuardo/setup-clj-kondo@master with: diff --git a/test/resources/dep/third-party/setup-clojure.yml b/test/resources/dep/third-party/setup-clojure.yml new file mode 100644 index 00000000..4383f46e --- /dev/null +++ b/test/resources/dep/third-party/setup-clojure.yml @@ -0,0 +1,28 @@ +name: dummy +on: [push] +jobs: + test: + runs-on: ubuntu-latest + steps: + - uses: DeLaGuardo/setup-clojure@master + with: + cli: 1 + lein: 2 + boot: 3 + bb: 4 + clj-kondo: 5 + cljfmt: 6 + cljstyle: 7 + zprint: 8 + + - name: with name + uses: DeLaGuardo/setup-clojure@master + with: + cli: -1 + lein: -2 + boot: -3 + bb: -4 + clj-kondo: -5 + cljfmt: -6 + cljstyle: -7 + zprint: -8 From a905ee6a45285167ecc0895e67fe66f9b28dbb34 Mon Sep 17 00:00:00 2001 From: liquidz Date: Sat, 10 Feb 2024 22:32:44 +0900 Subject: [PATCH 04/10] deps: Bump outdated actions --- .github/workflows/coverage.yml | 4 ++-- .github/workflows/release.yml | 2 +- .github/workflows/test.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index ddbf917d..52b7ba61 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -8,11 +8,11 @@ jobs: - uses: DeLaGuardo/setup-clojure@master with: cli: latest - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: path: ~/.m2 key: coverage-m2-${{ hashFiles('deps.edn') }}-v1 - name: Run cloverage run: make coverage - name: Upload reports - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 47665ea5..8e7c351e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -28,7 +28,7 @@ jobs: java -version clojure --version - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: path: ~/.m2 key: test-m2-${{ hashFiles('deps.edn') }}-v1 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f73410c2..20c5dd56 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -19,7 +19,7 @@ jobs: with: cli: latest lein: latest - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: path: ~/.m2 key: test-m2-${{ hashFiles('deps.edn') }}-v1 From 33a643e7f58d6c569a168635c24358b2f3c03930 Mon Sep 17 00:00:00 2001 From: liquidz Date: Sat, 10 Feb 2024 22:32:59 +0900 Subject: [PATCH 05/10] deps: Bump malli to 0.14.0 --- deps.edn | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deps.edn b/deps.edn index 76b3536e..72fbb365 100644 --- a/deps.edn +++ b/deps.edn @@ -24,7 +24,7 @@ {:extra-paths ["dev" "test" "test/resources"] - :extra-deps {metosin/malli {:mvn/version "0.13.0"} + :extra-deps {metosin/malli {:mvn/version "0.14.0"} lambdaisland/kaocha {:mvn/version "1.87.1366"} lambdaisland/deep-diff2 {:mvn/version "2.10.211"}} :jvm-opts ["-Dclojure.core.async.go-checking=true"]} From 897f8b58cce55ccf360c394add62365d249507e1 Mon Sep 17 00:00:00 2001 From: liquidz Date: Fri, 23 Feb 2024 10:48:50 +0900 Subject: [PATCH 06/10] deps: Bump data.xml to 0.2.0-alpha9 --- deps.edn | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deps.edn b/deps.edn index 72fbb365..3108b803 100644 --- a/deps.edn +++ b/deps.edn @@ -1,9 +1,9 @@ {:paths ["src"] :deps {org.clojure/clojure {:mvn/version "1.11.1"} - org.clojure/data.xml {:mvn/version "0.2.0-alpha8"} org.clojure/data.zip {:mvn/version "1.0.0"} org.clojure/tools.cli {:mvn/version "1.0.219"} + org.clojure/data.xml {:mvn/version "0.2.0-alpha9"} org.clojure/core.async {:mvn/version "1.6.681"} org.clojure/tools.deps {:mvn/version "0.18.1398"} org.clojure/data.json {:mvn/version "2.5.0"} From 5e8ec359e38afe0e91db04ef53fdab7d70971dd3 Mon Sep 17 00:00:00 2001 From: liquidz Date: Fri, 23 Feb 2024 10:49:07 +0900 Subject: [PATCH 07/10] deps: Bump data.zip to 1.1.0 --- deps.edn | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deps.edn b/deps.edn index 3108b803..23b627b4 100644 --- a/deps.edn +++ b/deps.edn @@ -1,9 +1,9 @@ {:paths ["src"] :deps {org.clojure/clojure {:mvn/version "1.11.1"} - org.clojure/data.zip {:mvn/version "1.0.0"} org.clojure/tools.cli {:mvn/version "1.0.219"} org.clojure/data.xml {:mvn/version "0.2.0-alpha9"} + org.clojure/data.zip {:mvn/version "1.1.0"} org.clojure/core.async {:mvn/version "1.6.681"} org.clojure/tools.deps {:mvn/version "0.18.1398"} org.clojure/data.json {:mvn/version "2.5.0"} From 837fba4d0411c15f84132c98fae85ed15191661d Mon Sep 17 00:00:00 2001 From: liquidz Date: Fri, 23 Feb 2024 10:49:33 +0900 Subject: [PATCH 08/10] deps: Bump tools.cli to 1.1.230 --- deps.edn | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deps.edn b/deps.edn index 23b627b4..5ef17cd9 100644 --- a/deps.edn +++ b/deps.edn @@ -1,9 +1,9 @@ {:paths ["src"] :deps {org.clojure/clojure {:mvn/version "1.11.1"} - org.clojure/tools.cli {:mvn/version "1.0.219"} org.clojure/data.xml {:mvn/version "0.2.0-alpha9"} org.clojure/data.zip {:mvn/version "1.1.0"} + org.clojure/tools.cli {:mvn/version "1.1.230"} org.clojure/core.async {:mvn/version "1.6.681"} org.clojure/tools.deps {:mvn/version "0.18.1398"} org.clojure/data.json {:mvn/version "2.5.0"} From 79ad91f99b0c211af4e36fca283debbdadef0ccd Mon Sep 17 00:00:00 2001 From: liquidz Date: Fri, 23 Feb 2024 10:49:50 +0900 Subject: [PATCH 09/10] deps: Bump deep-diff2 to 2.11.216 --- deps.edn | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deps.edn b/deps.edn index 5ef17cd9..06dbea9f 100644 --- a/deps.edn +++ b/deps.edn @@ -26,7 +26,7 @@ "test/resources"] :extra-deps {metosin/malli {:mvn/version "0.14.0"} lambdaisland/kaocha {:mvn/version "1.87.1366"} - lambdaisland/deep-diff2 {:mvn/version "2.10.211"}} + lambdaisland/deep-diff2 {:mvn/version "2.11.216"}} :jvm-opts ["-Dclojure.core.async.go-checking=true"]} :nop From af616ca2e300c19ef60028f476cbacc167e6b516 Mon Sep 17 00:00:00 2001 From: liquidz Date: Fri, 23 Feb 2024 10:56:45 +0900 Subject: [PATCH 10/10] docs: Update CHANGELOG --- CHANGELOG.adoc | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/CHANGELOG.adoc b/CHANGELOG.adoc index 919e04a9..ec5f8e85 100644 --- a/CHANGELOG.adoc +++ b/CHANGELOG.adoc @@ -1,6 +1,18 @@ All notable changes to this project will be documented in this file. This change log follows the conventions of http://keepachangelog.com/[keepachangelog.com]. == Unreleased (dev) +// {{{ +=== Fixed +* https://github.com/liquidz/antq/pull/248[#248]: Updated github action thrird party detection to add babashka, clj-kondo, cljfmt, cljstyle, and zprint supports. +* https://github.com/liquidz/antq/pull/248[#248]: Fixed github action upgrader to support bb, clj-kondo, cljfmt, cljstyle, and zprint on setup-clojure action. + +=== Changed +* Bumped tools.cli to 1.1.230. +* Bumped data.zip to 1.1.0. +* Bumped data.xml to 0.2.0-alpha9. +* Bumped deep-diff2 to 2.11.216. +* Bumped malli to 0.14.0. +// }}} == 2.8.1173 (2024-01-10) // {{{