karafka-core 2.4.8 → 2.4.10

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0e34bcf6353effd741851f89dd7fe24f4d7f4ac40e98fb9de47cf0c5d07fe291
4
- data.tar.gz: 9519a4504aa364fdc85bf5b7f276388c7af768fd2d5b31cc352f299161e0f2ca
3
+ metadata.gz: 798eaca53e61de396b7cf8d5a0ccf2350a8388016a7e8bc91056249622c81a4d
4
+ data.tar.gz: 8213135229dcaddbeeb87cfeb02a6301849b8ec5184fa72f5283dbc86da8be84
5
5
  SHA512:
6
- metadata.gz: ee543eedc383def47ddf55ac798c4af4bdcce119ed569f930469c6b67a0599aa84fa40256fd2b63c543239a259de908e1c7ed5b14ccc2d4be53b2cf864ba40aa
7
- data.tar.gz: a716f13946143d35ffee0ad080e9418f68a7deba717578b05ed8ecdccefb6757ea2408a038872f9b9008d3dfa98e3ecca241b75e45d080e9893d510e733b44da
6
+ metadata.gz: a0c0ce5c5724470370578cc48c38e06bcf714730cec7d488db61e5651e8d47e9525cebb8c1219fb515432e7390f34879deb8b8abc87130e9dbc88b48bf715f73
7
+ data.tar.gz: b004561540f9689926bfc248fc13bf9e1b874c33d7607f3803915822bd09c4864386608e1074f0ab53128c659b7f2ac9aef9c97d37e794ebe43c27a906d6a0e2
checksums.yaml.gz.sig CHANGED
Binary file
@@ -0,0 +1,3 @@
1
+ /.github @mensfeld
2
+ /.github/workflows/ @mensfeld
3
+ /.github/actions/ @mensfeld
@@ -6,12 +6,18 @@ concurrency:
6
6
 
7
7
  on:
8
8
  pull_request:
9
+ branches: [ main, master ]
9
10
  push:
11
+ branches: [ main, master ]
10
12
  schedule:
11
- - cron: '0 1 * * *'
13
+ - cron: '0 1 * * *'
14
+
15
+ permissions:
16
+ contents: read
12
17
 
13
18
  jobs:
14
19
  specs:
20
+ timeout-minutes: 15
15
21
  runs-on: ubuntu-latest
16
22
  needs: diffend
17
23
  strategy:
@@ -26,19 +32,23 @@ jobs:
26
32
  - ruby: '3.4'
27
33
  coverage: 'true'
28
34
  steps:
29
- - uses: actions/checkout@v4
35
+ - uses: actions/checkout@85e6279cec87321a52edac9c87bce653a07cf6c2
36
+ with:
37
+ fetch-depth: 0
38
+
30
39
  - name: Install package dependencies
31
40
  run: "[ -e $APT_DEPS ] || sudo apt-get install -y --no-install-recommends $APT_DEPS"
41
+
32
42
  - name: Set up Ruby
33
- uses: ruby/setup-ruby@v1
43
+ uses: ruby/setup-ruby@6c79f721fa26dd64559c2700086ac852c18e0756
34
44
  with:
35
45
  ruby-version: ${{matrix.ruby}}
36
46
  bundler: 'latest'
47
+
37
48
  - name: Install latest bundler
38
49
  run: |
39
50
  gem install bundler --no-document
40
51
  gem update --system --no-document
41
-
42
52
  bundle config set without 'tools benchmarks docs'
43
53
 
44
54
  - name: Bundle install
@@ -52,15 +62,16 @@ jobs:
52
62
  run: bundle exec rspec
53
63
 
54
64
  diffend:
65
+ timeout-minutes: 5
55
66
  runs-on: ubuntu-latest
56
67
  strategy:
57
68
  fail-fast: false
58
69
  steps:
59
- - uses: actions/checkout@v4
70
+ - uses: actions/checkout@85e6279cec87321a52edac9c87bce653a07cf6c2
60
71
  with:
61
72
  fetch-depth: 0
62
73
  - name: Set up Ruby
63
- uses: ruby/setup-ruby@v1
74
+ uses: ruby/setup-ruby@6c79f721fa26dd64559c2700086ac852c18e0756
64
75
  with:
65
76
  ruby-version: 3.4
66
77
  - name: Install latest bundler
@@ -71,12 +82,25 @@ jobs:
71
82
  run: bundle secure
72
83
 
73
84
  coditsu:
85
+ timeout-minutes: 5
74
86
  runs-on: ubuntu-latest
75
87
  strategy:
76
88
  fail-fast: false
77
89
  steps:
78
- - uses: actions/checkout@v4
90
+ - uses: actions/checkout@85e6279cec87321a52edac9c87bce653a07cf6c2
79
91
  with:
80
92
  fetch-depth: 0
93
+ - name: Download Coditsu script
94
+ run: |
95
+ curl -sSL https://api.coditsu.io/run/ci -o coditsu_script.sh
96
+ chmod +x coditsu_script.sh
97
+ - name: Verify Coditsu script checksum
98
+ run: |
99
+ EXPECTED_SHA256="0aecc5aa010f53fca264548a41467a2b0a1208d750ce1da3e98a217304cacbbc"
100
+ ACTUAL_SHA256=$(sha256sum coditsu_script.sh | awk '{ print $1 }')
101
+ if [ "$ACTUAL_SHA256" != "$EXPECTED_SHA256" ]; then
102
+ echo "::error::Checksum verification failed. Expected $EXPECTED_SHA256 but got $ACTUAL_SHA256."
103
+ exit 1
104
+ fi
81
105
  - name: Run Coditsu
82
- run: \curl -sSL https://api.coditsu.io/run/ci | bash
106
+ run: ./coditsu_script.sh
@@ -0,0 +1,16 @@
1
+ name: Verify Action Pins
2
+ on:
3
+ pull_request:
4
+ paths:
5
+ - '.github/workflows/**'
6
+ jobs:
7
+ verify:
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - uses: actions/checkout@85e6279cec87321a52edac9c87bce653a07cf6c2
11
+ - name: Check SHA pins
12
+ run: |
13
+ if grep -E -r "uses: .*/.*@(v[0-9]+|main|master)" .github/workflows/; then
14
+ echo "::error::Actions should use SHA pins, not tags or branch names"
15
+ exit 1
16
+ fi
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 3.4.1
1
+ 3.4.2
data/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Karafka Core Changelog
2
2
 
3
+ ## 2.4.10 (2025-03-14)
4
+ - Relax lock on `karafka-rdkafka`
5
+
6
+ ## 2.4.9 (2025-03-03)
7
+ - [Enhancement] Remove `RspecLocator` dependency on `activesupport`.
8
+
3
9
  ## 2.4.8 (2024-12-26)
4
10
  - [Maintenance] Declare `logger` as a dependency.
5
11
 
data/Gemfile CHANGED
@@ -8,7 +8,6 @@ gemspec
8
8
 
9
9
  group :test do
10
10
  gem 'byebug'
11
- gem 'factory_bot'
12
11
  gem 'rspec'
13
12
  gem 'simplecov'
14
13
  end
data/Gemfile.lock CHANGED
@@ -1,53 +1,39 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- karafka-core (2.4.8)
5
- karafka-rdkafka (>= 0.17.6, < 0.19.0)
4
+ karafka-core (2.4.10)
5
+ karafka-rdkafka (>= 0.17.6, < 0.20.0)
6
6
  logger (>= 1.6.0)
7
7
 
8
8
  GEM
9
9
  remote: https://rubygems.org/
10
10
  specs:
11
- activesupport (8.0.1)
12
- base64
13
- benchmark (>= 0.3)
14
- bigdecimal
15
- concurrent-ruby (~> 1.0, >= 1.3.1)
16
- connection_pool (>= 2.2.5)
17
- drb
18
- i18n (>= 1.6, < 2)
19
- logger (>= 1.4.2)
20
- minitest (>= 5.1)
21
- securerandom (>= 0.3)
22
- tzinfo (~> 2.0, >= 2.0.5)
23
- uri (>= 0.13.1)
24
- base64 (0.2.0)
25
- benchmark (0.4.0)
26
- bigdecimal (3.1.8)
27
11
  byebug (11.1.3)
28
- concurrent-ruby (1.3.4)
29
- connection_pool (2.4.1)
30
- diff-lcs (1.5.1)
12
+ diff-lcs (1.6.0)
31
13
  docile (1.4.1)
32
- drb (2.2.1)
33
- factory_bot (6.5.0)
34
- activesupport (>= 5.0.0)
35
- ffi (1.17.0)
36
- i18n (1.14.6)
37
- concurrent-ruby (~> 1.0)
38
- karafka-rdkafka (0.18.1)
14
+ ffi (1.17.1)
15
+ ffi (1.17.1-aarch64-linux-gnu)
16
+ ffi (1.17.1-aarch64-linux-musl)
17
+ ffi (1.17.1-arm-linux-gnu)
18
+ ffi (1.17.1-arm-linux-musl)
19
+ ffi (1.17.1-arm64-darwin)
20
+ ffi (1.17.1-x86-linux-gnu)
21
+ ffi (1.17.1-x86-linux-musl)
22
+ ffi (1.17.1-x86_64-darwin)
23
+ ffi (1.17.1-x86_64-linux-gnu)
24
+ ffi (1.17.1-x86_64-linux-musl)
25
+ karafka-rdkafka (0.19.0)
39
26
  ffi (~> 1.15)
40
27
  mini_portile2 (~> 2.6)
41
28
  rake (> 12)
42
- logger (1.6.4)
29
+ logger (1.6.6)
43
30
  mini_portile2 (2.8.8)
44
- minitest (5.25.4)
45
31
  rake (13.2.1)
46
32
  rspec (3.13.0)
47
33
  rspec-core (~> 3.13.0)
48
34
  rspec-expectations (~> 3.13.0)
49
35
  rspec-mocks (~> 3.13.0)
50
- rspec-core (3.13.2)
36
+ rspec-core (3.13.3)
51
37
  rspec-support (~> 3.13.0)
52
38
  rspec-expectations (3.13.3)
53
39
  diff-lcs (>= 1.2.0, < 2.0)
@@ -56,27 +42,31 @@ GEM
56
42
  diff-lcs (>= 1.2.0, < 2.0)
57
43
  rspec-support (~> 3.13.0)
58
44
  rspec-support (3.13.2)
59
- securerandom (0.4.1)
60
45
  simplecov (0.22.0)
61
46
  docile (~> 1.1)
62
47
  simplecov-html (~> 0.11)
63
48
  simplecov_json_formatter (~> 0.1)
64
49
  simplecov-html (0.13.1)
65
50
  simplecov_json_formatter (0.1.4)
66
- tzinfo (2.0.6)
67
- concurrent-ruby (~> 1.0)
68
- uri (1.0.2)
69
51
 
70
52
  PLATFORMS
53
+ aarch64-linux-gnu
54
+ aarch64-linux-musl
55
+ arm-linux-gnu
56
+ arm-linux-musl
57
+ arm64-darwin
71
58
  ruby
72
- x86_64-linux
59
+ x86-linux-gnu
60
+ x86-linux-musl
61
+ x86_64-darwin
62
+ x86_64-linux-gnu
63
+ x86_64-linux-musl
73
64
 
74
65
  DEPENDENCIES
75
66
  byebug
76
- factory_bot
77
67
  karafka-core!
78
68
  rspec
79
69
  simplecov
80
70
 
81
71
  BUNDLED WITH
82
- 2.6.1
72
+ 2.6.2
@@ -4,6 +4,9 @@ en:
4
4
  missing: needs to be present
5
5
  id_format: needs to be a String
6
6
  nested.id2_format: needs to be a String
7
+ id_format: needs to be a String
8
+ test_format: needs to be 5
9
+ details.id_format: needs to be a String
7
10
 
8
11
  config:
9
12
  missing: needs to be present
data/karafka-core.gemspec CHANGED
@@ -16,7 +16,7 @@ Gem::Specification.new do |spec|
16
16
  spec.description = 'A toolset of small support modules used throughout the Karafka ecosystem'
17
17
  spec.licenses = %w[MIT]
18
18
 
19
- spec.add_dependency 'karafka-rdkafka', '>= 0.17.6', '< 0.19.0'
19
+ spec.add_dependency 'karafka-rdkafka', '>= 0.17.6', '< 0.20.0'
20
20
  spec.add_dependency 'logger', '>= 1.6.0'
21
21
 
22
22
  spec.required_ruby_version = '>= 3.1.0'
@@ -24,9 +24,7 @@ module Karafka
24
24
  # @param rspec [Module] RSpec main module
25
25
  def extended(rspec)
26
26
  super
27
-
28
27
  this = self
29
-
30
28
  # Allows "auto subject" definitions for the `#describe` method, as it will figure
31
29
  # out the proper class that we want to describe
32
30
  # @param block [Proc] block with specs
@@ -47,9 +45,9 @@ module Karafka
47
45
  .delete_if(&:empty?)
48
46
  .itself[1..]
49
47
  .join('/')
50
- .camelize
48
+ .then { |path| custom_camelize(path) }
51
49
  .then { |string| transform_inflections(string) }
52
- .constantize
50
+ .then { |class_name| custom_constantize(class_name) }
53
51
  end
54
52
 
55
53
  private
@@ -58,11 +56,48 @@ module Karafka
58
56
  # @return [String] string after inflections
59
57
  def transform_inflections(string)
60
58
  string = string.dup
61
-
62
59
  @inflections.each { |from, to| string.gsub!(from, to) }
63
-
64
60
  string
65
61
  end
62
+
63
+ # Custom implementation of camelize without ActiveSupport
64
+ # @param string [String] underscored string to convert to CamelCase
65
+ # @return [String] camel-case string
66
+ def custom_camelize(string)
67
+ # First, replace slashes with :: for proper namespacing
68
+ string = string.gsub('/', '::')
69
+
70
+ # Then camelize each segment
71
+ string.gsub(/(?:^|_|::)([a-z])/) do |match|
72
+ # If it's a namespace separator, keep it and uppercase the following letter
73
+ if match.include?('::')
74
+ "::#{match[-1].upcase}"
75
+ else
76
+ match[-1].upcase
77
+ end
78
+ end
79
+ end
80
+
81
+ # Custom implementation of constantize without ActiveSupport
82
+ # @param string [String] string representing a constant name
83
+ # @return [Class, Module] the constant
84
+ def custom_constantize(string)
85
+ names = string.split('::')
86
+ constant = Object
87
+ regexp = /^[A-Z][a-zA-Z0-9_]*$/
88
+
89
+ names.each do |name|
90
+ # Make sure we're dealing with a valid constant name
91
+ raise NameError, "#{name} is not a valid constant name!" unless name.match?(regexp)
92
+
93
+ # Get the constant from its parent
94
+ constant = constant.const_get(name)
95
+ end
96
+
97
+ constant
98
+ rescue NameError => e
99
+ raise NameError, "Uninitialized constant #{string}: #{e.message}"
100
+ end
66
101
  end
67
102
  end
68
103
  end
@@ -4,6 +4,6 @@ module Karafka
4
4
  module Core
5
5
  # Current Karafka::Core version
6
6
  # We follow the versioning schema of given Karafka version
7
- VERSION = '2.4.8'
7
+ VERSION = '2.4.10'
8
8
  end
9
9
  end
data/renovate.json CHANGED
@@ -2,5 +2,15 @@
2
2
  "$schema": "https://docs.renovatebot.com/renovate-schema.json",
3
3
  "extends": [
4
4
  "config:base"
5
+ ],
6
+ "github-actions": {
7
+ "enabled": true,
8
+ "pinDigests": true
9
+ },
10
+ "packageRules": [
11
+ {
12
+ "matchManagers": ["github-actions"],
13
+ "minimumReleaseAge": "7 days"
14
+ }
5
15
  ]
6
16
  }
data.tar.gz.sig CHANGED
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: karafka-core
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.4.8
4
+ version: 2.4.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Maciej Mensfeld
@@ -34,7 +34,7 @@ cert_chain:
34
34
  i9zWxov0mr44TWegTVeypcWGd/0nxu1+QHVNHJrpqlPBRvwQsUm7fwmRInGpcaB8
35
35
  ap8wNYvryYzrzvzUxIVFBVM5PacgkFqRmolCa8I7tdKQN+R1
36
36
  -----END CERTIFICATE-----
37
- date: 2024-12-26 00:00:00.000000000 Z
37
+ date: 2025-03-14 00:00:00.000000000 Z
38
38
  dependencies:
39
39
  - !ruby/object:Gem::Dependency
40
40
  name: karafka-rdkafka
@@ -45,7 +45,7 @@ dependencies:
45
45
  version: 0.17.6
46
46
  - - "<"
47
47
  - !ruby/object:Gem::Version
48
- version: 0.19.0
48
+ version: 0.20.0
49
49
  type: :runtime
50
50
  prerelease: false
51
51
  version_requirements: !ruby/object:Gem::Requirement
@@ -55,7 +55,7 @@ dependencies:
55
55
  version: 0.17.6
56
56
  - - "<"
57
57
  - !ruby/object:Gem::Version
58
- version: 0.19.0
58
+ version: 0.20.0
59
59
  - !ruby/object:Gem::Dependency
60
60
  name: logger
61
61
  requirement: !ruby/object:Gem::Requirement
@@ -80,10 +80,12 @@ files:
80
80
  - ".coditsu/ci.yml"
81
81
  - ".console_irbrc"
82
82
  - ".diffend.yml"
83
+ - ".github/CODEOWNERS"
83
84
  - ".github/FUNDING.yml"
84
85
  - ".github/ISSUE_TEMPLATE/bug_report.md"
85
86
  - ".github/ISSUE_TEMPLATE/feature_request.md"
86
87
  - ".github/workflows/ci.yml"
88
+ - ".github/workflows/verify-action-pins.yml"
87
89
  - ".gitignore"
88
90
  - ".rspec"
89
91
  - ".ruby-gemset"
metadata.gz.sig CHANGED
Binary file