Skip to content

Commit

Permalink
Release 2.26.2 (#1110)
Browse files Browse the repository at this point in the history
  • Loading branch information
waltjones authored Jun 29, 2023
1 parent dc87bd0 commit 70109a9
Show file tree
Hide file tree
Showing 27 changed files with 47 additions and 35 deletions.
9 changes: 6 additions & 3 deletions dist/rollbar.js
Original file line number Diff line number Diff line change
Expand Up @@ -1416,6 +1416,9 @@ function Rollbar(options, client) {
this.instrumenter.instrument();
}
_.setupJSON(polyfillJSON);

// Used with rollbar-react for rollbar-react-native compatibility.
this.rollbar = this;
}

var _instance = null;
Expand Down Expand Up @@ -4685,7 +4688,7 @@ module.exports = {


module.exports = {
version: '2.26.1',
version: '2.26.2',
endpoint: 'api.rollbar.com/api/1/item/',
logLevel: 'debug',
reportLevel: 'debug',
Expand Down Expand Up @@ -4787,8 +4790,8 @@ Telemeter.prototype.configure = function(options) {
var maxTelemetryEvents = this.options.maxTelemetryEvents || MAX_EVENTS;
var newMaxEvents = Math.max(0, Math.min(maxTelemetryEvents, MAX_EVENTS));
var deleteCount = 0;
if (this.maxQueueSize > newMaxEvents) {
deleteCount = this.maxQueueSize - newMaxEvents;
if (this.queue.length > newMaxEvents) {
deleteCount = this.queue.length - newMaxEvents;
}
this.maxQueueSize = newMaxEvents;
this.queue.splice(0, deleteCount);
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: 6 additions & 3 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: 6 additions & 3 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: 6 additions & 3 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 70109a9

Please sign in to comment.