Skip to content

Commit

Permalink
Update Sentry Java SDK to 7.18.0
Browse files Browse the repository at this point in the history
-=david=-
  • Loading branch information
dharrigan committed Nov 28, 2024
1 parent 5dca07d commit b333b01
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 10 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@ endeavour to be non-breaking (by moving to new names rather than by
breaking existing names). COMMITS is an ever-increasing counter of
commits since the beginning of this repository.

## [7.18.221]

- Update Sentry Java SDK to 7.18.0
- Ensure all keywords are stringified. Thanks @sjamaan!

## [7.16.219]

- Update Sentry Java SDK to 7.16.0
Expand Down Expand Up @@ -418,7 +423,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/7.16.219...HEAD
[Unreleased]: https://github.com/getsentry/sentry-clj/compare/7.18.221...HEAD
[7.18.221]: https://github.com/getsentry/sentry-clj/compare/7.16.219...7.18.221
[7.16.219]: https://github.com/getsentry/sentry-clj/compare/7.15.218...7.16.219
[7.15.218]: https://github.com/getsentry/sentry-clj/compare/7.11.216...7.15.218
[7.11.216]: https://github.com/getsentry/sentry-clj/compare/7.6.215...7.11.216
Expand Down
8 changes: 4 additions & 4 deletions deps.edn
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,22 @@
;;
;;
;;
io.sentry/sentry {:mvn/version "7.16.0"}
io.sentry/sentry {:mvn/version "7.18.0"}
ring/ring-core {:mvn/version "1.13.0"}}

:aliases {:build {:extra-deps {io.github.clojure/tools.build {:mvn/version "0.10.5"}
:aliases {:build {:extra-deps {io.github.clojure/tools.build {:mvn/version "0.10.6"}
slipset/deps-deploy {:mvn/version "0.2.2"}}
:ns-default scripts.build}

:test {:extra-paths ["test"]
:extra-deps {cheshire/cheshire {:mvn/version "5.13.0"}
com.github.seancorfield/expectations {:mvn/version "2.1.201"}
com.github.seancorfield/expectations {:mvn/version "2.1.208"}
lambdaisland/kaocha {:mvn/version "1.91.1392"}
lambdaisland/kaocha-junit-xml {:mvn/version "1.17.101"}
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 "2.10.1241"}
:antq {:replace-deps {com.github.liquidz/antq {:mvn/version "2.11.1250"}
org.slf4j/slf4j-nop {:mvn/version "2.0.16"}}
:replace-paths ["."]
:exec-fn antq.tool/outdated
Expand Down
2 changes: 1 addition & 1 deletion examples/basic/deps.edn
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
;;
;;
ch.qos.logback/logback-classic {:mvn/version "1.5.12"}
io.sentry/sentry {:mvn/version "7.16.0"}
io.sentry/sentry {:mvn/version "7.18.0"}
io.sentry/sentry-clj {:local/root "../../../sentry-clj"}
org.clojure/tools.cli {:mvn/version "1.1.230"}
org.clojure/tools.logging {:mvn/version "1.3.0"}
Expand Down
4 changes: 2 additions & 2 deletions examples/ring_with_tracing/deps.edn
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
;;
ch.qos.logback/logback-classic {:mvn/version "1.5.12"}
integrant/integrant {:mvn/version "0.13.1"}
integrant/repl {:mvn/version "0.3.3"}
io.sentry/sentry {:mvn/version "7.16.0"}
integrant/repl {:mvn/version "0.4.0"}
io.sentry/sentry {:mvn/version "7.18.0"}
io.sentry/sentry-clj {:local/root "../../../sentry-clj"}
org.clojure/tools.cli {:mvn/version "1.1.230"}
org.clojure/tools.logging {:mvn/version "1.3.0"}
Expand Down
2 changes: 1 addition & 1 deletion examples/uncaught/deps.edn
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
;;
;;
ch.qos.logback/logback-classic {:mvn/version "1.5.12"}
io.sentry/sentry {:mvn/version "7.16.0"}
io.sentry/sentry {:mvn/version "7.18.0"}
io.sentry/sentry-clj {:local/root "../../../sentry-clj"}
org.clojure/tools.cli {:mvn/version "1.1.230"}
org.clojure/tools.logging {:mvn/version "1.3.0"}
Expand Down
2 changes: 1 addition & 1 deletion scripts/build.clj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

(defn ^:private the-version
[patch]
(format "7.16.%s" patch))
(format "7.18.%s" patch))

(defn ^:private pom-template
[tag]
Expand Down

0 comments on commit b333b01

Please sign in to comment.