Skip to content

Commit

Permalink
Merge pull request #1038 from rollbar/release-2.25.1
Browse files Browse the repository at this point in the history
Release 2.25.1
  • Loading branch information
waltjones authored Aug 1, 2022
2 parents acbb257 + a8abbcc commit c2c5310
Show file tree
Hide file tree
Showing 29 changed files with 75 additions and 49 deletions.
9 changes: 7 additions & 2 deletions dist/rollbar.js
Original file line number Diff line number Diff line change
Expand Up @@ -2897,7 +2897,12 @@ function Api(options, transport, urllib, truncation, jsonBackup) {
Api.prototype.postItem = function(data, callback) {
var transportOptions = helpers.transportOptions(this.transportOptions, 'POST');
var payload = helpers.buildPayload(this.accessToken, data, this.jsonBackup);
this.transport.post(this.accessToken, transportOptions, payload, callback);
var self = this;

// ensure the network request is scheduled after the current tick.
setTimeout(function() {
self.transport.post(self.accessToken, transportOptions, payload, callback);
}, 0);
};

/**
Expand Down Expand Up @@ -4579,7 +4584,7 @@ module.exports = {


module.exports = {
version: '2.25.0',
version: '2.25.1',
endpoint: 'api.rollbar.com/api/1/item/',
logLevel: 'debug',
reportLevel: 'debug',
Expand Down
2 changes: 1 addition & 1 deletion dist/rollbar.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/rollbar.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/rollbar.min.js.map

Large diffs are not rendered by default.

9 changes: 7 additions & 2 deletions dist/rollbar.named-amd.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/rollbar.named-amd.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/rollbar.named-amd.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/rollbar.named-amd.min.js.map

Large diffs are not rendered by default.

9 changes: 7 additions & 2 deletions dist/rollbar.noconflict.umd.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/rollbar.noconflict.umd.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/rollbar.noconflict.umd.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/rollbar.noconflict.umd.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/rollbar.snippet.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 7 additions & 2 deletions dist/rollbar.umd.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/rollbar.umd.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/rollbar.umd.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/rollbar.umd.min.js.map

Large diffs are not rendered by default.

Loading

0 comments on commit c2c5310

Please sign in to comment.