waterdrop 1.4.2 → 1.4.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3264233762968462432ad2d4c37809289966e943908df7c8c08d9939d585e621
4
- data.tar.gz: '079c4e36222105d110f7268dff2abb3cfbdab20a019963a80552555d084f20ae'
3
+ metadata.gz: a46e0586607fbfe10c1910f7f10fc7d8453a4a2346782e4b46b9a231905aeb84
4
+ data.tar.gz: 5412ed6e7781ba3e6a89c68546ae1b2a8b0022b2505c54056c80de991f3d72d6
5
5
  SHA512:
6
- metadata.gz: 7b8759d6f7c7d3b7bb685ce725497e5b171bcc85efbdd3a5c5620c51b9a78d0c97715efe7f6ff2c3544fd39628a40122f5dbdc58164ba98355c789e487a4b4de
7
- data.tar.gz: 38e8d05a29d782446865a203289757f68d4af23f0f63e161c429b96f87dd17cfeec0786f716c1ef71615e3b2136ef6a4b88e78d96c3a4396e39945b9e3a089a8
6
+ metadata.gz: f2093c5b55a7bbc484dc34099de6668ecad106366f785474f98aeec1e5dac62a609adf049ce368379ff3f806bdeafffa6df16e3faa0cb6124e98bba5400eec89
7
+ data.tar.gz: '0996a2d7cfb3db9b495f13a3ec0cd22e4fe0e5adaa68b37bd62ec3873103d17c592cd8aef913f194e606cd0442b057d30248033f1db7dcbc0a0169ad80a8f129'
checksums.yaml.gz.sig CHANGED
Binary file
@@ -17,8 +17,7 @@ jobs:
17
17
  - '3.0'
18
18
  - '2.7'
19
19
  - '2.6'
20
- - '2.5'
21
- - 'jruby'
20
+ - 'jruby-head'
22
21
  include:
23
22
  - ruby: '3.0'
24
23
  coverage: 'true'
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 3.0.0
1
+ 3.0.2
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # WaterDrop changelog
2
2
 
3
+ ## 1.4.3 (2021-09-29)
4
+ - Remove Ruby 2.5 support and update minimum Ruby requirement to 2.6
5
+ - fix `dry-configurable` deprecation warnings for default value as positional argument
6
+
3
7
  ## 1.4.2 (2021-03-30)
4
8
  - Additional 3.0 fixes (ojab)
5
9
 
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- waterdrop (1.4.2)
4
+ waterdrop (1.4.3)
5
5
  delivery_boy (>= 0.2, < 2.x)
6
6
  dry-configurable (~> 0.8)
7
7
  dry-monitor (~> 0.3)
@@ -12,40 +12,37 @@ PATH
12
12
  GEM
13
13
  remote: https://rubygems.org/
14
14
  specs:
15
- concurrent-ruby (1.1.8)
15
+ concurrent-ruby (1.1.9)
16
16
  delivery_boy (1.1.0)
17
17
  king_konf (~> 1.0)
18
18
  ruby-kafka (~> 1.0)
19
19
  diff-lcs (1.4.4)
20
- digest-crc (0.6.3)
20
+ digest-crc (0.6.4)
21
21
  rake (>= 12.0.0, < 14.0.0)
22
- docile (1.3.5)
23
- dry-configurable (0.12.1)
22
+ docile (1.4.0)
23
+ dry-configurable (0.13.0)
24
24
  concurrent-ruby (~> 1.0)
25
- dry-core (~> 0.5, >= 0.5.0)
26
- dry-container (0.7.2)
25
+ dry-core (~> 0.6)
26
+ dry-container (0.9.0)
27
27
  concurrent-ruby (~> 1.0)
28
- dry-configurable (~> 0.1, >= 0.1.3)
29
- dry-core (0.5.0)
28
+ dry-configurable (~> 0.13, >= 0.13.0)
29
+ dry-core (0.7.1)
30
30
  concurrent-ruby (~> 1.0)
31
- dry-equalizer (0.3.0)
32
- dry-events (0.2.0)
31
+ dry-events (0.3.0)
33
32
  concurrent-ruby (~> 1.0)
34
- dry-core (~> 0.4)
35
- dry-equalizer (~> 0.2)
36
- dry-inflector (0.2.0)
33
+ dry-core (~> 0.5, >= 0.5)
34
+ dry-inflector (0.2.1)
37
35
  dry-initializer (3.0.4)
38
- dry-logic (1.1.0)
36
+ dry-logic (1.2.0)
39
37
  concurrent-ruby (~> 1.0)
40
38
  dry-core (~> 0.5, >= 0.5)
41
- dry-monitor (0.3.2)
42
- dry-configurable (~> 0.5)
43
- dry-core (~> 0.4)
44
- dry-equalizer (~> 0.2)
39
+ dry-monitor (0.5.0)
40
+ dry-configurable (~> 0.13, >= 0.13.0)
41
+ dry-core (~> 0.5, >= 0.5)
45
42
  dry-events (~> 0.2)
46
- dry-schema (1.6.1)
43
+ dry-schema (1.8.0)
47
44
  concurrent-ruby (~> 1.0)
48
- dry-configurable (~> 0.8, >= 0.8.3)
45
+ dry-configurable (~> 0.13, >= 0.13.0)
49
46
  dry-core (~> 0.5, >= 0.5)
50
47
  dry-initializer (~> 3.0)
51
48
  dry-logic (~> 1.0)
@@ -56,15 +53,14 @@ GEM
56
53
  dry-core (~> 0.5, >= 0.5)
57
54
  dry-inflector (~> 0.1, >= 0.1.2)
58
55
  dry-logic (~> 1.0, >= 1.0.2)
59
- dry-validation (1.6.0)
56
+ dry-validation (1.7.0)
60
57
  concurrent-ruby (~> 1.0)
61
58
  dry-container (~> 0.7, >= 0.7.1)
62
- dry-core (~> 0.4)
63
- dry-equalizer (~> 0.2)
59
+ dry-core (~> 0.5, >= 0.5)
64
60
  dry-initializer (~> 3.0)
65
- dry-schema (~> 1.5, >= 1.5.2)
61
+ dry-schema (~> 1.8, >= 1.8.0)
66
62
  king_konf (1.0.0)
67
- rake (13.0.3)
63
+ rake (13.0.6)
68
64
  rspec (3.10.0)
69
65
  rspec-core (~> 3.10.0)
70
66
  rspec-expectations (~> 3.10.0)
@@ -78,14 +74,14 @@ GEM
78
74
  diff-lcs (>= 1.2.0, < 2.0)
79
75
  rspec-support (~> 3.10.0)
80
76
  rspec-support (3.10.2)
81
- ruby-kafka (1.3.0)
77
+ ruby-kafka (1.4.0)
82
78
  digest-crc
83
79
  simplecov (0.21.2)
84
80
  docile (~> 1.1)
85
81
  simplecov-html (~> 0.11)
86
82
  simplecov_json_formatter (~> 0.1)
87
83
  simplecov-html (0.12.3)
88
- simplecov_json_formatter (0.1.2)
84
+ simplecov_json_formatter (0.1.3)
89
85
  zeitwerk (2.4.2)
90
86
 
91
87
  PLATFORMS
@@ -98,4 +94,4 @@ DEPENDENCIES
98
94
  waterdrop!
99
95
 
100
96
  BUNDLED WITH
101
- 2.2.15
97
+ 2.2.26
data/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # WaterDrop
2
2
 
3
3
  [![Build Status](https://travis-ci.org/karafka/waterdrop.svg)](https://travis-ci.org/karafka/waterdrop)
4
- [![Join the chat at https://gitter.im/karafka/karafka](https://badges.gitter.im/karafka/karafka.svg)](https://gitter.im/karafka/karafka?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
4
+ [![Join the chat at https://slack.karafka.io](https://raw.githubusercontent.com/karafka/misc/master/slack.svg)](https://slack.karafka.io)
5
5
 
6
6
  Gem used to send messages to Kafka in an easy way with an extra validation layer. It is a part of the [Karafka](https://github.com/karafka/karafka) ecosystem.
7
7
 
@@ -116,12 +116,8 @@ Keep in mind, that message you want to send should be either binary or stringifi
116
116
 
117
117
  ## Note on contributions
118
118
 
119
- First, thank you for considering contributing to WaterDrop! It's people like you that make the open source community such a great community!
119
+ First, thank you for considering contributing to the Karafka ecosystem! It's people like you that make the open source community such a great community!
120
120
 
121
- Each pull request must pass all the RSpec specs and meet our quality requirements.
121
+ Each pull request must pass all the RSpec specs, integration tests and meet our quality requirements.
122
122
 
123
- To check if everything is as it should be, we use [Coditsu](https://coditsu.io) that combines multiple linters and code analyzers for both code and documentation. Once you're done with your changes, submit a pull request.
124
-
125
- Coditsu will automatically check your work against our quality standards. You can find your commit check results on the [builds page](https://app.coditsu.io/karafka/repositories/waterdrop/builds/commit_builds) of WaterDrop repository.
126
-
127
- [![coditsu](https://coditsu.io/assets/quality_bar.svg)](https://app.coditsu.io/karafka/repositories/waterdrop/builds/commit_builds)
123
+ Fork it, update and wait for the Github Actions results.
data/certs/mensfeld.pem CHANGED
@@ -1,25 +1,25 @@
1
1
  -----BEGIN CERTIFICATE-----
2
2
  MIIEODCCAqCgAwIBAgIBATANBgkqhkiG9w0BAQsFADAjMSEwHwYDVQQDDBhtYWNp
3
- ZWovREM9bWVuc2ZlbGQvREM9cGwwHhcNMjAwODExMDkxNTM3WhcNMjEwODExMDkx
4
- NTM3WjAjMSEwHwYDVQQDDBhtYWNpZWovREM9bWVuc2ZlbGQvREM9cGwwggGiMA0G
5
- CSqGSIb3DQEBAQUAA4IBjwAwggGKAoIBgQDCpXsCgmINb6lHBXXBdyrgsBPSxC4/
6
- 2H+weJ6L9CruTiv2+2/ZkQGtnLcDgrD14rdLIHK7t0o3EKYlDT5GhD/XUVhI15JE
7
- N7IqnPUgexe1fbZArwQ51afxz2AmPQN2BkB2oeQHXxnSWUGMhvcEZpfbxCCJH26w
8
- hS0Ccsma8yxA6hSlGVhFVDuCr7c2L1di6cK2CtIDpfDaWqnVNJEwBYHIxrCoWK5g
9
- sIGekVt/admS9gRhIMaIBg+Mshth5/DEyWO2QjteTodItlxfTctrfmiAl8X8T5JP
10
- VXeLp5SSOJ5JXE80nShMJp3RFnGw5fqjX/ffjtISYh78/By4xF3a25HdWH9+qO2Z
11
- tx0wSGc9/4gqNM0APQnjN/4YXrGZ4IeSjtE+OrrX07l0TiyikzSLFOkZCAp8oBJi
12
- Fhlosz8xQDJf7mhNxOaZziqASzp/hJTU/tuDKl5+ql2icnMv5iV/i6SlmvU29QNg
13
- LCV71pUv0pWzN+OZbHZKWepGhEQ3cG9MwvkCAwEAAaN3MHUwCQYDVR0TBAIwADAL
14
- BgNVHQ8EBAMCBLAwHQYDVR0OBBYEFImGed2AXS070ohfRidiCEhXEUN+MB0GA1Ud
3
+ ZWovREM9bWVuc2ZlbGQvREM9cGwwHhcNMjEwODExMTQxNTEzWhcNMjIwODExMTQx
4
+ NTEzWjAjMSEwHwYDVQQDDBhtYWNpZWovREM9bWVuc2ZlbGQvREM9cGwwggGiMA0G
5
+ CSqGSIb3DQEBAQUAA4IBjwAwggGKAoIBgQDV2jKH4Ti87GM6nyT6D+ESzTI0MZDj
6
+ ak2/TEwnxvijMJyCCPKT/qIkbW4/f0VHM4rhPr1nW73sb5SZBVFCLlJcOSKOBdUY
7
+ TMY+SIXN2EtUaZuhAOe8LxtxjHTgRHvHcqUQMBENXTISNzCo32LnUxweu66ia4Pd
8
+ 1mNRhzOqNv9YiBZvtBf7IMQ+sYdOCjboq2dlsWmJiwiDpY9lQBTnWORnT3mQxU5x
9
+ vPSwnLB854cHdCS8fQo4DjeJBRZHhEbcE5sqhEMB3RZA3EtFVEXOxlNxVTS3tncI
10
+ qyNXiWDaxcipaens4ObSY1C2HTV7OWb7OMqSCIybeYTSfkaSdqmcl4S6zxXkjH1J
11
+ tnjayAVzD+QVXGijsPLE2PFnJAh9iDET2cMsjabO1f6l1OQNyAtqpcyQcgfnyW0z
12
+ g7tGxTYD+6wJHffM9d9txOUw6djkF6bDxyqB8lo4Z3IObCx18AZjI9XPS9QG7w6q
13
+ LCWuMG2lkCcRgASqaVk9fEf9yMc2xxz5o3kCAwEAAaN3MHUwCQYDVR0TBAIwADAL
14
+ BgNVHQ8EBAMCBLAwHQYDVR0OBBYEFBqUFCKCOe5IuueUVqOB991jyCLLMB0GA1Ud
15
15
  EQQWMBSBEm1hY2llakBtZW5zZmVsZC5wbDAdBgNVHRIEFjAUgRJtYWNpZWpAbWVu
16
- c2ZlbGQucGwwDQYJKoZIhvcNAQELBQADggGBAKiHpwoENVrMi94V1zD4o8/6G3AU
17
- gWz4udkPYHTZLUy3dLznc/sNjdkJFWT3E6NKYq7c60EpJ0m0vAEg5+F5pmNOsvD3
18
- 2pXLj9kisEeYhR516HwXAvtngboUcb75skqvBCU++4Pu7BRAPjO1/ihLSBexbwSS
19
- fF+J5OWNuyHHCQp+kGPLtXJe2yUYyvSWDj3I2//Vk0VhNOIlaCS1+5/P3ZJThOtm
20
- zJUBI7h3HgovwRpcnmk2mXTmU4Zx/bCzX8EA6VY0khEvnmiq7S6eBF0H9qH8KyQ6
21
- EkVLpvmUDFcf/uNaBQdazEMB5jYtwoA8gQlANETNGPi51KlkukhKgaIEDMkBDJOx
22
- 65N7DzmkcyY0/GwjIVIxmRhcrCt1YeCUElmfFx0iida1/YRm6sB2AXqScc1+ECRi
23
- 2DND//YJUikn1zwbz1kT70XmHd97B4Eytpln7K+M1u2g1pHVEPW4owD/ammXNpUy
24
- nt70FcDD4yxJQ+0YNiHd0N8IcVBM1TMIVctMNQ==
16
+ c2ZlbGQucGwwDQYJKoZIhvcNAQELBQADggGBADD0/UuTTFgW+CGk2U0RDw2RBOca
17
+ W2LTF/G7AOzuzD0Tc4voc7WXyrgKwJREv8rgBimLnNlgmFJLmtUCh2U/MgxvcilH
18
+ yshYcbseNvjkrtYnLRlWZR4SSB6Zei5AlyGVQLPkvdsBpNegcG6w075YEwzX/38a
19
+ 8V9B/Yri2OGELBz8ykl7BsXUgNoUPA/4pHF6YRLz+VirOaUIQ4JfY7xGj6fSOWWz
20
+ /rQ/d77r6o1mfJYM/3BRVg73a3b7DmRnE5qjwmSaSQ7u802pJnLesmArch0xGCT/
21
+ fMmRli1Qb+6qOTl9mzD6UDMAyFR4t6MStLm0mIEqM0nBO5nUdUWbC7l9qXEf8XBE
22
+ 2DP28p3EqSuS+lKbAWKcqv7t0iRhhmaod+Yn9mcrLN1sa3q3KSQ9BCyxezCD4Mk2
23
+ R2P11bWoCtr70BsccVrN8jEhzwXngMyI2gVt750Y+dbTu1KgRqZKp/ECe7ZzPzXj
24
+ pIy9vHxTANKYVyI4qj8OrFdEM5BQNu8oQpL0iQ==
25
25
  -----END CERTIFICATE-----
@@ -15,20 +15,20 @@ module WaterDrop
15
15
 
16
16
  # WaterDrop options
17
17
  # option client_id [String] identifier of this producer
18
- setting :client_id, 'waterdrop'
18
+ setting :client_id, default: 'waterdrop'
19
19
  # option [Instance, nil] logger that we want to use or nil to fallback to ruby-kafka logger
20
- setting :logger, Logger.new($stdout, level: Logger::WARN)
20
+ setting :logger, default: Logger.new($stdout, level: Logger::WARN)
21
21
  # option [Instance] monitor that we want to use. See instrumentation part of the README for
22
22
  # more details
23
- setting :monitor, WaterDrop::Instrumentation::Monitor.new
23
+ setting :monitor, default: WaterDrop::Instrumentation::Monitor.new
24
24
  # option [Boolean] should we send messages. Setting this to false can be really useful when
25
25
  # testing and or developing because when set to false, won't actually ping Kafka
26
- setting :deliver, true
26
+ setting :deliver, default: true
27
27
  # option [Boolean] if you're producing messages faster than the framework or the network can
28
28
  # send them off, ruby-kafka might reject them. If that happens, WaterDrop will either raise
29
29
  # or ignore - this setting manages that behavior. This only applies to async producer as
30
30
  # sync producer will always raise upon problems
31
- setting :raise_on_buffer_overflow, true
31
+ setting :raise_on_buffer_overflow, default: true
32
32
 
33
33
  # Settings directly related to the Kafka driver
34
34
  setting :kafka do
@@ -39,99 +39,99 @@ module WaterDrop
39
39
  # option connect_timeout [Integer] Sets the number of seconds to wait while connecting to
40
40
  # a broker for the first time. When ruby-kafka initializes, it needs to connect to at
41
41
  # least one host.
42
- setting :connect_timeout, 10
42
+ setting :connect_timeout, default: 10
43
43
  # option socket_timeout [Integer] Sets the number of seconds to wait when reading from or
44
44
  # writing to a socket connection to a broker. After this timeout expires the connection
45
45
  # will be killed. Note that some Kafka operations are by definition long-running, such as
46
46
  # waiting for new messages to arrive in a partition, so don't set this value too low
47
- setting :socket_timeout, 30
47
+ setting :socket_timeout, default: 30
48
48
 
49
49
  # Buffering for async producer
50
50
  # @option [Integer] The maximum number of bytes allowed in the buffer before new messages
51
51
  # are rejected.
52
- setting :max_buffer_bytesize, 10_000_000
52
+ setting :max_buffer_bytesize, default: 10_000_000
53
53
  # @option [Integer] The maximum number of messages allowed in the buffer before new messages
54
54
  # are rejected.
55
- setting :max_buffer_size, 1000
55
+ setting :max_buffer_size, default: 1000
56
56
  # @option [Integer] The maximum number of messages allowed in the queue before new messages
57
57
  # are rejected. The queue is used to ferry messages from the foreground threads of your
58
58
  # application to the background thread that buffers and delivers messages.
59
- setting :max_queue_size, 1000
59
+ setting :max_queue_size, default: 1000
60
60
 
61
61
  # option [Integer] A timeout executed by a broker when the client is sending messages to it.
62
62
  # It defines the number of seconds the broker should wait for replicas to acknowledge the
63
63
  # write before responding to the client with an error. As such, it relates to the
64
64
  # required_acks setting. It should be set lower than socket_timeout.
65
- setting :ack_timeout, 5
65
+ setting :ack_timeout, default: 5
66
66
  # option [Integer] The number of seconds between background message
67
67
  # deliveries. Default is 10 seconds. Disable timer-based background deliveries by
68
68
  # setting this to 0.
69
- setting :delivery_interval, 10
69
+ setting :delivery_interval, default: 10
70
70
  # option [Integer] The number of buffered messages that will trigger a background message
71
71
  # delivery. Default is 100 messages. Disable buffer size based background deliveries by
72
72
  # setting this to 0.
73
- setting :delivery_threshold, 100
73
+ setting :delivery_threshold, default: 100
74
74
  # option [Boolean]
75
- setting :idempotent, false
75
+ setting :idempotent, default: false
76
76
  # option [Boolean]
77
- setting :transactional, false
77
+ setting :transactional, default: false
78
78
  # option [Integer]
79
- setting :transactional_timeout, 60
79
+ setting :transactional_timeout, default: 60
80
80
 
81
81
  # option [Integer] The number of retries when attempting to deliver messages.
82
- setting :max_retries, 2
82
+ setting :max_retries, default: 2
83
83
  # option [Integer]
84
- setting :required_acks, -1
84
+ setting :required_acks, default: -1
85
85
  # option [Integer]
86
- setting :retry_backoff, 1
86
+ setting :retry_backoff, default: 1
87
87
 
88
88
  # option [Integer] The minimum number of messages that must be buffered before compression is
89
89
  # attempted. By default only one message is required. Only relevant if compression_codec
90
90
  # is set.
91
- setting :compression_threshold, 1
91
+ setting :compression_threshold, default: 1
92
92
  # option [Symbol] The codec used to compress messages. Must be either snappy or gzip.
93
- setting :compression_codec, nil
93
+ setting :compression_codec, default: nil
94
94
 
95
95
  # SSL authentication related settings
96
96
  # option ca_cert [String, nil] SSL CA certificate
97
- setting :ssl_ca_cert, nil
97
+ setting :ssl_ca_cert, default: nil
98
98
  # option ssl_ca_cert_file_path [String, nil] SSL CA certificate file path
99
- setting :ssl_ca_cert_file_path, nil
99
+ setting :ssl_ca_cert_file_path, default: nil
100
100
  # option ssl_ca_certs_from_system [Boolean] Use the CA certs from your system's default
101
101
  # certificate store
102
- setting :ssl_ca_certs_from_system, false
102
+ setting :ssl_ca_certs_from_system, default: false
103
103
  # option ssl_verify_hostname [Boolean] Verify the hostname for client certs
104
- setting :ssl_verify_hostname, true
104
+ setting :ssl_verify_hostname, default: true
105
105
  # option ssl_client_cert [String, nil] SSL client certificate
106
- setting :ssl_client_cert, nil
106
+ setting :ssl_client_cert, default: nil
107
107
  # option ssl_client_cert_key [String, nil] SSL client certificate password
108
- setting :ssl_client_cert_key, nil
108
+ setting :ssl_client_cert_key, default: nil
109
109
  # option sasl_gssapi_principal [String, nil] sasl principal
110
- setting :sasl_gssapi_principal, nil
110
+ setting :sasl_gssapi_principal, default: nil
111
111
  # option sasl_gssapi_keytab [String, nil] sasl keytab
112
- setting :sasl_gssapi_keytab, nil
112
+ setting :sasl_gssapi_keytab, default: nil
113
113
  # option sasl_plain_authzid [String] The authorization identity to use
114
- setting :sasl_plain_authzid, ''
114
+ setting :sasl_plain_authzid, default: ''
115
115
  # option sasl_plain_username [String, nil] The username used to authenticate
116
- setting :sasl_plain_username, nil
116
+ setting :sasl_plain_username, default: nil
117
117
  # option sasl_plain_password [String, nil] The password used to authenticate
118
- setting :sasl_plain_password, nil
118
+ setting :sasl_plain_password, default: nil
119
119
  # option sasl_scram_username [String, nil] The username used to authenticate
120
- setting :sasl_scram_username, nil
120
+ setting :sasl_scram_username, default: nil
121
121
  # option sasl_scram_password [String, nil] The password used to authenticate
122
- setting :sasl_scram_password, nil
122
+ setting :sasl_scram_password, default: nil
123
123
  # option sasl_scram_mechanism [String, nil] Scram mechanism, either 'sha256' or 'sha512'
124
- setting :sasl_scram_mechanism, nil
124
+ setting :sasl_scram_mechanism, default: nil
125
125
  # option sasl_over_ssl [Boolean] whether to enforce SSL with SASL
126
- setting :sasl_over_ssl, true
126
+ setting :sasl_over_ssl, default: true
127
127
  # option ssl_client_cert_chain [String, nil] client cert chain or nil if not used
128
- setting :ssl_client_cert_chain, nil
128
+ setting :ssl_client_cert_chain, default: nil
129
129
  # option ssl_client_cert_key_password [String, nil] the password required to read
130
130
  # the ssl_client_cert_key
131
- setting :ssl_client_cert_key_password, nil
131
+ setting :ssl_client_cert_key_password, default: nil
132
132
  # @param sasl_oauth_token_provider [Object, nil] OAuthBearer Token Provider instance that
133
133
  # implements method token.
134
- setting :sasl_oauth_token_provider, nil
134
+ setting :sasl_oauth_token_provider, default: nil
135
135
  end
136
136
 
137
137
  class << self
@@ -3,5 +3,5 @@
3
3
  # WaterDrop library
4
4
  module WaterDrop
5
5
  # Current WaterDrop version
6
- VERSION = '1.4.2'
6
+ VERSION = '1.4.3'
7
7
  end
data/waterdrop.gemspec CHANGED
@@ -23,7 +23,7 @@ Gem::Specification.new do |spec|
23
23
  spec.add_dependency 'ruby-kafka', '>= 0.7.8'
24
24
  spec.add_dependency 'zeitwerk', '~> 2.1'
25
25
 
26
- spec.required_ruby_version = '>= 2.5.0'
26
+ spec.required_ruby_version = '>= 2.6.0'
27
27
 
28
28
  if $PROGRAM_NAME.end_with?('gem')
29
29
  spec.signing_key = File.expand_path('~/.ssh/gem-private_key.pem')
data.tar.gz.sig CHANGED
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: waterdrop
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.2
4
+ version: 1.4.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Maciej Mensfeld
@@ -11,30 +11,30 @@ cert_chain:
11
11
  - |
12
12
  -----BEGIN CERTIFICATE-----
13
13
  MIIEODCCAqCgAwIBAgIBATANBgkqhkiG9w0BAQsFADAjMSEwHwYDVQQDDBhtYWNp
14
- ZWovREM9bWVuc2ZlbGQvREM9cGwwHhcNMjAwODExMDkxNTM3WhcNMjEwODExMDkx
15
- NTM3WjAjMSEwHwYDVQQDDBhtYWNpZWovREM9bWVuc2ZlbGQvREM9cGwwggGiMA0G
16
- CSqGSIb3DQEBAQUAA4IBjwAwggGKAoIBgQDCpXsCgmINb6lHBXXBdyrgsBPSxC4/
17
- 2H+weJ6L9CruTiv2+2/ZkQGtnLcDgrD14rdLIHK7t0o3EKYlDT5GhD/XUVhI15JE
18
- N7IqnPUgexe1fbZArwQ51afxz2AmPQN2BkB2oeQHXxnSWUGMhvcEZpfbxCCJH26w
19
- hS0Ccsma8yxA6hSlGVhFVDuCr7c2L1di6cK2CtIDpfDaWqnVNJEwBYHIxrCoWK5g
20
- sIGekVt/admS9gRhIMaIBg+Mshth5/DEyWO2QjteTodItlxfTctrfmiAl8X8T5JP
21
- VXeLp5SSOJ5JXE80nShMJp3RFnGw5fqjX/ffjtISYh78/By4xF3a25HdWH9+qO2Z
22
- tx0wSGc9/4gqNM0APQnjN/4YXrGZ4IeSjtE+OrrX07l0TiyikzSLFOkZCAp8oBJi
23
- Fhlosz8xQDJf7mhNxOaZziqASzp/hJTU/tuDKl5+ql2icnMv5iV/i6SlmvU29QNg
24
- LCV71pUv0pWzN+OZbHZKWepGhEQ3cG9MwvkCAwEAAaN3MHUwCQYDVR0TBAIwADAL
25
- BgNVHQ8EBAMCBLAwHQYDVR0OBBYEFImGed2AXS070ohfRidiCEhXEUN+MB0GA1Ud
14
+ ZWovREM9bWVuc2ZlbGQvREM9cGwwHhcNMjEwODExMTQxNTEzWhcNMjIwODExMTQx
15
+ NTEzWjAjMSEwHwYDVQQDDBhtYWNpZWovREM9bWVuc2ZlbGQvREM9cGwwggGiMA0G
16
+ CSqGSIb3DQEBAQUAA4IBjwAwggGKAoIBgQDV2jKH4Ti87GM6nyT6D+ESzTI0MZDj
17
+ ak2/TEwnxvijMJyCCPKT/qIkbW4/f0VHM4rhPr1nW73sb5SZBVFCLlJcOSKOBdUY
18
+ TMY+SIXN2EtUaZuhAOe8LxtxjHTgRHvHcqUQMBENXTISNzCo32LnUxweu66ia4Pd
19
+ 1mNRhzOqNv9YiBZvtBf7IMQ+sYdOCjboq2dlsWmJiwiDpY9lQBTnWORnT3mQxU5x
20
+ vPSwnLB854cHdCS8fQo4DjeJBRZHhEbcE5sqhEMB3RZA3EtFVEXOxlNxVTS3tncI
21
+ qyNXiWDaxcipaens4ObSY1C2HTV7OWb7OMqSCIybeYTSfkaSdqmcl4S6zxXkjH1J
22
+ tnjayAVzD+QVXGijsPLE2PFnJAh9iDET2cMsjabO1f6l1OQNyAtqpcyQcgfnyW0z
23
+ g7tGxTYD+6wJHffM9d9txOUw6djkF6bDxyqB8lo4Z3IObCx18AZjI9XPS9QG7w6q
24
+ LCWuMG2lkCcRgASqaVk9fEf9yMc2xxz5o3kCAwEAAaN3MHUwCQYDVR0TBAIwADAL
25
+ BgNVHQ8EBAMCBLAwHQYDVR0OBBYEFBqUFCKCOe5IuueUVqOB991jyCLLMB0GA1Ud
26
26
  EQQWMBSBEm1hY2llakBtZW5zZmVsZC5wbDAdBgNVHRIEFjAUgRJtYWNpZWpAbWVu
27
- c2ZlbGQucGwwDQYJKoZIhvcNAQELBQADggGBAKiHpwoENVrMi94V1zD4o8/6G3AU
28
- gWz4udkPYHTZLUy3dLznc/sNjdkJFWT3E6NKYq7c60EpJ0m0vAEg5+F5pmNOsvD3
29
- 2pXLj9kisEeYhR516HwXAvtngboUcb75skqvBCU++4Pu7BRAPjO1/ihLSBexbwSS
30
- fF+J5OWNuyHHCQp+kGPLtXJe2yUYyvSWDj3I2//Vk0VhNOIlaCS1+5/P3ZJThOtm
31
- zJUBI7h3HgovwRpcnmk2mXTmU4Zx/bCzX8EA6VY0khEvnmiq7S6eBF0H9qH8KyQ6
32
- EkVLpvmUDFcf/uNaBQdazEMB5jYtwoA8gQlANETNGPi51KlkukhKgaIEDMkBDJOx
33
- 65N7DzmkcyY0/GwjIVIxmRhcrCt1YeCUElmfFx0iida1/YRm6sB2AXqScc1+ECRi
34
- 2DND//YJUikn1zwbz1kT70XmHd97B4Eytpln7K+M1u2g1pHVEPW4owD/ammXNpUy
35
- nt70FcDD4yxJQ+0YNiHd0N8IcVBM1TMIVctMNQ==
27
+ c2ZlbGQucGwwDQYJKoZIhvcNAQELBQADggGBADD0/UuTTFgW+CGk2U0RDw2RBOca
28
+ W2LTF/G7AOzuzD0Tc4voc7WXyrgKwJREv8rgBimLnNlgmFJLmtUCh2U/MgxvcilH
29
+ yshYcbseNvjkrtYnLRlWZR4SSB6Zei5AlyGVQLPkvdsBpNegcG6w075YEwzX/38a
30
+ 8V9B/Yri2OGELBz8ykl7BsXUgNoUPA/4pHF6YRLz+VirOaUIQ4JfY7xGj6fSOWWz
31
+ /rQ/d77r6o1mfJYM/3BRVg73a3b7DmRnE5qjwmSaSQ7u802pJnLesmArch0xGCT/
32
+ fMmRli1Qb+6qOTl9mzD6UDMAyFR4t6MStLm0mIEqM0nBO5nUdUWbC7l9qXEf8XBE
33
+ 2DP28p3EqSuS+lKbAWKcqv7t0iRhhmaod+Yn9mcrLN1sa3q3KSQ9BCyxezCD4Mk2
34
+ R2P11bWoCtr70BsccVrN8jEhzwXngMyI2gVt750Y+dbTu1KgRqZKp/ECe7ZzPzXj
35
+ pIy9vHxTANKYVyI4qj8OrFdEM5BQNu8oQpL0iQ==
36
36
  -----END CERTIFICATE-----
37
- date: 2021-03-30 00:00:00.000000000 Z
37
+ date: 2021-09-29 00:00:00.000000000 Z
38
38
  dependencies:
39
39
  - !ruby/object:Gem::Dependency
40
40
  name: delivery_boy
@@ -135,7 +135,6 @@ extra_rdoc_files: []
135
135
  files:
136
136
  - ".coditsu/ci.yml"
137
137
  - ".diffend.yml"
138
- - ".github/FUNDING.yml"
139
138
  - ".github/workflows/ci.yml"
140
139
  - ".gitignore"
141
140
  - ".rspec"
@@ -178,14 +177,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
178
177
  requirements:
179
178
  - - ">="
180
179
  - !ruby/object:Gem::Version
181
- version: 2.5.0
180
+ version: 2.6.0
182
181
  required_rubygems_version: !ruby/object:Gem::Requirement
183
182
  requirements:
184
183
  - - ">="
185
184
  - !ruby/object:Gem::Version
186
185
  version: '0'
187
186
  requirements: []
188
- rubygems_version: 3.2.3
187
+ rubygems_version: 3.2.28
189
188
  signing_key:
190
189
  specification_version: 4
191
190
  summary: Kafka messaging made easy!
metadata.gz.sig CHANGED
Binary file
data/.github/FUNDING.yml DELETED
@@ -1 +0,0 @@
1
- open_collective: karafka