File tree Expand file tree Collapse file tree 3 files changed +10
-3
lines changed Expand file tree Collapse file tree 3 files changed +10
-3
lines changed Original file line number Diff line number Diff line change
1
+ ## 4.6.4
2
+
3
+ - Extend Rake with a more elegant and reliable way [ #1517 ] ( https://github.com/getsentry/sentry-ruby/pull/1517 )
4
+ - Fixes [ #1520 ] ( https://github.com/getsentry/sentry-ruby/issues/1520 )
5
+
1
6
## 4.6.3
2
7
3
8
- Silence some ruby warnings [ #1504 ] ( https://github.com/getsentry/sentry-ruby/pull/1504 )
Original file line number Diff line number Diff line change 4
4
config . dsn = 'https://2fb45f003d054a7ea47feb45898f7649@o447951.ingest.sentry.io/5434472'
5
5
end
6
6
7
+ # bundle exec rake raise_exception
7
8
task :raise_exception do
8
9
1 /0
9
10
end
10
11
11
- task :send_message do
12
- Sentry . capture_message ( "message from rake" )
12
+ # bundle exec rake send_message[foo]
13
+ task :send_message , [ 'name' ] do |_task , args |
14
+ Sentry . capture_message ( "message from #{ args [ :name ] } " )
13
15
end
Original file line number Diff line number Diff line change @@ -89,7 +89,7 @@ class Configuration
89
89
# You should probably append to this rather than overwrite it.
90
90
attr_accessor :excluded_exceptions
91
91
92
- # Boolean to check nested exceptions when deciding if to exclude. Defaults to false
92
+ # Boolean to check nested exceptions when deciding if to exclude. Defaults to true
93
93
attr_accessor :inspect_exception_causes_for_exclusion
94
94
alias inspect_exception_causes_for_exclusion? inspect_exception_causes_for_exclusion
95
95
You can’t perform that action at this time.
0 commit comments