Skip to content

Commit 772cf3c

Browse files
committed
3.23.0
1 parent 0516d9e commit 772cf3c

23 files changed

+291
-221
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## 3.23.0
4+
5+
**NOTE**:
6+
This release may introduce some new, previously uncaught errors that were silently occuring in the background.
7+
Your Sentry Issues stream may show new errors, without any changes done to your application's code.
8+
9+
* NEW: Introduce global unhandled rejections handler and `captureUnhandledRejections` config option (#1242).
10+
311
## 3.22.4
412

513
* NEW: Chrome and Firefox Extensions stack trace parsing (#1235)

bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "raven-js",
3-
"version": "3.22.4",
3+
"version": "3.23.0",
44
"dependencies": {},
55
"main": "dist/raven.js",
66
"ignore": [

dist/plugins/angular.js

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! Raven.js 3.22.4 (114c958) | github.com/getsentry/raven-js */
1+
/*! Raven.js 3.23.0 (0516d9e) | github.com/getsentry/raven-js */
22

33
/*
44
* Includes TraceKit
@@ -187,6 +187,10 @@ function supportsReferrerPolicy() {
187187
}
188188
}
189189

190+
function supportsPromiseRejectionEvent() {
191+
return typeof PromiseRejectionEvent === 'function';
192+
}
193+
190194
function wrappedCallback(callback) {
191195
function dataCallback(data, original) {
192196
var normalizedData = callback(data) || data;
@@ -540,6 +544,7 @@ module.exports = {
540544
supportsErrorEvent: supportsErrorEvent,
541545
supportsFetch: supportsFetch,
542546
supportsReferrerPolicy: supportsReferrerPolicy,
547+
supportsPromiseRejectionEvent: supportsPromiseRejectionEvent,
543548
wrappedCallback: wrappedCallback,
544549
each: each,
545550
objectMerge: objectMerge,

dist/plugins/angular.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)