appsignal 4.9.0 → 4.9.1
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 +11 -0
- data/build_matrix.yml +1 -0
- data/lib/appsignal/integrations/que.rb +10 -1
- data/lib/appsignal/version.rb +1 -1
- data/sig/appsignal.rbi +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1f5f973b8035fa8622b62ce0267c9c7a6177c2de7e62a820ebfb19478e06a1d5
|
|
4
|
+
data.tar.gz: 253ac53b17b30ce57a5c25677b9c2dad9c33e6a20cd937311897a82a6301b33e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0137e30b3e2bdbe43f0256b7b966e00eec9c21151829a701d91841d6c692c207687a732c102d42bc05a29f74817224aedf1f303a3225c9c053d36404af771e9a
|
|
7
|
+
data.tar.gz: 0cdf4856bbcd79f900569daf211e1e35e1e067ffaeb306ebc9af7eae4ec602299475f13e2cee474b8ed494853b3fa2e7eb33d90dbdad6f5a919f076a5a5a4938
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# AppSignal for Ruby gem Changelog
|
|
2
2
|
|
|
3
|
+
## 4.9.1
|
|
4
|
+
|
|
5
|
+
_Published on 2026-07-27._
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
|
|
9
|
+
- Fix Que jobs being corrupted on enqueue when using Que 0.x. This was introduced
|
|
10
|
+
in version 4.9.0. Que 1 and Que 2 were not affected.
|
|
11
|
+
|
|
12
|
+
(patch [947d06b2](https://github.com/appsignal/appsignal-ruby/commit/947d06b2793ede14f9c0350f0b4a338cce7d1452), [1cc52bf3](https://github.com/appsignal/appsignal-ruby/commit/1cc52bf320571989c28af148d1086bdb872eab36))
|
|
13
|
+
|
|
3
14
|
## 4.9.0
|
|
4
15
|
|
|
5
16
|
_Published on 2026-07-16._
|
data/build_matrix.yml
CHANGED
|
@@ -43,7 +43,16 @@ module Appsignal
|
|
|
43
43
|
# from within a web request or another job); otherwise it's a transparent
|
|
44
44
|
# pass-through.
|
|
45
45
|
module QueClientPlugin
|
|
46
|
-
|
|
46
|
+
# The keyword arguments are captured into a single `**kwargs` hash, rather
|
|
47
|
+
# than declaring a `job_options:` keyword with a default, so that an
|
|
48
|
+
# implicit `super` forwards the original call unchanged. Declaring
|
|
49
|
+
# `job_options: {}` would bind that default even when the caller did not
|
|
50
|
+
# pass it, and `super` would then forward it to Que. On Que 0.14, whose
|
|
51
|
+
# `enqueue` takes only positional arguments, that extra keyword ends up
|
|
52
|
+
# persisted as an additional job argument.
|
|
53
|
+
def enqueue(*_args, **kwargs)
|
|
54
|
+
job_options = kwargs[:job_options] || {}
|
|
55
|
+
|
|
47
56
|
# Inside a `bulk_enqueue` block the batch is recorded once by the
|
|
48
57
|
# `bulk_enqueue` wrapper, so each inner enqueue is a pass-through to
|
|
49
58
|
# avoid recording an event per job.
|
data/lib/appsignal/version.rb
CHANGED
data/sig/appsignal.rbi
CHANGED