bugsnag 6.25.1 → 6.25.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -0
- data/VERSION +1 -1
- data/lib/bugsnag.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: aaf03034e890d858ef861781182304c7d516010334bed5182b410458607fcf0d
|
|
4
|
+
data.tar.gz: 23ada354b2793d02a1126b77275275c9a3f9b0341bf61d0d4d9ab11266f2b6e7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f024eb3c13ff33ecfb3427ffefa87c9fa8b6ad9093dddf9f92499059705632213b07c8754d450c5f22335b60e5bedbc4ced33706864e14b205cea86a73101d57
|
|
7
|
+
data.tar.gz: 2957a235190a7fb6f22453d26d170bce1006dd800cb2731ae0865ca52b818740af62ace9a3ba53671cfe3c8643072ceb6a35b0f402ce21fb36efca4b405e8e59
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,14 @@
|
|
|
1
1
|
Changelog
|
|
2
2
|
=========
|
|
3
3
|
|
|
4
|
+
## v6.25.2 (7 February 2023)
|
|
5
|
+
|
|
6
|
+
### Enhancements
|
|
7
|
+
|
|
8
|
+
* Improve performance of `Bugsnag.notify`
|
|
9
|
+
| [#774](https://github.com/bugsnag/bugsnag-ruby/pull/774)
|
|
10
|
+
| [sambostock](https://github.com/sambostock)
|
|
11
|
+
|
|
4
12
|
## v6.25.1 (5 January 2023)
|
|
5
13
|
|
|
6
14
|
### Fixes
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
6.25.
|
|
1
|
+
6.25.2
|
data/lib/bugsnag.rb
CHANGED
|
@@ -78,7 +78,7 @@ module Bugsnag
|
|
|
78
78
|
#
|
|
79
79
|
# Optionally accepts a block to append metadata to the yielded report.
|
|
80
80
|
def notify(exception, auto_notify=false, &block)
|
|
81
|
-
unless
|
|
81
|
+
unless false.equal? auto_notify or true.equal? auto_notify
|
|
82
82
|
configuration.warn("Adding metadata/severity using a hash is no longer supported, please use block syntax instead")
|
|
83
83
|
auto_notify = false
|
|
84
84
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: bugsnag
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 6.25.
|
|
4
|
+
version: 6.25.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- James Smith
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-
|
|
11
|
+
date: 2023-02-07 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: concurrent-ruby
|