diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 70990a5..1ba2196 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -18,7 +18,7 @@ jobs: matrix: java: [ '8', '17'] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Setup Cache uses: actions/cache@v2 diff --git a/CHANGELOG.md b/CHANGELOG.md index 9b3ac15..29a49f0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,12 @@ commits since the beginning of this repository. ### Added ### Removed +## [5.7.171] + +### Changed + +- Update Sentry Java SDK to 5.7.0. + ## [5.6.170] ### Changed @@ -250,7 +256,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/5.6.170...HEAD +[Unreleased]: https://github.com/getsentry/sentry-clj/compare/5.7.171...HEAD +[5.7.171]: https://github.com/getsentry/sentry-clj/compare/5.6.170...5.7.171 [5.6.170]: https://github.com/getsentry/sentry-clj/compare/5.6.169...5.6.170 [5.6.169]: https://github.com/getsentry/sentry-clj/compare/5.6.166...5.6.169 [5.6.166]: https://github.com/getsentry/sentry-clj/compare/5.5.165...5.6.166 diff --git a/deps.edn b/deps.edn index 3fb9fce..0054556 100644 --- a/deps.edn +++ b/deps.edn @@ -4,23 +4,23 @@ ;; ;; ;; - io.sentry/sentry {:mvn/version "5.6.1"} + io.sentry/sentry {:mvn/version "5.7.0"} ring/ring-core {:mvn/version "1.9.5"}} - :aliases {:build {:deps {io.github.seancorfield/build-clj {:git/tag "v0.7.0" - :git/sha "5d2cb60"}} + :aliases {:build {:deps {io.github.seancorfield/build-clj {:git/tag "v0.8.0" + :git/sha "9bd8b8a"}} :ns-default scripts.build} :test {:extra-paths ["test"] :extra-deps {cheshire/cheshire {:mvn/version "5.10.2"} com.github.seancorfield/expectations {:mvn/version "2.0.157"} - lambdaisland/kaocha {:mvn/version "1.63.998"} + lambdaisland/kaocha {:mvn/version "1.64.1010"} lambdaisland/kaocha-cloverage {:mvn/version "1.0.75"} lambdaisland/kaocha-junit-xml {:mvn/version "0.0.76"} 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 "1.5.1"} + :antq {:replace-deps {com.github.liquidz/antq {:mvn/version "1.6.0"} org.slf4j/slf4j-nop {:mvn/version "1.7.36"}} :exec-fn antq.tool/outdated :exec-args {:directory ["."] diff --git a/examples/basic/deps.edn b/examples/basic/deps.edn index 7a5e286..d6e0bac 100644 --- a/examples/basic/deps.edn +++ b/examples/basic/deps.edn @@ -4,9 +4,9 @@ ;; ;; ;; - ch.qos.logback/logback-classic {:mvn/version "1.2.10"} - io.sentry/sentry {:mvn/version "5.6.1"} - io.sentry/sentry-clj {:mvn/version "5.6.170"} + ch.qos.logback/logback-classic {:mvn/version "1.2.11"} + io.sentry/sentry {:mvn/version "5.7.0"} + io.sentry/sentry-clj {:mvn/version "5.7.171"} org.clojure/tools.cli {:mvn/version "1.0.206"} org.clojure/tools.logging {:mvn/version "1.2.4"} org.slf4j/jcl-over-slf4j {:mvn/version "1.7.36"} diff --git a/examples/uncaught/deps.edn b/examples/uncaught/deps.edn index 81d5013..d6e0bac 100644 --- a/examples/uncaught/deps.edn +++ b/examples/uncaught/deps.edn @@ -4,9 +4,9 @@ ;; ;; ;; - ch.qos.logback/logback-classic {:mvn/version "1.2.10"} - io.sentry/sentry {:mvn/version "5.6.1"} - io.sentry/sentry-clj {:mvn/version "5.6.169"} + ch.qos.logback/logback-classic {:mvn/version "1.2.11"} + io.sentry/sentry {:mvn/version "5.7.0"} + io.sentry/sentry-clj {:mvn/version "5.7.171"} org.clojure/tools.cli {:mvn/version "1.0.206"} org.clojure/tools.logging {:mvn/version "1.2.4"} org.slf4j/jcl-over-slf4j {:mvn/version "1.7.36"} diff --git a/scripts/build.clj b/scripts/build.clj index 790b418..75dd0da 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 "5.6.%s" (b/git-count-revs nil))) +(def ^:private version (format "5.7.%s" (b/git-count-revs nil))) (def ^:private library 'io.sentry/sentry-clj) (defn run-tests diff --git a/src/sentry_clj/core.clj b/src/sentry_clj/core.clj index ee019cf..5e06bea 100644 --- a/src/sentry_clj/core.clj +++ b/src/sentry_clj/core.clj @@ -255,7 +255,7 @@ ([dsn {:keys [contexts] :as config}] {:pre [(not (blank? dsn))]} (let [options (sentry-options dsn config)] - (Sentry/init options) + (Sentry/init ^SentryOptions options) (when contexts (Sentry/configureScope (reify io.sentry.ScopeCallback (run [_ scope]