diff --git a/CHANGELOG.md b/CHANGELOG.md index d56a5a2..720c8f0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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.223] + +- Update Sentry Java SDK to 7.18.1 +- Convert outer maps into HashMap. Thanks @sjamaan! + ## [7.18.221] - Update Sentry Java SDK to 7.18.0 @@ -423,7 +428,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.18.221...HEAD +[Unreleased]: https://github.com/getsentry/sentry-clj/compare/7.18.223...HEAD +[7.18.223]: https://github.com/getsentry/sentry-clj/compare/7.18.221...7.18.223 [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 diff --git a/deps.edn b/deps.edn index f5ca4c4..dd59961 100644 --- a/deps.edn +++ b/deps.edn @@ -4,7 +4,7 @@ ;; ;; ;; - io.sentry/sentry {:mvn/version "7.18.0"} + io.sentry/sentry {:mvn/version "7.18.1"} ring/ring-core {:mvn/version "1.13.0"}} :aliases {:build {:extra-deps {io.github.clojure/tools.build {:mvn/version "0.10.6"} diff --git a/examples/basic/deps.edn b/examples/basic/deps.edn index 6658581..029db7e 100644 --- a/examples/basic/deps.edn +++ b/examples/basic/deps.edn @@ -5,7 +5,7 @@ ;; ;; ch.qos.logback/logback-classic {:mvn/version "1.5.12"} - io.sentry/sentry {:mvn/version "7.18.0"} + io.sentry/sentry {:mvn/version "7.18.1"} 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"} diff --git a/examples/ring_with_tracing/deps.edn b/examples/ring_with_tracing/deps.edn index 9fdfb4f..9aa047a 100644 --- a/examples/ring_with_tracing/deps.edn +++ b/examples/ring_with_tracing/deps.edn @@ -7,7 +7,7 @@ ch.qos.logback/logback-classic {:mvn/version "1.5.12"} integrant/integrant {:mvn/version "0.13.1"} integrant/repl {:mvn/version "0.4.0"} - io.sentry/sentry {:mvn/version "7.18.0"} + io.sentry/sentry {:mvn/version "7.18.1"} 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"} diff --git a/examples/uncaught/deps.edn b/examples/uncaught/deps.edn index 6658581..029db7e 100644 --- a/examples/uncaught/deps.edn +++ b/examples/uncaught/deps.edn @@ -5,7 +5,7 @@ ;; ;; ch.qos.logback/logback-classic {:mvn/version "1.5.12"} - io.sentry/sentry {:mvn/version "7.18.0"} + io.sentry/sentry {:mvn/version "7.18.1"} 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"}