File tree 5 files changed +18
-11
lines changed
5 files changed +18
-11
lines changed Original file line number Diff line number Diff line change @@ -12,3 +12,4 @@ pom.xml.asc
12
12
.lein-repl-history
13
13
venv
14
14
.nrepl-port
15
+ .nrepl-history
Original file line number Diff line number Diff line change @@ -4,9 +4,11 @@ A Clojure interface to Sentry.
4
4
5
5
## Usage
6
6
7
+ [ ] ( dependency )
7
8
``` clojure
8
- [raven-clj " 1.5.0 " ]
9
+ [raven-clj " 1.5.1 " ] ; ; latest release
9
10
```
11
+ [ ] ( /dependency )
10
12
11
13
### ` capture `
12
14
@@ -90,6 +92,8 @@ raven-clj also includes a Ring middleware that sends the Http and Stacktrace int
90
92
91
93
## Changes
92
94
95
+ - ** 1.5.1**
96
+ - Prevent indexOutOfBounds exception when determining context line ([ #25 ] ( https://github.com/sethtrain/raven-clj/pull/25 ) )
93
97
- ** 1.5.0**
94
98
- fix how request method is extracted from ring requests ([ #22 ] ( https://github.com/sethtrain/raven-clj/pull/22 )
95
99
- send stringified ex-data ([ #21 ] ( https://github.com/sethtrain/raven-clj/pull/22 ) )
Original file line number Diff line number Diff line change 2
2
# Thu May 12 15:18:06 CEST 2016
3
3
BOOT_CLOJURE_NAME =org.clojure/clojure
4
4
BOOT_CLOJURE_VERSION =1.8.0
5
- BOOT_VERSION =2.5.5
6
- BOOT_EMIT_TARGET =no
5
+ BOOT_VERSION =2.7.2
Original file line number Diff line number Diff line change 5
5
[clj-http " 3.0.1" ]
6
6
[prone " 1.0.1" ]
7
7
8
- [adzerk/boot-test " 1.1.1" :scope " test" ]])
8
+ [adzerk/bootlaces " 0.1.13" :scope " test" ]
9
+ [adzerk/boot-test " 1.1.1" :scope " test" ]])
10
+
11
+ (require '[adzerk.boot-test :refer [test]]
12
+ '[adzerk.bootlaces :refer [bootlaces! build-jar push-release]])
13
+
14
+ (def +version+ " 1.5.1" )
15
+
16
+ (bootlaces! +version+ :dont-modify-paths? true )
9
17
10
18
(task-options!
11
19
pom {:project 'raven-clj
12
- :version " 1.5.0 "
20
+ :version +version+
13
21
:description " Sentry clojure client"
14
22
:url " http://github.com/sethtrain/raven-clj"
15
23
:license {" EPL" " http://www.eclipse.org/legal/epl-v10.html" }})
16
24
17
- (require '[adzerk.boot-test :refer [test]])
18
-
19
- (deftask build []
20
- (comp (pom ) (jar )))
21
-
22
25
(deftask test! []
23
26
(merge-env! :source-paths #{" test" })
24
27
(test ))
Original file line number Diff line number Diff line change 1
- (defproject raven-clj " 1.5.0 "
1
+ (defproject raven-clj " 1.5.1 "
2
2
:description " Sentry clojure client"
3
3
:url " http://github.com/sethtrain/raven-clj"
4
4
:license {:name " Eclipse Public License"
You can’t perform that action at this time.
0 commit comments