Skip to content

Commit

Permalink
Update Sentry Java SDK to 7.15.0
Browse files Browse the repository at this point in the history
Added "flush-events". Thanks @Gwonwoo-Nam!
Bump dependencies

-=david=-
  • Loading branch information
dharrigan committed Oct 13, 2024
1 parent c0b43d8 commit 71ca0ac
Show file tree
Hide file tree
Showing 7 changed files with 37 additions and 30 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@ 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.15.218]

- Update Sentry Java SDK to 7.15.0
- Added "flush-events". Thanks @Gwonwoo-Nam!
- Bump dependencies

## [7.11.216]

- Update Sentry Java SDK to 7.11.0
Expand Down Expand Up @@ -408,7 +414,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.11.216...HEAD
[Unreleased]: https://github.com/getsentry/sentry-clj/compare/7.15.218...HEAD
[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
[7.6.215]: https://github.com/getsentry/sentry-clj/compare/7.4.213...7.6.215
[7.4.213]: https://github.com/getsentry/sentry-clj/compare/7.2.211...7.4.213
Expand Down
10 changes: 5 additions & 5 deletions deps.edn
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{:paths ["src"]

:deps {org.clojure/clojure {:mvn/version "1.11.3"}
:deps {org.clojure/clojure {:mvn/version "1.12.0"}
;;
;;
;;
io.sentry/sentry {:mvn/version "7.11.0"}
io.sentry/sentry {:mvn/version "7.15.0"}
ring/ring-core {:mvn/version "1.12.2"}}

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

Expand All @@ -19,8 +19,8 @@
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.8.1201"}
org.slf4j/slf4j-nop {:mvn/version "2.0.13"}}
:antq {:replace-deps {com.github.liquidz/antq {:mvn/version "2.10.1241"}
org.slf4j/slf4j-nop {:mvn/version "2.0.16"}}
:replace-paths ["."]
:exec-fn antq.tool/outdated
:exec-args {:skip ["pom"]
Expand Down
14 changes: 7 additions & 7 deletions examples/basic/deps.edn
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{:paths ["src" "resources"]

:deps {org.clojure/clojure {:mvn/version "1.11.3"}
:deps {org.clojure/clojure {:mvn/version "1.12.0"}
;;
;;
;;
ch.qos.logback/logback-classic {:mvn/version "1.5.6"}
io.sentry/sentry {:mvn/version "7.11.0"}
ch.qos.logback/logback-classic {:mvn/version "1.5.10"}
io.sentry/sentry {:mvn/version "7.15.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"}
org.slf4j/jcl-over-slf4j {:mvn/version "2.0.13"}
org.slf4j/jul-to-slf4j {:mvn/version "2.0.13"}
org.slf4j/log4j-over-slf4j {:mvn/version "2.0.13"}
org.slf4j/slf4j-api {:mvn/version "2.0.13"}}}
org.slf4j/jcl-over-slf4j {:mvn/version "2.0.16"}
org.slf4j/jul-to-slf4j {:mvn/version "2.0.16"}
org.slf4j/log4j-over-slf4j {:mvn/version "2.0.16"}
org.slf4j/slf4j-api {:mvn/version "2.0.16"}}}
16 changes: 8 additions & 8 deletions examples/ring_with_tracing/deps.edn
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
{:paths ["src" "resources"]

:deps {org.clojure/clojure {:mvn/version "1.11.3"}
:deps {org.clojure/clojure {:mvn/version "1.12.0"}
;;
;;
;;
ch.qos.logback/logback-classic {:mvn/version "1.5.6"}
integrant/integrant {:mvn/version "0.10.0"}
ch.qos.logback/logback-classic {:mvn/version "1.5.10"}
integrant/integrant {:mvn/version "0.13.0"}
integrant/repl {:mvn/version "0.3.3"}
io.sentry/sentry {:mvn/version "7.11.0"}
io.sentry/sentry {:mvn/version "7.15.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"}
org.slf4j/jcl-over-slf4j {:mvn/version "2.0.13"}
org.slf4j/jul-to-slf4j {:mvn/version "2.0.13"}
org.slf4j/log4j-over-slf4j {:mvn/version "2.0.13"}
org.slf4j/slf4j-api {:mvn/version "2.0.13"}
org.slf4j/jcl-over-slf4j {:mvn/version "2.0.16"}
org.slf4j/jul-to-slf4j {:mvn/version "2.0.16"}
org.slf4j/log4j-over-slf4j {:mvn/version "2.0.16"}
org.slf4j/slf4j-api {:mvn/version "2.0.16"}
ring/ring-core {:mvn/version "1.12.2"}
ring/ring-jetty-adapter {:mvn/version "1.12.2"}
ring/ring-json {:mvn/version "0.5.1"}}}
14 changes: 7 additions & 7 deletions examples/uncaught/deps.edn
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{:paths ["src" "resources"]

:deps {org.clojure/clojure {:mvn/version "1.11.3"}
:deps {org.clojure/clojure {:mvn/version "1.12.0"}
;;
;;
;;
ch.qos.logback/logback-classic {:mvn/version "1.5.6"}
io.sentry/sentry {:mvn/version "7.11.0"}
ch.qos.logback/logback-classic {:mvn/version "1.5.10"}
io.sentry/sentry {:mvn/version "7.15.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"}
org.slf4j/jcl-over-slf4j {:mvn/version "2.0.13"}
org.slf4j/jul-to-slf4j {:mvn/version "2.0.13"}
org.slf4j/log4j-over-slf4j {:mvn/version "2.0.13"}
org.slf4j/slf4j-api {:mvn/version "2.0.13"}}}
org.slf4j/jcl-over-slf4j {:mvn/version "2.0.16"}
org.slf4j/jul-to-slf4j {:mvn/version "2.0.16"}
org.slf4j/log4j-over-slf4j {:mvn/version "2.0.16"}
org.slf4j/slf4j-api {:mvn/version "2.0.16"}}}
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.11.%s" patch))
(format "7.15.%s" patch))

(defn ^:private pom-template
[tag]
Expand Down
2 changes: 1 addition & 1 deletion src/sentry_clj/core.clj
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@
[]
(Sentry/close))

(defn flush
(defn flush-events
"Flushes events to Sentry, blocking until the flush is complete.
You can pass a timeout in milliseconds to wait for the flush to complete."
Expand Down

0 comments on commit 71ca0ac

Please sign in to comment.