Skip to content

Commit 6ebacc9

Browse files
committed
2.2.0
1 parent 9f9116b commit 6ebacc9

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

changelog.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
2.2.0
2+
-----
3+
4+
* ENHANCEMENT: Sentry server errors now return some information about the response headers. [#585, @rafadc]
5+
* BUGFIX/ENHANCEMENT: Frozen objects are no longer sanitized. This prevents some bugs, but you can now also freeze objects if you don't want them to be sanitized by the SanitizeData processor. [#594, @nateberkopec]
6+
* ENHANCEMENT: The ability to use Raven::Instance alone is greatly improved. You can now call #capture_exception directly on an Instance (#595), give it it's own Logger (#599), and set it's own config which will be used when creating Events (#601). Thanks to
7+
* ENHANCEMENT: You may now provide your own LineCache-like class to Raven. This is useful if you have source code which is not available on disk. [#606, @nateberkopec]
8+
* BUGFIX: Raven no longer emits anything to STDOUT if a system command fails [#596, @nateberkopec]
9+
* ENHANCEMENT: Raven now tells you exactly why it will not send an event in the logs [#602, @nateberkopec]
10+
111
2.1.4
212
-----
313

lib/raven/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22
module Raven
33
# Freezing this constant breaks in 1.9.x
4-
VERSION = "2.1.4" # rubocop:disable Style/MutableConstant
4+
VERSION = "2.2.0" # rubocop:disable Style/MutableConstant
55
end

spec/raven/instance_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ def ivars(object)
207207
subject.configuration.silence_ready = false
208208
subject.configuration.environments = ["production"]
209209
expect(subject.logger).to receive(:info).with(
210-
"Raven 2.1.4 configured not to capture errors: Not configured to send/capture in environment 'default'"
210+
"Raven #{Raven::VERSION} configured not to capture errors: Not configured to send/capture in environment 'default'"
211211
)
212212
subject.report_status
213213
end

0 commit comments

Comments
 (0)