Skip to content

Commit

Permalink
Update Sentry Java SDK to 5.7.0
Browse files Browse the repository at this point in the history
-=david=-
  • Loading branch information
dharrigan committed Mar 17, 2022
1 parent a4ef992 commit 357f775
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
10 changes: 5 additions & 5 deletions deps.edn
Original file line number Diff line number Diff line change
Expand Up @@ -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 ["."]
Expand Down
6 changes: 3 additions & 3 deletions examples/basic/deps.edn
Original file line number Diff line number Diff line change
Expand Up @@ -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"}
Expand Down
6 changes: 3 additions & 3 deletions examples/uncaught/deps.edn
Original file line number Diff line number Diff line change
Expand Up @@ -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"}
Expand Down
2 changes: 1 addition & 1 deletion scripts/build.clj
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/sentry_clj/core.clj
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down

0 comments on commit 357f775

Please sign in to comment.