Skip to content

Commit 21c6b0d

Browse files
committed
Update Sentry Java SDK to 8.21.1
-=david=-
1 parent 4eea1a3 commit 21c6b0d

File tree

7 files changed

+31
-12
lines changed

7 files changed

+31
-12
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+
## [8.21.232]
14+
15+
- Update Sentry Java SDK to 8.21.1
16+
1317
## [8.20.229]
1418

1519
- Grab cookie header from the map of request headers. Fixes #70
@@ -452,7 +456,8 @@ commits since the beginning of this repository.
452456
compatible with Sentry 10.0.1 and below. If you wish to use those
453457
versions, please continue to use sentry-clj 1.7.30.
454458

455-
[Unreleased]: https://github.com/getsentry/sentry-clj/compare/8.20.229...HEAD
459+
[Unreleased]: https://github.com/getsentry/sentry-clj/compare/8.21.232...HEAD
460+
[8.21.232]: https://github.com/getsentry/sentry-clj/compare/8.20.229...8.21.232
456461
[8.20.229]: https://github.com/getsentry/sentry-clj/compare/8.20.228...8.20.229
457462
[8.20.228]: https://github.com/getsentry/sentry-clj/compare/7.22.227...8.20.228
458463
[7.22.227]: https://github.com/getsentry/sentry-clj/compare/7.20.226...7.22.227

deps.edn

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
;;
55
;;
66
;;
7-
io.sentry/sentry {:mvn/version "8.20.0"}
7+
io.sentry/sentry {:mvn/version "8.21.1"}
88
ring/ring-core {:mvn/version "1.14.2"}}
99

1010
:aliases {:build {:extra-deps {io.github.clojure/tools.build {:mvn/version "0.10.10"}
@@ -37,4 +37,7 @@
3737
:main-opts ["-m" "cljfmt.main" "check"]}
3838

3939
:fix {:replace-deps {dev.weavejester/cljfmt {:mvn/version "0.13.1"}}
40-
:main-opts ["-m" "cljfmt.main" "fix"]}}}
40+
:main-opts ["-m" "cljfmt.main" "fix"]}}
41+
42+
:mvn/repos {"central" {:url "https://repo1.maven.org/maven2/" :releases {:update :always}}
43+
"clojars" {:url "https://repo.clojars.org/" :releases {:update :always}}}}

examples/basic/deps.edn

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
:deps {org.clojure/clojure {:mvn/version "1.12.2"}
44
;;
55
ch.qos.logback/logback-classic {:mvn/version "1.5.18"}
6-
io.sentry/sentry {:mvn/version "8.20.0"}
6+
io.sentry/sentry {:mvn/version "8.21.1"}
77
io.sentry/sentry-clj {:local/root "../../../sentry-clj"}
88
org.clojure/tools.cli {:mvn/version "1.1.230"}
99
org.clojure/tools.logging {:mvn/version "1.3.0"}
@@ -23,4 +23,7 @@
2323
:force true
2424
:no-changes true
2525
:upgrade true
26-
:verbose true}}}}
26+
:verbose true}}}
27+
28+
:mvn/repos {"central" {:url "https://repo1.maven.org/maven2/" :releases {:update :always}}
29+
"clojars" {:url "https://repo.clojars.org/" :releases {:update :always}}}}

examples/deps.edn

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,7 @@
1414
:force true
1515
:no-changes true
1616
:upgrade true
17-
:verbose true}}}}
17+
:verbose true}}}
18+
19+
:mvn/repos {"central" {:url "https://repo1.maven.org/maven2/" :releases {:update :always}}
20+
"clojars" {:url "https://repo.clojars.org/" :releases {:update :always}}}}

examples/ring_with_tracing/deps.edn

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
;;
55
ch.qos.logback/logback-classic {:mvn/version "1.5.18"}
66
integrant/integrant {:mvn/version "0.13.1"}
7-
io.sentry/sentry {:mvn/version "8.20.0"}
7+
io.sentry/sentry {:mvn/version "8.21.1"}
88
io.sentry/sentry-clj {:local/root "../../../sentry-clj"}
99
org.clojure/tools.cli {:mvn/version "1.1.230"}
1010
org.clojure/tools.logging {:mvn/version "1.3.0"}
@@ -27,6 +27,8 @@
2727
:exec-args {:download true
2828
:force true
2929
:no-changes true
30-
:skip ["pom"]
3130
:upgrade true
32-
:verbose true}}}}
31+
:verbose true}}}
32+
33+
:mvn/repos {"central" {:url "https://repo1.maven.org/maven2/" :releases {:update :always}}
34+
"clojars" {:url "https://repo.clojars.org/" :releases {:update :always}}}}

examples/uncaught/deps.edn

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
:deps {org.clojure/clojure {:mvn/version "1.12.2"}
44
;;
55
ch.qos.logback/logback-classic {:mvn/version "1.5.18"}
6-
io.sentry/sentry {:mvn/version "8.20.0"}
6+
io.sentry/sentry {:mvn/version "8.21.1"}
77
io.sentry/sentry-clj {:local/root "../../../sentry-clj"}
88
org.clojure/tools.cli {:mvn/version "1.1.230"}
99
org.clojure/tools.logging {:mvn/version "1.3.0"}
@@ -23,4 +23,7 @@
2323
:force true
2424
:no-changes true
2525
:upgrade true
26-
:verbose true}}}}
26+
:verbose true}}}
27+
28+
:mvn/repos {"central" {:url "https://repo1.maven.org/maven2/" :releases {:update :always}}
29+
"clojars" {:url "https://repo.clojars.org/" :releases {:update :always}}}}

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 "8.20.%s" patch))
10+
(format "8.21.%s" patch))
1111

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

0 commit comments

Comments
 (0)