From 4bb8e67bdf5430af128116435fb841a22605d2f5 Mon Sep 17 00:00:00 2001 From: Matt Byers Date: Tue, 26 Nov 2024 10:47:38 +1300 Subject: [PATCH] Rename response property to responseBody. Updated versions and changelog. --- CHANGELOG.md | 5 +++++ bower.json | 2 +- package.json | 2 +- raygun4js.nuspec | 2 +- src/raygun.rum/index.js | 2 +- 5 files changed, 9 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index db1bd9d2..068b2817 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -29,6 +29,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 --> +## [3.1.3] + +### Changed +- Updated RUM XHR events to include `requestDetails` for the `onBeforeSendRUM` handler. Request details include `url` (including query parameters), `method`, `body` and `responseBody`. These details are stripped from the payload before it's sent to Raygun's servers. + ## [3.1.2] ### Changed diff --git a/bower.json b/bower.json index d9cc173b..081ea1d0 100644 --- a/bower.json +++ b/bower.json @@ -1,6 +1,6 @@ { "name": "raygun4js", - "version": "3.1.2", + "version": "3.1.3", "homepage": "http://raygun.com", "authors": [ "Mindscape " diff --git a/package.json b/package.json index 3b78eec4..92ce4751 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ ], "title": "Raygun4js", "description": "Raygun.com plugin for JavaScript", - "version": "3.1.2", + "version": "3.1.3", "homepage": "https://github.com/MindscapeHQ/raygun4js", "author": { "name": "MindscapeHQ", diff --git a/raygun4js.nuspec b/raygun4js.nuspec index c49945ac..f5903d05 100644 --- a/raygun4js.nuspec +++ b/raygun4js.nuspec @@ -2,7 +2,7 @@ raygun4js - 3.1.2 + 3.1.3 Raygun4js Raygun Limited Raygun Limited diff --git a/src/raygun.rum/index.js b/src/raygun.rum/index.js index 33c33aff..1248926f 100644 --- a/src/raygun.rum/index.js +++ b/src/raygun.rum/index.js @@ -742,7 +742,7 @@ var raygunRumFactory = function (window, $, Raygun) { url: xhrStatus.request.requestURL, method: xhrStatus.request.method, body: xhrStatus.request.body, - response: xhrStatus.response.body + responseBody: xhrStatus.response.body }; log('found status for timing', timingData.statusCode);