Skip to content

Commit d616be9

Browse files
committed
Update Sentry Java SDK to 6.4.1.
-=david=-
1 parent 530c4ac commit d616be9

5 files changed

Lines changed: 27 additions & 22 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ endeavour to be non-breaking (by moving to new names rather than by
1010
breaking existing names). COMMITS is an ever-increasing counter of
1111
commits since the beginning of this repository.
1212

13+
## [6.4.183]
14+
15+
- Update Sentry Java SDK to 6.4.1.
16+
1317
## [6.4.182]
1418

1519
- Update Sentry Java SDK to 6.4.0.
@@ -293,7 +297,8 @@ commits since the beginning of this repository.
293297
compatible with Sentry 10.0.1 and below. If you wish to use those
294298
versions, please continue to use sentry-clj 1.7.30.
295299

296-
[Unreleased]: https://github.com/getsentry/sentry-clj/compare/6.4.182...HEAD
300+
[Unreleased]: https://github.com/getsentry/sentry-clj/compare/6.4.183...HEAD
301+
[6.4.183]: https://github.com/getsentry/sentry-clj/compare/6.3.182...6.4.183
297302
[6.4.182]: https://github.com/getsentry/sentry-clj/compare/6.3.181...6.4.182
298303
[6.3.181]: https://github.com/getsentry/sentry-clj/compare/5.7.180...6.3.181
299304
[5.7.180]: https://github.com/getsentry/sentry-clj/compare/5.7.178...5.7.180

deps.edn

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
;;
55
;;
66
;;
7-
io.sentry/sentry {:mvn/version "6.4.0"}
7+
io.sentry/sentry {:mvn/version "6.4.1"}
88
ring/ring-core {:mvn/version "1.9.5"}}
99

1010
:aliases {:build {:deps {io.github.seancorfield/build-clj {:git/tag "v0.8.3"
@@ -19,8 +19,8 @@
1919
orchestra/orchestra {:mvn/version "2021.01.01-1"}
2020
org.clojure/test.check {:mvn/version "1.1.1"}}}
2121

22-
:antq {:replace-deps {com.github.liquidz/antq {:mvn/version "2.0.889"}
23-
org.slf4j/slf4j-nop {:mvn/version "1.7.36"}}
22+
:antq {:replace-deps {com.github.liquidz/antq {:mvn/version "2.0.895"}
23+
org.slf4j/slf4j-nop {:mvn/version "2.0.0"}}
2424
:exec-fn antq.tool/outdated
2525
:exec-args {:skip ["pom"]
2626
:verbose true

examples/basic/deps.edn

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
;;
55
;;
66
;;
7-
ch.qos.logback/logback-classic {:mvn/version "1.2.11"}
8-
io.sentry/sentry {:mvn/version "6.4.0"}
7+
ch.qos.logback/logback-classic {:mvn/version "1.4.0"}
8+
io.sentry/sentry {:mvn/version "6.4.1"}
99
io.sentry/sentry-clj {:local/root "../../../sentry-clj"}
1010
org.clojure/tools.cli {:mvn/version "1.0.206"}
1111
org.clojure/tools.logging {:mvn/version "1.2.4"}
12-
org.slf4j/jcl-over-slf4j {:mvn/version "1.7.36"}
13-
org.slf4j/jul-to-slf4j {:mvn/version "1.7.36"}
14-
org.slf4j/log4j-over-slf4j {:mvn/version "1.7.36"}
15-
org.slf4j/slf4j-api {:mvn/version "1.7.36"}}}
12+
org.slf4j/jcl-over-slf4j {:mvn/version "2.0.0"}
13+
org.slf4j/jul-to-slf4j {:mvn/version "2.0.0"}
14+
org.slf4j/log4j-over-slf4j {:mvn/version "2.0.0"}
15+
org.slf4j/slf4j-api {:mvn/version "2.0.0"}}}

examples/ring_with_tracing/deps.edn

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,17 @@
44
;;
55
;;
66
;;
7-
ch.qos.logback/logback-classic {:mvn/version "1.2.11"}
7+
ch.qos.logback/logback-classic {:mvn/version "1.4.0"}
88
integrant/integrant {:mvn/version "0.8.0"}
99
integrant/repl {:mvn/version "0.3.2"}
10-
io.sentry/sentry {:mvn/version "6.4.0"}
10+
io.sentry/sentry {:mvn/version "6.4.1"}
1111
io.sentry/sentry-clj {:local/root "../../../sentry-clj"}
1212
org.clojure/tools.cli {:mvn/version "1.0.206"}
1313
org.clojure/tools.logging {:mvn/version "1.2.4"}
14-
org.slf4j/jcl-over-slf4j {:mvn/version "1.7.36"}
15-
org.slf4j/jul-to-slf4j {:mvn/version "1.7.36"}
16-
org.slf4j/log4j-over-slf4j {:mvn/version "1.7.36"}
17-
org.slf4j/slf4j-api {:mvn/version "1.7.36"}
14+
org.slf4j/jcl-over-slf4j {:mvn/version "2.0.0"}
15+
org.slf4j/jul-to-slf4j {:mvn/version "2.0.0"}
16+
org.slf4j/log4j-over-slf4j {:mvn/version "2.0.0"}
17+
org.slf4j/slf4j-api {:mvn/version "2.0.0"}
1818
ring/ring-core {:mvn/version "1.9.5"}
1919
ring/ring-jetty-adapter {:mvn/version "1.9.5"}
2020
ring/ring-json {:mvn/version "0.5.1"}}}

examples/uncaught/deps.edn

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
;;
55
;;
66
;;
7-
ch.qos.logback/logback-classic {:mvn/version "1.2.11"}
8-
io.sentry/sentry {:mvn/version "6.4.0"}
7+
ch.qos.logback/logback-classic {:mvn/version "1.4.0"}
8+
io.sentry/sentry {:mvn/version "6.4.1"}
99
io.sentry/sentry-clj {:local/root "../../../sentry-clj"}
1010
org.clojure/tools.cli {:mvn/version "1.0.206"}
1111
org.clojure/tools.logging {:mvn/version "1.2.4"}
12-
org.slf4j/jcl-over-slf4j {:mvn/version "1.7.36"}
13-
org.slf4j/jul-to-slf4j {:mvn/version "1.7.36"}
14-
org.slf4j/log4j-over-slf4j {:mvn/version "1.7.36"}
15-
org.slf4j/slf4j-api {:mvn/version "1.7.36"}}}
12+
org.slf4j/jcl-over-slf4j {:mvn/version "2.0.0"}
13+
org.slf4j/jul-to-slf4j {:mvn/version "2.0.0"}
14+
org.slf4j/log4j-over-slf4j {:mvn/version "2.0.0"}
15+
org.slf4j/slf4j-api {:mvn/version "2.0.0"}}}

0 commit comments

Comments
 (0)