Skip to content

Commit 4e975ac

Browse files
committed
Update Sentry Java SDK to 7.16.0
-=david=-
1 parent 71ca0ac commit 4e975ac

File tree

6 files changed

+18
-13
lines changed

6 files changed

+18
-13
lines changed

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+
## [7.16.219]
14+
15+
- Update Sentry Java SDK to 7.16.0
16+
1317
## [7.15.218]
1418

1519
- Update Sentry Java SDK to 7.15.0
@@ -414,7 +418,8 @@ commits since the beginning of this repository.
414418
compatible with Sentry 10.0.1 and below. If you wish to use those
415419
versions, please continue to use sentry-clj 1.7.30.
416420

417-
[Unreleased]: https://github.com/getsentry/sentry-clj/compare/7.15.218...HEAD
421+
[Unreleased]: https://github.com/getsentry/sentry-clj/compare/7.16.219...HEAD
422+
[7.16.219]: https://github.com/getsentry/sentry-clj/compare/7.15.218...7.16.219
418423
[7.15.218]: https://github.com/getsentry/sentry-clj/compare/7.11.216...7.15.218
419424
[7.11.216]: https://github.com/getsentry/sentry-clj/compare/7.6.215...7.11.216
420425
[7.6.215]: https://github.com/getsentry/sentry-clj/compare/7.4.213...7.6.215

deps.edn

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
;;
55
;;
66
;;
7-
io.sentry/sentry {:mvn/version "7.15.0"}
8-
ring/ring-core {:mvn/version "1.12.2"}}
7+
io.sentry/sentry {:mvn/version "7.16.0"}
8+
ring/ring-core {:mvn/version "1.13.0"}}
99

1010
:aliases {:build {:extra-deps {io.github.clojure/tools.build {:mvn/version "0.10.5"}
1111
slipset/deps-deploy {:mvn/version "0.2.2"}}

examples/basic/deps.edn

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
;;
55
;;
66
;;
7-
ch.qos.logback/logback-classic {:mvn/version "1.5.10"}
8-
io.sentry/sentry {:mvn/version "7.15.0"}
7+
ch.qos.logback/logback-classic {:mvn/version "1.5.12"}
8+
io.sentry/sentry {:mvn/version "7.16.0"}
99
io.sentry/sentry-clj {:local/root "../../../sentry-clj"}
1010
org.clojure/tools.cli {:mvn/version "1.1.230"}
1111
org.clojure/tools.logging {:mvn/version "1.3.0"}

examples/ring_with_tracing/deps.edn

Lines changed: 5 additions & 5 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.5.10"}
8-
integrant/integrant {:mvn/version "0.13.0"}
7+
ch.qos.logback/logback-classic {:mvn/version "1.5.12"}
8+
integrant/integrant {:mvn/version "0.13.1"}
99
integrant/repl {:mvn/version "0.3.3"}
10-
io.sentry/sentry {:mvn/version "7.15.0"}
10+
io.sentry/sentry {:mvn/version "7.16.0"}
1111
io.sentry/sentry-clj {:local/root "../../../sentry-clj"}
1212
org.clojure/tools.cli {:mvn/version "1.1.230"}
1313
org.clojure/tools.logging {:mvn/version "1.3.0"}
1414
org.slf4j/jcl-over-slf4j {:mvn/version "2.0.16"}
1515
org.slf4j/jul-to-slf4j {:mvn/version "2.0.16"}
1616
org.slf4j/log4j-over-slf4j {:mvn/version "2.0.16"}
1717
org.slf4j/slf4j-api {:mvn/version "2.0.16"}
18-
ring/ring-core {:mvn/version "1.12.2"}
19-
ring/ring-jetty-adapter {:mvn/version "1.12.2"}
18+
ring/ring-core {:mvn/version "1.13.0"}
19+
ring/ring-jetty-adapter {:mvn/version "1.13.0"}
2020
ring/ring-json {:mvn/version "0.5.1"}}}

examples/uncaught/deps.edn

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
;;
55
;;
66
;;
7-
ch.qos.logback/logback-classic {:mvn/version "1.5.10"}
8-
io.sentry/sentry {:mvn/version "7.15.0"}
7+
ch.qos.logback/logback-classic {:mvn/version "1.5.12"}
8+
io.sentry/sentry {:mvn/version "7.16.0"}
99
io.sentry/sentry-clj {:local/root "../../../sentry-clj"}
1010
org.clojure/tools.cli {:mvn/version "1.1.230"}
1111
org.clojure/tools.logging {:mvn/version "1.3.0"}

scripts/build.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
(defn ^:private the-version
99
[patch]
10-
(format "7.15.%s" patch))
10+
(format "7.16.%s" patch))
1111

1212
(defn ^:private pom-template
1313
[tag]

0 commit comments

Comments
 (0)