Skip to content

Commit fd72a07

Browse files
committed
2.0.0
1 parent 785286f commit fd72a07

File tree

2 files changed

+26
-1
lines changed

2 files changed

+26
-1
lines changed

changelog.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,28 @@
1+
2.0.0
2+
-----
3+
4+
BREAKING CHANGES:
5+
6+
* The object passed to the `async` callback is now a JSON-compatible hash, not a Raven::Event. This fixes many bugs with backend job processors like DelayedJob. [@nateberkopec, #547]
7+
* Several deprecated accessors have been removed [@nateberkopec, #543]
8+
* You can no longer pass an object which cannot be called to `should_capture` [@nateberkopec, #542]
9+
10+
ENHANCEMENTS:
11+
12+
* Rack::Timeout exceptions are now fingerprinted by URL, making them more useful [@nateberkopec, #538]
13+
* Added an HTTP header processor by default. We now scrub `Authorization` headers correctly. You can use `config.sanitize_http_headers` to add a list of HTTP headers you don't want sent to Sentry (e.g. ["Via", "Referer", "User-Agent", "Server", "From"]) [@nateberkopec]
14+
15+
FIXES:
16+
17+
* User/Event IP addresses are now set more accurately. This will fix many issues with local proxy setups (nginx, etc). [@nateberkopec, #546]
18+
* We now generate a real UUID in the correct format for Event IDs [@nateberkopec, #549]
19+
* If `async` sending fails, we retry with sync sending. [@nateberkopec, #548]
20+
* Changed truncation approach - event messages and HTTP bodies now limited to the same amount of characters they're limited to at the Sentry server [@nateberkopec, #536]
21+
22+
OTHER:
23+
24+
* Codebase cleaned up with Rubocop [@nateberkopec, #544]
25+
126
1.2.3
227
-----
328

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 = "1.2.3" # rubocop:disable Style/MutableConstant
4+
VERSION = "2.0.0" # rubocop:disable Style/MutableConstant
55
end

0 commit comments

Comments
 (0)