File tree 3 files changed +19
-11
lines changed
integrations/sentry-actix
3 files changed +19
-11
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ # 0.10.0
4
+
5
+ - Streamline types with other SDKs. Most notabe changes:
6
+ - ` Event::id ` has been renamed to ` Event::event_id `
7
+ - ` Event::exceptions ` has been renamed to ` Event::exception `
8
+ - Some collections are now wrapped in ` Values `
9
+ - Added more debug logs.
10
+
3
11
# 0.9.0
4
12
5
- * Removed ` drain_events ` . Events are now drained by calling ` Client::close ` or on the
13
+ - Removed ` drain_events ` . Events are now drained by calling ` Client::close ` or on the
6
14
transport on ` Transport::shutdown ` .
7
- * Removed ` Hub::add_event_processor ` . This was replaced by ` Scope::add_event_processor `
15
+ - Removed ` Hub::add_event_processor ` . This was replaced by ` Scope::add_event_processor `
8
16
which is easier to use (only returns factory function)/
9
- * Added various new client configuration values.
10
- * Unified option handling
17
+ - Added various new client configuration values.
18
+ - Unified option handling
11
19
12
20
This is likely to be the final API before 1.0
13
21
14
22
# 0.3.1
15
23
16
- * Remove null byte terminator from device model context (#33 )
17
- * Fix ` uname ` breaking builds on Windows (#32 )
18
- * Fix the crate documentation link (#31 )
24
+ - Remove null byte terminator from device model context (#33 )
25
+ - Fix ` uname ` breaking builds on Windows (#32 )
26
+ - Fix the crate documentation link (#31 )
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " sentry"
3
- version = " 0.9 .0"
3
+ version = " 0.10 .0"
4
4
authors = [
" Sentry <[email protected] >" ]
5
5
license = " Apache-2.0"
6
6
readme = " README.md"
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " sentry-actix"
3
- version = " 0.4 .0"
3
+ version = " 0.5 .0"
4
4
authors = [
" Sentry <[email protected] >" ]
5
5
license = " Apache-2.0"
6
6
readme = " README.md"
@@ -13,7 +13,7 @@ Sentry client extension for actix-web
13
13
14
14
[dependencies ]
15
15
actix-web = { version = " 0.7" , default-features = false }
16
- sentry = { version = " 0.9 .0" , path = " ../../" }
17
- failure = " 0.1.1 "
16
+ sentry = { version = " 0.10 .0" , path = " ../../" }
17
+ failure = " 0.1.2 "
18
18
uuid = " 0.6.5"
19
19
fragile = " 0.3.0"
You can’t perform that action at this time.
0 commit comments