karafka-testing 1.4.1 → 1.4.2

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: 19130847e9607348b55eedc0d6a646113548875734d63ea9ba6b652708ab1b9e
4
- data.tar.gz: b63887118ed136596a44484f34cb781f466de860e27618f5d13ee09c45686b26
3
+ metadata.gz: cf9bf583523d313a336fcc66427ccfeb0ed2a854f43437b80997e6e1013596ea
4
+ data.tar.gz: c949566d9675d397c265255d9951c1524bf4e7f5b0a7c5f2390943ec49accb13
5
5
  SHA512:
6
- metadata.gz: a3d3ab80d3987864875eb2c6e1bfae0865616c0f40400a6f6668b35710ca8dfc4ded231dfbb1d1e827ce4932376bb81cda5d03f3bc9a39a6db40b5b5864c3aa6
7
- data.tar.gz: e8576e71a4e3a0cd5394e1c06990a917b67a41ab311d945c4cc5420588abc063bfbae9d6eee4e95de9dc8b770986192952f2110135cf6a6794ff67259c017301
6
+ metadata.gz: d235a752c5de038dcf15006f745f9fb9111ac38d2dd26de52b306debb56b8b160c9160b732f1e53a4f3c8d0133d568874dba6c2b966bd5ebcefb5bb4172f0359
7
+ data.tar.gz: bfb955a6f6f988710d46c3f0b82e5b7608b73ffab0659ca369cc35badc47530771f15d87e2d60d043b9a8cab0f68b6c2c72b6c19dc9f610bb80f50fe22b347a0
checksums.yaml.gz.sig CHANGED
Binary file
data.tar.gz.sig CHANGED
Binary file
@@ -1,6 +1,7 @@
1
1
  name: ci
2
2
 
3
3
  on:
4
+ pull_request:
4
5
  push:
5
6
  schedule:
6
7
  - cron: '0 1 * * *'
@@ -8,15 +9,16 @@ on:
8
9
  jobs:
9
10
  specs:
10
11
  runs-on: ubuntu-latest
12
+ needs: diffend
11
13
  strategy:
12
14
  fail-fast: false
13
15
  matrix:
14
16
  ruby:
17
+ - '3.0'
15
18
  - '2.7'
16
19
  - '2.6'
17
- - '2.5'
18
20
  include:
19
- - ruby: '2.7'
21
+ - ruby: '3.0'
20
22
  coverage: 'true'
21
23
  steps:
22
24
  - uses: actions/checkout@v2
@@ -32,6 +34,26 @@ jobs:
32
34
  - name: Bundle install
33
35
  run: |
34
36
  bundle install --jobs 4 --retry 3
37
+
38
+ diffend:
39
+ runs-on: ubuntu-latest
40
+ strategy:
41
+ fail-fast: false
42
+ steps:
43
+ - uses: actions/checkout@v2
44
+ with:
45
+ fetch-depth: 0
46
+ - name: Set up Ruby
47
+ uses: ruby/setup-ruby@v1
48
+ with:
49
+ ruby-version: 3.0
50
+ - name: Install latest bundler
51
+ run: gem install bundler --no-document
52
+ - name: Install Diffend plugin
53
+ run: bundle plugin install diffend
54
+ - name: Bundle Secure
55
+ run: bundle secure
56
+
35
57
  coditsu:
36
58
  runs-on: ubuntu-latest
37
59
  strategy:
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 2.7.1
1
+ 3.0.1
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Karafka Test gem changelog
2
2
 
3
+ ## 1.4.2 (2021-04-21)
4
+ - Restore MIT license
5
+ - Remove Ruby 2.5 support and update minimum Ruby requirement to 2.6
6
+
3
7
  ## 1.4.1 (2020-09-05)
4
8
  - Fix for Ruby 2.5 and 2.6 support
5
9
 
data/Gemfile.lock CHANGED
@@ -1,103 +1,96 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- karafka-testing (1.4.1)
5
- karafka (~> 1.4.0.rc2)
4
+ karafka-testing (1.4.2)
5
+ karafka (~> 1.4.0)
6
6
 
7
7
  GEM
8
8
  remote: https://rubygems.org/
9
9
  specs:
10
- concurrent-ruby (1.1.7)
11
- delivery_boy (1.0.1)
12
- king_konf (~> 0.3)
10
+ concurrent-ruby (1.1.8)
11
+ delivery_boy (1.1.0)
12
+ king_konf (~> 1.0)
13
13
  ruby-kafka (~> 1.0)
14
- digest-crc (0.6.1)
15
- rake (~> 13.0)
16
- dry-configurable (0.11.6)
14
+ digest-crc (0.6.3)
15
+ rake (>= 12.0.0, < 14.0.0)
16
+ dry-configurable (0.12.1)
17
17
  concurrent-ruby (~> 1.0)
18
- dry-core (~> 0.4, >= 0.4.7)
19
- dry-equalizer (~> 0.2)
18
+ dry-core (~> 0.5, >= 0.5.0)
20
19
  dry-container (0.7.2)
21
20
  concurrent-ruby (~> 1.0)
22
21
  dry-configurable (~> 0.1, >= 0.1.3)
23
- dry-core (0.4.9)
22
+ dry-core (0.5.0)
24
23
  concurrent-ruby (~> 1.0)
25
24
  dry-equalizer (0.3.0)
26
- dry-events (0.2.0)
25
+ dry-events (0.3.0)
27
26
  concurrent-ruby (~> 1.0)
28
- dry-core (~> 0.4)
29
- dry-equalizer (~> 0.2)
27
+ dry-core (~> 0.5, >= 0.5)
30
28
  dry-inflector (0.2.0)
31
- dry-initializer (3.0.3)
32
- dry-logic (1.0.7)
29
+ dry-initializer (3.0.4)
30
+ dry-logic (1.1.1)
33
31
  concurrent-ruby (~> 1.0)
34
- dry-core (~> 0.2)
35
- dry-equalizer (~> 0.2)
36
- dry-monitor (0.3.2)
32
+ dry-core (~> 0.5, >= 0.5)
33
+ dry-monitor (0.4.0)
37
34
  dry-configurable (~> 0.5)
38
- dry-core (~> 0.4)
39
- dry-equalizer (~> 0.2)
35
+ dry-core (~> 0.5, >= 0.5)
40
36
  dry-events (~> 0.2)
41
- dry-schema (1.5.4)
37
+ dry-schema (1.6.2)
42
38
  concurrent-ruby (~> 1.0)
43
39
  dry-configurable (~> 0.8, >= 0.8.3)
44
- dry-core (~> 0.4)
45
- dry-equalizer (~> 0.2)
40
+ dry-core (~> 0.5, >= 0.5)
46
41
  dry-initializer (~> 3.0)
47
42
  dry-logic (~> 1.0)
48
- dry-types (~> 1.4)
49
- dry-types (1.4.0)
43
+ dry-types (~> 1.5)
44
+ dry-types (1.5.1)
50
45
  concurrent-ruby (~> 1.0)
51
46
  dry-container (~> 0.3)
52
- dry-core (~> 0.4, >= 0.4.4)
53
- dry-equalizer (~> 0.3)
47
+ dry-core (~> 0.5, >= 0.5)
54
48
  dry-inflector (~> 0.1, >= 0.1.2)
55
49
  dry-logic (~> 1.0, >= 1.0.2)
56
- dry-validation (1.5.6)
50
+ dry-validation (1.6.0)
57
51
  concurrent-ruby (~> 1.0)
58
52
  dry-container (~> 0.7, >= 0.7.1)
59
53
  dry-core (~> 0.4)
60
54
  dry-equalizer (~> 0.2)
61
55
  dry-initializer (~> 3.0)
62
56
  dry-schema (~> 1.5, >= 1.5.2)
63
- envlogic (1.1.2)
57
+ envlogic (1.1.3)
64
58
  dry-inflector (~> 0.1)
65
- io-console (0.5.6)
66
- irb (1.2.4)
67
- reline (>= 0.0.1)
68
- karafka (1.4.0.rc2)
59
+ io-console (0.5.9)
60
+ irb (1.3.5)
61
+ reline (>= 0.1.5)
62
+ karafka (1.4.4)
69
63
  dry-configurable (~> 0.8)
70
64
  dry-inflector (~> 0.1)
71
65
  dry-monitor (~> 0.3)
72
66
  dry-validation (~> 1.2)
73
67
  envlogic (~> 1.1)
74
68
  irb (~> 1.0)
75
- rake (>= 11.3)
76
69
  ruby-kafka (>= 1.0.0)
77
70
  thor (>= 0.20)
78
71
  waterdrop (~> 1.4.0)
79
72
  zeitwerk (~> 2.1)
80
- king_konf (0.3.7)
81
- rake (13.0.1)
82
- reline (0.1.4)
73
+ king_konf (1.0.0)
74
+ rake (13.0.3)
75
+ reline (0.2.5)
83
76
  io-console (~> 0.5)
84
- ruby-kafka (1.2.0)
77
+ ruby-kafka (1.3.0)
85
78
  digest-crc
86
- thor (1.0.1)
87
- waterdrop (1.4.0)
79
+ thor (1.1.0)
80
+ waterdrop (1.4.2)
88
81
  delivery_boy (>= 0.2, < 2.x)
89
82
  dry-configurable (~> 0.8)
90
83
  dry-monitor (~> 0.3)
91
84
  dry-validation (~> 1.2)
92
85
  ruby-kafka (>= 0.7.8)
93
86
  zeitwerk (~> 2.1)
94
- zeitwerk (2.4.0)
87
+ zeitwerk (2.4.2)
95
88
 
96
89
  PLATFORMS
97
- ruby
90
+ x86_64-linux
98
91
 
99
92
  DEPENDENCIES
100
93
  karafka-testing!
101
94
 
102
95
  BUNDLED WITH
103
- 2.1.4
96
+ 2.2.16
data/MIT-LICENSE ADDED
@@ -0,0 +1,18 @@
1
+ Permission is hereby granted, free of charge, to any person obtaining
2
+ a copy of this software and associated documentation files (the
3
+ "Software"), to deal in the Software without restriction, including
4
+ without limitation the rights to use, copy, modify, merge, publish,
5
+ distribute, sublicense, and/or sell copies of the Software, and to
6
+ permit persons to whom the Software is furnished to do so, subject to
7
+ the following conditions:
8
+
9
+ The above copyright notice and this permission notice shall be
10
+ included in all copies or substantial portions of the Software.
11
+
12
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
13
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
14
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
15
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
16
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
17
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
18
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md CHANGED
@@ -1,7 +1,8 @@
1
1
  # Karafka Testing library
2
2
 
3
3
  [![Build Status](https://github.com/karafka/testing/workflows/ci/badge.svg)](https://github.com/karafka/testing/actions?query=workflow%3Aci)
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
+ [![Gem Version](https://badge.fury.io/rb/karafka-testing.svg)](http://badge.fury.io/rb/karafka-testing)
5
+ [![Join the chat at https://gitter.im/karafka/karafka](https://badges.gitter.im/karafka/karafka.svg)](https://gitter.im/karafka/karafka)
5
6
 
6
7
  Karafka-Testing is a library that provides rspec helpers, to make testing of Karafka consumers much easier.
7
8
 
@@ -73,6 +74,4 @@ Each pull request must pass all the RSpec specs and meet our quality requirement
73
74
 
74
75
  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.
75
76
 
76
- 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/test/builds/commit_builds) of the Karafka Testing repository.
77
-
78
- [![coditsu](https://coditsu.io/assets/quality_bar.svg)](https://app.coditsu.io/karafka/repositories/testing/builds/commit_builds)
77
+ 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/testing/builds/commit_builds) of the Karafka Testing repository.
@@ -14,17 +14,17 @@ Gem::Specification.new do |spec|
14
14
  spec.summary = 'Library which provides helpers for easier Karafka consumers tests'
15
15
  spec.description = 'Library which provides helpers for easier Karafka consumers tests'
16
16
  spec.homepage = 'https://github.com/karafka/testing'
17
- spec.license = 'LGPL-3.0'
17
+ spec.license = 'MIT'
18
18
  spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(spec)/}) }
19
19
  spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
20
20
  spec.require_paths = %w[lib]
21
21
  spec.cert_chain = %w[certs/mensfeld.pem]
22
22
 
23
- spec.required_ruby_version = '>= 2.5.0'
23
+ spec.required_ruby_version = '>= 2.6.0'
24
24
 
25
25
  if $PROGRAM_NAME.end_with?('gem')
26
26
  spec.signing_key = File.expand_path('~/.ssh/gem-private_key.pem')
27
27
  end
28
28
 
29
- spec.add_dependency 'karafka', '~> 1.4.0.rc2'
29
+ spec.add_dependency 'karafka', '~> 1.4.0'
30
30
  end
@@ -4,6 +4,6 @@
4
4
  module Karafka
5
5
  module Testing
6
6
  # Current version of gem. It should match Karafka framework version
7
- VERSION = '1.4.1'
7
+ VERSION = '1.4.2'
8
8
  end
9
9
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: karafka-testing
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.1
4
+ version: 1.4.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Maciej Mensfeld
@@ -34,7 +34,7 @@ cert_chain:
34
34
  2DND//YJUikn1zwbz1kT70XmHd97B4Eytpln7K+M1u2g1pHVEPW4owD/ammXNpUy
35
35
  nt70FcDD4yxJQ+0YNiHd0N8IcVBM1TMIVctMNQ==
36
36
  -----END CERTIFICATE-----
37
- date: 2020-09-05 00:00:00.000000000 Z
37
+ date: 2021-04-21 00:00:00.000000000 Z
38
38
  dependencies:
39
39
  - !ruby/object:Gem::Dependency
40
40
  name: karafka
@@ -42,14 +42,14 @@ dependencies:
42
42
  requirements:
43
43
  - - "~>"
44
44
  - !ruby/object:Gem::Version
45
- version: 1.4.0.rc2
45
+ version: 1.4.0
46
46
  type: :runtime
47
47
  prerelease: false
48
48
  version_requirements: !ruby/object:Gem::Requirement
49
49
  requirements:
50
50
  - - "~>"
51
51
  - !ruby/object:Gem::Version
52
- version: 1.4.0.rc2
52
+ version: 1.4.0
53
53
  description: Library which provides helpers for easier Karafka consumers tests
54
54
  email:
55
55
  - maciej@mensfeld.pl
@@ -68,7 +68,7 @@ files:
68
68
  - CHANGELOG.md
69
69
  - Gemfile
70
70
  - Gemfile.lock
71
- - LICENSE
71
+ - MIT-LICENSE
72
72
  - README.md
73
73
  - certs/mensfeld.pem
74
74
  - karafka-testing.gemspec
@@ -79,7 +79,7 @@ files:
79
79
  - lib/karafka/testing/version.rb
80
80
  homepage: https://github.com/karafka/testing
81
81
  licenses:
82
- - LGPL-3.0
82
+ - MIT
83
83
  metadata: {}
84
84
  post_install_message:
85
85
  rdoc_options: []
@@ -89,14 +89,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
89
89
  requirements:
90
90
  - - ">="
91
91
  - !ruby/object:Gem::Version
92
- version: 2.5.0
92
+ version: 2.6.0
93
93
  required_rubygems_version: !ruby/object:Gem::Requirement
94
94
  requirements:
95
95
  - - ">="
96
96
  - !ruby/object:Gem::Version
97
97
  version: '0'
98
98
  requirements: []
99
- rubygems_version: 3.1.4
99
+ rubygems_version: 3.2.15
100
100
  signing_key:
101
101
  specification_version: 4
102
102
  summary: Library which provides helpers for easier Karafka consumers tests
metadata.gz.sig CHANGED
Binary file
data/LICENSE DELETED
@@ -1,165 +0,0 @@
1
- GNU LESSER GENERAL PUBLIC LICENSE
2
- Version 3, 29 June 2007
3
-
4
- Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
5
- Everyone is permitted to copy and distribute verbatim copies
6
- of this license document, but changing it is not allowed.
7
-
8
-
9
- This version of the GNU Lesser General Public License incorporates
10
- the terms and conditions of version 3 of the GNU General Public
11
- License, supplemented by the additional permissions listed below.
12
-
13
- 0. Additional Definitions.
14
-
15
- As used herein, "this License" refers to version 3 of the GNU Lesser
16
- General Public License, and the "GNU GPL" refers to version 3 of the GNU
17
- General Public License.
18
-
19
- "The Library" refers to a covered work governed by this License,
20
- other than an Application or a Combined Work as defined below.
21
-
22
- An "Application" is any work that makes use of an interface provided
23
- by the Library, but which is not otherwise based on the Library.
24
- Defining a subclass of a class defined by the Library is deemed a mode
25
- of using an interface provided by the Library.
26
-
27
- A "Combined Work" is a work produced by combining or linking an
28
- Application with the Library. The particular version of the Library
29
- with which the Combined Work was made is also called the "Linked
30
- Version".
31
-
32
- The "Minimal Corresponding Source" for a Combined Work means the
33
- Corresponding Source for the Combined Work, excluding any source code
34
- for portions of the Combined Work that, considered in isolation, are
35
- based on the Application, and not on the Linked Version.
36
-
37
- The "Corresponding Application Code" for a Combined Work means the
38
- object code and/or source code for the Application, including any data
39
- and utility programs needed for reproducing the Combined Work from the
40
- Application, but excluding the System Libraries of the Combined Work.
41
-
42
- 1. Exception to Section 3 of the GNU GPL.
43
-
44
- You may convey a covered work under sections 3 and 4 of this License
45
- without being bound by section 3 of the GNU GPL.
46
-
47
- 2. Conveying Modified Versions.
48
-
49
- If you modify a copy of the Library, and, in your modifications, a
50
- facility refers to a function or data to be supplied by an Application
51
- that uses the facility (other than as an argument passed when the
52
- facility is invoked), then you may convey a copy of the modified
53
- version:
54
-
55
- a) under this License, provided that you make a good faith effort to
56
- ensure that, in the event an Application does not supply the
57
- function or data, the facility still operates, and performs
58
- whatever part of its purpose remains meaningful, or
59
-
60
- b) under the GNU GPL, with none of the additional permissions of
61
- this License applicable to that copy.
62
-
63
- 3. Object Code Incorporating Material from Library Header Files.
64
-
65
- The object code form of an Application may incorporate material from
66
- a header file that is part of the Library. You may convey such object
67
- code under terms of your choice, provided that, if the incorporated
68
- material is not limited to numerical parameters, data structure
69
- layouts and accessors, or small macros, inline functions and templates
70
- (ten or fewer lines in length), you do both of the following:
71
-
72
- a) Give prominent notice with each copy of the object code that the
73
- Library is used in it and that the Library and its use are
74
- covered by this License.
75
-
76
- b) Accompany the object code with a copy of the GNU GPL and this license
77
- document.
78
-
79
- 4. Combined Works.
80
-
81
- You may convey a Combined Work under terms of your choice that,
82
- taken together, effectively do not restrict modification of the
83
- portions of the Library contained in the Combined Work and reverse
84
- engineering for debugging such modifications, if you also do each of
85
- the following:
86
-
87
- a) Give prominent notice with each copy of the Combined Work that
88
- the Library is used in it and that the Library and its use are
89
- covered by this License.
90
-
91
- b) Accompany the Combined Work with a copy of the GNU GPL and this license
92
- document.
93
-
94
- c) For a Combined Work that displays copyright notices during
95
- execution, include the copyright notice for the Library among
96
- these notices, as well as a reference directing the user to the
97
- copies of the GNU GPL and this license document.
98
-
99
- d) Do one of the following:
100
-
101
- 0) Convey the Minimal Corresponding Source under the terms of this
102
- License, and the Corresponding Application Code in a form
103
- suitable for, and under terms that permit, the user to
104
- recombine or relink the Application with a modified version of
105
- the Linked Version to produce a modified Combined Work, in the
106
- manner specified by section 6 of the GNU GPL for conveying
107
- Corresponding Source.
108
-
109
- 1) Use a suitable shared library mechanism for linking with the
110
- Library. A suitable mechanism is one that (a) uses at run time
111
- a copy of the Library already present on the user's computer
112
- system, and (b) will operate properly with a modified version
113
- of the Library that is interface-compatible with the Linked
114
- Version.
115
-
116
- e) Provide Installation Information, but only if you would otherwise
117
- be required to provide such information under section 6 of the
118
- GNU GPL, and only to the extent that such information is
119
- necessary to install and execute a modified version of the
120
- Combined Work produced by recombining or relinking the
121
- Application with a modified version of the Linked Version. (If
122
- you use option 4d0, the Installation Information must accompany
123
- the Minimal Corresponding Source and Corresponding Application
124
- Code. If you use option 4d1, you must provide the Installation
125
- Information in the manner specified by section 6 of the GNU GPL
126
- for conveying Corresponding Source.)
127
-
128
- 5. Combined Libraries.
129
-
130
- You may place library facilities that are a work based on the
131
- Library side by side in a single library together with other library
132
- facilities that are not Applications and are not covered by this
133
- License, and convey such a combined library under terms of your
134
- choice, if you do both of the following:
135
-
136
- a) Accompany the combined library with a copy of the same work based
137
- on the Library, uncombined with any other library facilities,
138
- conveyed under the terms of this License.
139
-
140
- b) Give prominent notice with the combined library that part of it
141
- is a work based on the Library, and explaining where to find the
142
- accompanying uncombined form of the same work.
143
-
144
- 6. Revised Versions of the GNU Lesser General Public License.
145
-
146
- The Free Software Foundation may publish revised and/or new versions
147
- of the GNU Lesser General Public License from time to time. Such new
148
- versions will be similar in spirit to the present version, but may
149
- differ in detail to address new problems or concerns.
150
-
151
- Each version is given a distinguishing version number. If the
152
- Library as you received it specifies that a certain numbered version
153
- of the GNU Lesser General Public License "or any later version"
154
- applies to it, you have the option of following the terms and
155
- conditions either of that published version or of any later version
156
- published by the Free Software Foundation. If the Library as you
157
- received it does not specify a version number of the GNU Lesser
158
- General Public License, you may choose any version of the GNU Lesser
159
- General Public License ever published by the Free Software Foundation.
160
-
161
- If the Library as you received it specifies that a proxy can decide
162
- whether future versions of the GNU Lesser General Public License shall
163
- apply, that proxy's public statement of acceptance of any version is
164
- permanent authorization for you to choose that version for the
165
- Library.