diff --git a/CHANGELOG.md b/CHANGELOG.md index 3443831..65b841d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,11 @@ endeavour to be non-breaking (by moving to new names rather than by breaking existing names). COMMITS is an ever-increasing counter of commits since the beginning of this repository. +## [6.24.198] + +- Update Sentry Java SDK to 6.24.0 +- Allow setting logger & diagnostic level (Thanks @gpind) + ## [6.21.196] - Update Sentry Java SDK to 6.21.0 @@ -352,7 +357,8 @@ commits since the beginning of this repository. compatible with Sentry 10.0.1 and below. If you wish to use those versions, please continue to use sentry-clj 1.7.30. -[Unreleased]: https://github.com/getsentry/sentry-clj/compare/6.21.196...HEAD +[Unreleased]: https://github.com/getsentry/sentry-clj/compare/6.24.198...HEAD +[6.24.198]: https://github.com/getsentry/sentry-clj/compare/6.21.196...6.24.198 [6.21.196]: https://github.com/getsentry/sentry-clj/compare/6.19.195...6.21.196 [6.19.195]: https://github.com/getsentry/sentry-clj/compare/6.18.194...6.19.195 [6.18.194]: https://github.com/getsentry/sentry-clj/compare/6.17.193...6.18.194 diff --git a/deps.edn b/deps.edn index 0092969..71a6978 100644 --- a/deps.edn +++ b/deps.edn @@ -4,7 +4,7 @@ ;; ;; ;; - io.sentry/sentry {:mvn/version "6.21.0"} + io.sentry/sentry {:mvn/version "6.24.0"} ring/ring-core {:mvn/version "1.10.0"}} :aliases {:build {:deps {io.github.seancorfield/build-clj {:git/tag "v0.9.2" @@ -14,12 +14,12 @@ :test {:extra-paths ["test"] :extra-deps {cheshire/cheshire {:mvn/version "5.11.0"} com.github.seancorfield/expectations {:mvn/version "2.0.165"} - lambdaisland/kaocha {:mvn/version "1.84.1335"} + lambdaisland/kaocha {:mvn/version "1.85.1342"} lambdaisland/kaocha-junit-xml {:mvn/version "1.17.101"} orchestra/orchestra {:mvn/version "2021.01.01-1"} org.clojure/test.check {:mvn/version "1.1.1"}}} - :antq {:replace-deps {com.github.liquidz/antq {:mvn/version "2.4.1070"} + :antq {:replace-deps {com.github.liquidz/antq {:mvn/version "2.5.1095"} org.slf4j/slf4j-nop {:mvn/version "2.0.7"}} :exec-fn antq.tool/outdated :exec-args {:skip ["pom"] diff --git a/examples/basic/deps.edn b/examples/basic/deps.edn index b6f60b7..99b873c 100644 --- a/examples/basic/deps.edn +++ b/examples/basic/deps.edn @@ -4,8 +4,8 @@ ;; ;; ;; - ch.qos.logback/logback-classic {:mvn/version "1.4.7"} - io.sentry/sentry {:mvn/version "6.21.0"} + ch.qos.logback/logback-classic {:mvn/version "1.4.8"} + io.sentry/sentry {:mvn/version "6.24.0"} io.sentry/sentry-clj {:local/root "../../../sentry-clj"} org.clojure/tools.cli {:mvn/version "1.0.219"} org.clojure/tools.logging {:mvn/version "1.2.4"} diff --git a/examples/ring_with_tracing/deps.edn b/examples/ring_with_tracing/deps.edn index 34f8c38..4a23e10 100644 --- a/examples/ring_with_tracing/deps.edn +++ b/examples/ring_with_tracing/deps.edn @@ -4,10 +4,10 @@ ;; ;; ;; - ch.qos.logback/logback-classic {:mvn/version "1.4.7"} + ch.qos.logback/logback-classic {:mvn/version "1.4.8"} integrant/integrant {:mvn/version "0.8.1"} integrant/repl {:mvn/version "0.3.2"} - io.sentry/sentry {:mvn/version "6.21.0"} + io.sentry/sentry {:mvn/version "6.24.0"} io.sentry/sentry-clj {:local/root "../../../sentry-clj"} org.clojure/tools.cli {:mvn/version "1.0.219"} org.clojure/tools.logging {:mvn/version "1.2.4"} diff --git a/examples/uncaught/deps.edn b/examples/uncaught/deps.edn index b6f60b7..99b873c 100644 --- a/examples/uncaught/deps.edn +++ b/examples/uncaught/deps.edn @@ -4,8 +4,8 @@ ;; ;; ;; - ch.qos.logback/logback-classic {:mvn/version "1.4.7"} - io.sentry/sentry {:mvn/version "6.21.0"} + ch.qos.logback/logback-classic {:mvn/version "1.4.8"} + io.sentry/sentry {:mvn/version "6.24.0"} io.sentry/sentry-clj {:local/root "../../../sentry-clj"} org.clojure/tools.cli {:mvn/version "1.0.219"} org.clojure/tools.logging {:mvn/version "1.2.4"} diff --git a/scripts/build.clj b/scripts/build.clj index 75273ec..176b06b 100644 --- a/scripts/build.clj +++ b/scripts/build.clj @@ -3,7 +3,7 @@ [clojure.tools.build.api :as b] [org.corfield.build :as bb])) -(def ^:private version (format "6.21.%s" (b/git-count-revs nil))) +(def ^:private version (format "6.24.%s" (b/git-count-revs nil))) (def ^:private library 'io.sentry/sentry-clj) (defn run-tests