karafka-web 1.0.0.rc2 → 1.0.0

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: 40523f2ea1cc3692a28961e8bab7627b6ae2855c51354298312aca0f04b2a4ce
4
- data.tar.gz: e633a829ba38a4f9d406b67246953736129beea35318472a08dda19a05b01215
3
+ metadata.gz: 36ff8195b930f55c0a0780a7009c1940ca807f24e2b202ce0c483dedda9d4f0b
4
+ data.tar.gz: 7989106b1ee525e3a7b3736bb9cea7f4db0409f2ecb23787d787262305b9f876
5
5
  SHA512:
6
- metadata.gz: 8a02a2163be4f9c267d53fe73505bfcce408acafc353c575de3f860138acaa84a52707040c771b8828b0a90bcad64a37930908d5fc6cec42ee675fb83a481a15
7
- data.tar.gz: a70a15746249bfb9005903e75cdc35ba8bf63a66e4d9ab102ae9f17101c17fc47a1a0318dc0a7264e3018be32ddcc27d244539d80d0b7599cf4fcee022dbe2f2
6
+ metadata.gz: 43087044c2b58ad9a07d6fc5f216bff82d1123efb8a8a90aabf9e43d33c7322899a7bbd9eaf0cfb7b78ceed9071862bcd9cd65abaf1604ef13e957fe67a875e3
7
+ data.tar.gz: b26e48d1dd301f59fac2093e7fa91ae54b036430130e7f2c2a39a9f1ad284467eb20c7cf9990df33bc233df7db68c65445e3b4a0eb4781ed43f748ae851057ac
data/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Karafka Web Changelog
2
2
 
3
- ## 1.0.0 (Unreleased)
3
+ ## 1.0.0 (2026-08-05)
4
4
  - **[Breaking]** Namespace the commanding pause configuration under `config.commanding.pause`. The flat `config.commanding.pause_timeout` setting has been removed in favor of the nested `config.commanding.pause.timeout` namespace, mirroring the pause configuration namespacing introduced in Karafka.
5
5
  - [Enhancement] Link the topic, partition and offset in the Explorer's single-message metadata table to the Explorer, matching the linking on the Errors detail view. The offset points at the message currently being viewed but is kept linked so the whole topic/partition/offset coordinate is navigable (#1179).
6
6
  - [Enhancement] Link the topic, partition and offsets on the Errors detail view to the Explorer, so you can jump straight from an error to the corresponding topic/partition/message. The `topic` links to the topic in the Explorer, the `partition` links to the partition, and the producer dispatch-error `offset` is now linked as well (previously only `first_offset`/`last_offset`/`committed_offset` were, and only when valid). Also linked the partition and its scanned offset range shown in the Search results metadata to the Explorer (#1179).
data/Gemfile.lock CHANGED
@@ -1,10 +1,10 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- karafka-web (1.0.0.rc2)
4
+ karafka-web (1.0.0)
5
5
  erubi (~> 1.4)
6
- karafka (>= 2.6.0.rc2, < 2.7.0)
7
- karafka-core (>= 2.6.0, < 2.7.0)
6
+ karafka (>= 2.6.0, < 2.7.0)
7
+ karafka-core (>= 2.6.2, < 2.7.0)
8
8
  roda (>= 3.100, < 4.0)
9
9
  tilt (~> 2.0)
10
10
 
@@ -34,10 +34,10 @@ GEM
34
34
  raabro (~> 1.4)
35
35
  io-console (0.8.2)
36
36
  json (2.20.0)
37
- karafka (2.6.0.rc2)
38
- karafka-core (>= 2.6.0, < 2.7.0)
37
+ karafka (2.6.0)
38
+ karafka-core (>= 2.6.2, < 2.7.0)
39
39
  karafka-rdkafka (>= 0.28.0)
40
- waterdrop (>= 2.10.1, < 3.0.0)
40
+ waterdrop (>= 2.10.2, < 3.0.0)
41
41
  zeitwerk (~> 2.3)
42
42
  karafka-core (2.6.2)
43
43
  karafka-rdkafka (>= 0.20.0)
data/karafka-web.gemspec CHANGED
@@ -17,8 +17,8 @@ Gem::Specification.new do |spec|
17
17
  spec.licenses = %w[LGPL-3.0-only Commercial]
18
18
 
19
19
  spec.add_dependency "erubi", "~> 1.4"
20
- spec.add_dependency "karafka", ">= 2.6.0.rc2", "< 2.7.0"
21
- spec.add_dependency "karafka-core", ">= 2.6.0", "< 2.7.0"
20
+ spec.add_dependency "karafka", ">= 2.6.0", "< 2.7.0"
21
+ spec.add_dependency "karafka-core", ">= 2.6.2", "< 2.7.0"
22
22
  spec.add_dependency "roda", ">= 3.100", "< 4.0"
23
23
  spec.add_dependency "tilt", "~> 2.0"
24
24
 
@@ -3,6 +3,6 @@
3
3
  module Karafka
4
4
  module Web
5
5
  # Current gem version
6
- VERSION = "1.0.0.rc2"
6
+ VERSION = "1.0.0"
7
7
  end
8
8
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: karafka-web
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0.rc2
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Maciej Mensfeld
@@ -29,7 +29,7 @@ dependencies:
29
29
  requirements:
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 2.6.0.rc2
32
+ version: 2.6.0
33
33
  - - "<"
34
34
  - !ruby/object:Gem::Version
35
35
  version: 2.7.0
@@ -39,7 +39,7 @@ dependencies:
39
39
  requirements:
40
40
  - - ">="
41
41
  - !ruby/object:Gem::Version
42
- version: 2.6.0.rc2
42
+ version: 2.6.0
43
43
  - - "<"
44
44
  - !ruby/object:Gem::Version
45
45
  version: 2.7.0
@@ -49,7 +49,7 @@ dependencies:
49
49
  requirements:
50
50
  - - ">="
51
51
  - !ruby/object:Gem::Version
52
- version: 2.6.0
52
+ version: 2.6.2
53
53
  - - "<"
54
54
  - !ruby/object:Gem::Version
55
55
  version: 2.7.0
@@ -59,7 +59,7 @@ dependencies:
59
59
  requirements:
60
60
  - - ">="
61
61
  - !ruby/object:Gem::Version
62
- version: 2.6.0
62
+ version: 2.6.2
63
63
  - - "<"
64
64
  - !ruby/object:Gem::Version
65
65
  version: 2.7.0