Skip to content

Commit 3e655aa

Browse files
committed
Bump Sentry Java SDK to 5.1.2
-=david=-
1 parent e083254 commit 3e655aa

File tree

7 files changed

+37
-10
lines changed

7 files changed

+37
-10
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,17 @@ jobs:
1616
java: [ '8', '11', '16' ]
1717
steps:
1818
- uses: actions/checkout@v2
19+
1920
- name: Setup Java
20-
uses: actions/setup-java@v2.2.0
21+
uses: actions/setup-java@v2.3.0
2122
with:
2223
distribution: 'adopt'
2324
java-version: ${{ matrix.java }}
25+
2426
- name: Setup Clojure
2527
uses: DeLaGuardo/setup-clojure@master
2628
with:
2729
tools-deps: 'latest'
30+
2831
- name: Run Tests
2932
run: clojure -M:test -m kaocha.runner

CHANGELOG.md

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,25 @@
11
# Change Log
22

3+
All notable changes to this project will be documented in this file
4+
and is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
5+
6+
This project follows the version scheme MAJOR.MINOR.COMMITS where
7+
MAJOR and MINOR provide some relative indication of the size of the
8+
change, but do not follow semantic versioning. In general, all changes
9+
endeavour to be non-breaking (by moving to new names rather than by
10+
breaking existing names). COMMITS is an ever-increasing counter of
11+
commits since the beginning of this repository.
12+
13+
## [Unreleased]
14+
15+
### Changed
16+
### Added
17+
### Removed
18+
19+
## [5.0.152]
20+
21+
- Update Sentry Java SDK to 5.1.2
22+
323
## [5.0.151]
424

525
- Update Sentry Java SDK to 5.1.1
@@ -117,7 +137,8 @@
117137
compatible with Sentry 10.0.1 and below. If you wish to use those
118138
versions, please continue to use sentry-clj 1.7.30.
119139

120-
[Unreleased]: https://github.com/getsentry/sentry-clj/compare/5.0.151...HEAD
140+
[Unreleased]: https://github.com/getsentry/sentry-clj/compare/5.0.152...HEAD
141+
[5.0.152]: https://github.com/getsentry/sentry-clj/compare/5.0.151...5.0.152
121142
[5.0.151]: https://github.com/getsentry/sentry-clj/compare/5.0.147...5.0.151
122143
[5.0.149]: https://github.com/getsentry/sentry-clj/compare/5.0.147...5.0.149
123144
[5.0.147]: https://github.com/getsentry/sentry-clj/compare/4.3.146...5.0.147

bin/install

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/usr/bin/env bash
2+
3+
clojure -X:install

deps.edn

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{:paths ["src"]
22

3-
:deps {io.sentry/sentry {:mvn/version "5.1.1"}
3+
:deps {io.sentry/sentry {:mvn/version "5.1.2"}
44
org.clojure/clojure {:mvn/version "1.10.3"}
55
ring/ring-core {:mvn/version "1.9.4"}}
66

examples/basic/deps.edn

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{:paths ["src" "resources"]
22

33
:deps {ch.qos.logback/logback-classic {:mvn/version "1.2.5"}
4-
io.sentry/sentry {:mvn/version "5.1.1"}
5-
io.sentry/sentry-clj {:mvn/version "5.0.151"}
4+
io.sentry/sentry {:mvn/version "5.1.2"}
5+
io.sentry/sentry-clj {:mvn/version "5.0.152"}
66
org.clojure/clojure {:mvn/version "1.10.3"}
77
org.clojure/tools.cli {:mvn/version "1.0.206"}
88
org.clojure/tools.logging {:mvn/version "1.1.0"}

examples/uncaught/deps.edn

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{:paths ["src" "resources"]
22

33
:deps {ch.qos.logback/logback-classic {:mvn/version "1.2.5"}
4-
io.sentry/sentry {:mvn/version "5.1.1"}
5-
io.sentry/sentry-clj {:mvn/version "5.0.151"}
4+
io.sentry/sentry {:mvn/version "5.1.2"}
5+
io.sentry/sentry-clj {:mvn/version "5.0.152"}
66
org.clojure/clojure {:mvn/version "1.10.3"}
77
org.clojure/tools.cli {:mvn/version "1.0.206"}
88
org.clojure/tools.logging {:mvn/version "1.1.0"}

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<packaging>jar</packaging>
55
<groupId>io.sentry</groupId>
66
<artifactId>sentry-clj</artifactId>
7-
<version>5.0.151</version>
7+
<version>5.0.152</version>
88
<name>sentry-clj</name>
99
<description>A very thin wrapper around the official Java library for Sentry.</description>
1010
<url>https://github.com/getsentry/sentry-clj</url>
@@ -18,7 +18,7 @@
1818
<url>https://github.com/getsentry/sentry-clj</url>
1919
<connection>scm:git:git://github.com/getsentry/sentry-clj.git</connection>
2020
<developerConnection>scm:git:ssh://[email protected]/getsentry/sentry-clj.git</developerConnection>
21-
<tag>5.0.151</tag>
21+
<tag>5.0.152</tag>
2222
</scm>
2323
<dependencies>
2424
<dependency>
@@ -29,7 +29,7 @@
2929
<dependency>
3030
<groupId>io.sentry</groupId>
3131
<artifactId>sentry</artifactId>
32-
<version>5.1.1</version>
32+
<version>5.1.2</version>
3333
</dependency>
3434
<dependency>
3535
<groupId>ring</groupId>

0 commit comments

Comments
 (0)