Skip to content

Commit 4441d08

Browse files
committed
Update Sentry Java SDK to 5.5.0
1 parent d9bfc98 commit 4441d08

File tree

5 files changed

+16
-9
lines changed

5 files changed

+16
-9
lines changed

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,12 @@ commits since the beginning of this repository.
1616
### Added
1717
### Removed
1818

19+
## [5.5.162]
20+
21+
### Changed
22+
23+
- Update Sentry Java SDK to 5.5.0
24+
1925
## [5.4.161]
2026

2127
### Changed
@@ -198,7 +204,8 @@ commits since the beginning of this repository.
198204
compatible with Sentry 10.0.1 and below. If you wish to use those
199205
versions, please continue to use sentry-clj 1.7.30.
200206

201-
[Unreleased]: https://github.com/getsentry/sentry-clj/compare/5.4.161...HEAD
207+
[Unreleased]: https://github.com/getsentry/sentry-clj/compare/5.5.162...HEAD
208+
[5.5.162]: https://github.com/getsentry/sentry-clj/compare/5.4.160...5.5.162
202209
[5.4.161]: https://github.com/getsentry/sentry-clj/compare/5.4.160...5.4.161
203210
[5.4.160]: https://github.com/getsentry/sentry-clj/compare/5.3.159...5.4.160
204211
[5.3.159]: https://github.com/getsentry/sentry-clj/compare/5.2.158...5.3.159

deps.edn

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22

33
:deps {org.clojure/clojure {:mvn/version "1.10.3"}
44

5-
io.sentry/sentry {:mvn/version "5.4.3"}
5+
io.sentry/sentry {:mvn/version "5.5.0"}
66
ring/ring-core {:mvn/version "1.9.4"}}
77

8-
:aliases {:build {:deps {io.github.seancorfield/build-clj {:git/tag "v0.6.1"
9-
:git/sha "6e962ef"}}
8+
:aliases {:build {:deps {io.github.seancorfield/build-clj {:git/tag "v0.6.3"
9+
:git/sha "9b8e09b"}}
1010
:ns-default scripts.build}
1111

1212
:test {:extra-paths ["test"]

examples/basic/deps.edn

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
:deps {org.clojure/clojure {:mvn/version "1.10.3"}
44

55
ch.qos.logback/logback-classic {:mvn/version "1.2.7"}
6-
io.sentry/sentry {:mvn/version "5.4.3"}
7-
io.sentry/sentry-clj {:mvn/version "5.4.161"}
6+
io.sentry/sentry {:mvn/version "5.5.0"}
7+
io.sentry/sentry-clj {:mvn/version "5.5.162"}
88
org.clojure/tools.cli {:mvn/version "1.0.206"}
99
org.clojure/tools.logging {:mvn/version "1.2.1"}
1010
org.slf4j/jcl-over-slf4j {:mvn/version "1.7.32"}

examples/uncaught/deps.edn

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
:deps {org.clojure/clojure {:mvn/version "1.10.3"}
44

55
ch.qos.logback/logback-classic {:mvn/version "1.2.7"}
6-
io.sentry/sentry {:mvn/version "5.4.3"}
7-
io.sentry/sentry-clj {:mvn/version "5.4.161"}
6+
io.sentry/sentry {:mvn/version "5.5.0"}
7+
io.sentry/sentry-clj {:mvn/version "5.5.162"}
88
org.clojure/tools.cli {:mvn/version "1.0.206"}
99
org.clojure/tools.logging {:mvn/version "1.2.1"}
1010
org.slf4j/jcl-over-slf4j {:mvn/version "1.7.32"}

scripts/build.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[clojure.tools.build.api :as b]
44
[org.corfield.build :as bb]))
55

6-
(def ^:private version (format "5.4.%s" (b/git-count-revs nil)))
6+
(def ^:private version (format "5.5.%s" (b/git-count-revs nil)))
77
(def ^:private library 'io.sentry/sentry-clj)
88

99
(defn run-tests

0 commit comments

Comments
 (0)