File tree Expand file tree Collapse file tree 4 files changed +15
-3
lines changed Expand file tree Collapse file tree 4 files changed +15
-3
lines changed Original file line number Diff line number Diff line change 2
2
3
3
## master
4
4
5
+
6
+ ## 6.3.0 (2018-04-24)
7
+
8
+ * Enhancements
9
+ * Use the stacktrace passed to Sentry.Event.transform_exception/2 when calling Exception.normalize/3 (#266 )
10
+ * Reduce Logger noise in HTTP Client (#274 )
11
+ * Use ` Plug.Conn.get_peer_data/1 ` (#273 )
12
+
13
+ * Bug Fixes
14
+ * Add documentation for capturing arbitrary events (#272 )
15
+ * Fix typo in README.md (#277 )
16
+
5
17
## 6.2.1 (2018-04-24)
6
18
7
19
* Enhancements
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ defp application do
17
17
end
18
18
19
19
defp deps do
20
- [{:sentry , " ~> 6.2.1 " }]
20
+ [{:sentry , " ~> 6.3 " }]
21
21
end
22
22
```
23
23
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ Edit your mix.exs file to add it as a dependency and add the ``:sentry`` package
24
24
end
25
25
26
26
defp deps do
27
- [{:sentry, "~> 6.2.1 "}]
27
+ [{:sentry, "~> 6.3 "}]
28
28
end
29
29
30
30
Configuration
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ defmodule Sentry.Mixfile do
4
4
def project do
5
5
[
6
6
app: :sentry ,
7
- version: "6.2.1 " ,
7
+ version: "6.3.0 " ,
8
8
elixir: "~> 1.3" ,
9
9
description: "The Official Elixir client for Sentry" ,
10
10
package: package ( ) ,
You can’t perform that action at this time.
0 commit comments