karafka-rdkafka 0.20.0.rc4-x86_64-linux-musl → 0.20.0.rc5-x86_64-linux-musl

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: dd99c2c62c306653ed04cde903454408ae3ee4c59316ab4e2fa8da495307a98b
4
- data.tar.gz: 007d9fe5481f9ebfee55fbcbe6a5d5656e6dc6cc44a2095ecaef7d8d336b52fa
3
+ metadata.gz: 1d2d6125b6954410cb9098281bd6d1eabfd0ab86ada44ac39e6efb95dbb37ff3
4
+ data.tar.gz: 1e041095a23df17774a1c419e0bb423ef478576a85477ed6bea0bc61f2824fc6
5
5
  SHA512:
6
- metadata.gz: fc8d968ad84f4cf5a0253cd1a68d7128ba95c7fe7348f0e01be6a468ce737ad0fea15cb4f008e9bc1a802a013a85be098f01a51271908fc1152b6d2e0b08c09d
7
- data.tar.gz: 1cc9b177099d3426e065510ab46ae4e988b2977d657146a7c551fa016b81a4c4b60b8c7427b36fcbfcefafba45ec59b781970a444f9a22bd532dcf806e33ec86
6
+ metadata.gz: d88954f0368cc5ec341f73744c78e669e567b78ccd686f8e8485982a00da62d493c157bf957ff3c2c2d86016c3113b8ac2a9dedc6163825ec7cad576332e31b9
7
+ data.tar.gz: 5077305742c856d49fd31fef627c79f4a477dedbf31eaee4d313863f20e47dff3d3ec86ce3054be639bb24a26f443f354fdc3d94f7454bb77956433cb6e136d1
@@ -13,6 +13,7 @@ jobs:
13
13
  if: github.repository_owner == 'karafka'
14
14
  timeout-minutes: 30
15
15
  runs-on: ubuntu-latest
16
+ environment: deployment
16
17
  container:
17
18
  image: alpine:3.22@sha256:8a1f59ffb675680d47db6337b49d22281a139e9d709335b492be023728e11715
18
19
  steps:
@@ -43,7 +44,6 @@ jobs:
43
44
  name: librdkafka-precompiled-musl
44
45
  path: ext/
45
46
  retention-days: 1
46
-
47
47
  push:
48
48
  if: github.repository_owner == 'karafka'
49
49
  timeout-minutes: 30
data/CHANGELOG.md CHANGED
@@ -5,6 +5,9 @@
5
5
  - **[Feature]** Add precompiled `x86_64-linux-musl` setup.
6
6
  - **[Feature]** Add precompiled `macos_arm64` setup.
7
7
  - [Enhancement] Run all specs on each of the platforms with and without precompilation.
8
+ - [Fix] Fix a case where using empty key on the `musl` architecture would cause a segfault.
9
+
10
+ **Note**: Precompiled extensions are a new feature in this release. While they significantly improve installation speed and reduce build dependencies, they should be thoroughly tested in your staging environment before deploying to production. If you encounter any issues with precompiled extensions, you can fall back to building from sources.
8
11
 
9
12
  ## 0.19.5 (2025-05-30)
10
13
  - [Enhancement] Allow for producing to non-existing topics with `key` and `partition_key` present.
data/ext/librdkafka.so CHANGED
Binary file
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Rdkafka
4
- VERSION = "0.20.0.rc4"
4
+ VERSION = "0.20.0.rc5"
5
5
  LIBRDKAFKA_VERSION = "2.8.0"
6
6
  LIBRDKAFKA_SOURCE_SHA256 = "5bd1c46f63265f31c6bfcedcde78703f77d28238eadf23821c2b43fc30be3e25"
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: karafka-rdkafka
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.20.0.rc4
4
+ version: 0.20.0.rc5
5
5
  platform: x86_64-linux-musl
6
6
  authors:
7
7
  - Thijs Cadier