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.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +8 -0
  3. data/VERSION +1 -1
  4. data/lib/bugsnag.rb +1 -1
  5. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3925f676929998c1f9738c6b7f82a174d3c87f13b5cc289da021c0d39160a0e5
4
- data.tar.gz: 222b3cba78251ff98b80acab3c7129028714e714dbff8160a423e0b17e39db87
3
+ metadata.gz: aaf03034e890d858ef861781182304c7d516010334bed5182b410458607fcf0d
4
+ data.tar.gz: 23ada354b2793d02a1126b77275275c9a3f9b0341bf61d0d4d9ab11266f2b6e7
5
5
  SHA512:
6
- metadata.gz: afb3ffe1e94f6a2ce20b22d16ab216f64a48c0f133618f6dc94ea5700e3e7f3a9554db70ebf98bf2db94acc884a8acb06d26c82996d3f8cce17ad164bb44a931
7
- data.tar.gz: a988e117863633052de9bcbce5ca436823c106e075a2ef7f783afd33f74ca508392022fd2489e96f912d9815fd11137e572639855fb354edeb3c45b141018cc9
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
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 auto_notify.is_a? TrueClass or auto_notify.is_a? FalseClass
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.1
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-01-05 00:00:00.000000000 Z
11
+ date: 2023-02-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: concurrent-ruby