honeykiq 1.4.1 → 1.5.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.circleci/config.yml +1 -1
- data/.gitignore +1 -0
- data/CHANGELOG.md +6 -1
- data/Rakefile +1 -0
- data/lib/honeykiq/server_middleware.rb +3 -3
- data/lib/honeykiq/version.rb +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: 9654addea4f63b438d949942560a4661f9e0b6bec85883006567b454d018c032
|
4
|
+
data.tar.gz: 95417a533a733a949a19cda5ec3fa618e5d4a1ad5f45918ee23a543700a14742
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: abdb28c7ee98b691ce645a495ff9bb9358f90013bebb2ce685f81948fa46d42f2b48e2b33da17e854037e6f25a6fb18d0eb5832064f8a5f5573ba99d2b991698
|
7
|
+
data.tar.gz: da701a8bf7a92eb33d45042f278e9cea61c5dda9af74b34d955b6cd093f74356c6e71ae3adff015a7169dd9660cfb0b5d0e2352e27c5cdf70c3d66321bcf3010
|
data/.circleci/config.yml
CHANGED
data/.gitignore
CHANGED
data/CHANGELOG.md
CHANGED
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
6
6
|
|
7
7
|
## [Unreleased]
|
8
8
|
|
9
|
+
## [1.5.0]
|
10
|
+
### Added
|
11
|
+
- Support ruby v3
|
12
|
+
|
9
13
|
## [1.4.1]
|
10
14
|
### Fixed
|
11
15
|
- Expand sidekiq version constraint
|
@@ -58,7 +62,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
58
62
|
### Removed
|
59
63
|
- `Honeykiq.periodic_reporter`. (Use `Honeykiq::PeriodicReporter.new` instead.)
|
60
64
|
|
61
|
-
[Unreleased]: https://github.com/carwow/honeykiq/compare/v1.
|
65
|
+
[Unreleased]: https://github.com/carwow/honeykiq/compare/v1.5.0...HEAD
|
66
|
+
[1.5.0]: https://github.com/carwow/honeykiq/compare/v1.4.1...v1.5.0
|
62
67
|
[1.4.1]: https://github.com/carwow/honeykiq/compare/v1.4.0...v1.4.1
|
63
68
|
[1.4.0]: https://github.com/carwow/honeykiq/compare/v1.3.0...v1.4.0
|
64
69
|
[1.3.0]: https://github.com/carwow/honeykiq/compare/v1.2.0...v1.3.0
|
data/Rakefile
CHANGED
@@ -2,9 +2,9 @@ require "sidekiq/api"
|
|
2
2
|
|
3
3
|
module Honeykiq
|
4
4
|
class ServerMiddleware
|
5
|
-
def initialize(
|
6
|
-
@libhoney = libhoney || honey_client
|
7
|
-
@tracing_mode = tracing_mode
|
5
|
+
def initialize(options = {})
|
6
|
+
@libhoney = options[:libhoney] || options[:honey_client]
|
7
|
+
@tracing_mode = options[:tracing_mode]
|
8
8
|
end
|
9
9
|
|
10
10
|
def call(_worker, msg, queue_name)
|
data/lib/honeykiq/version.rb
CHANGED