karafka-web 0.11.4 → 0.11.5
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 +4 -4
- data/CHANGELOG.md +3 -0
- data/Gemfile +1 -0
- data/Gemfile.lock +28 -24
- data/karafka-web.gemspec +1 -1
- data/lib/karafka/web/config.rb +6 -0
- data/lib/karafka/web/contracts/config.rb +1 -0
- data/lib/karafka/web/inflector.rb +1 -1
- data/lib/karafka/web/pro/ui/controllers/cluster_controller.rb +1 -1
- data/lib/karafka/web/ui/base.rb +7 -2
- data/lib/karafka/web/ui/helpers/paths_helper.rb +1 -1
- data/lib/karafka/web/ui/lib/cache.rb +1 -1
- data/lib/karafka/web/ui/lib/hash_proxy.rb +1 -1
- data/lib/karafka/web/ui/lib/paginations/paginators/sets.rb +1 -1
- data/lib/karafka/web/ui/models/broker.rb +1 -1
- data/lib/karafka/web/ui/public/stylesheets/application.min.css +3 -0
- data/lib/karafka/web/ui/public/stylesheets/application.min.css.br +0 -0
- data/lib/karafka/web/ui/public/stylesheets/application.min.css.gz +0 -0
- data/lib/karafka/web/version.rb +1 -1
- data/package-lock.json +78 -78
- data/package.json +3 -3
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 24ceb5279e48629e0a1c3a609b1c041323bdedc9faf6cf03dec926c7c0278b4f
|
|
4
|
+
data.tar.gz: 4ea8f9aef69bb0ee9ac51cc20e132e64e955df2984f6f2359b1c878421793972
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7861ba705d420ddd875053bb9f687302ad8d2719d332e925cab53075edf267245660e2467934c746f3707327f198538321585b77abe60fcb1bcb49c3c8a1771a
|
|
7
|
+
data.tar.gz: dd30a59da0ed8590eb471965d1f6e917b15f2a390eb099e4b1527ca1a490dda46695fb3a40cc1e96729f15377a2b74d3a361d593a8b6cf5747fb03ecd4efb461
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
# Karafka Web Changelog
|
|
2
2
|
|
|
3
|
+
## 0.11.5 (2025-11-14)
|
|
4
|
+
- [Enhancement] Utilize newly released Roda session management `:env_key` to isolate Karafka Web session from the main application session.
|
|
5
|
+
|
|
3
6
|
## 0.11.4 (2025-11-01)
|
|
4
7
|
- [Enhancement] Show placeholder rows for partitions with no data during rebalances in health view. The UI now displays all topic partitions (0 to N-1) with "No data available" indicators for partitions currently being rebalanced, preventing confusion from disappearing partitions. Consumer reports now include `partitions_cnt` field extracted from librdkafka statistics. Consumer schema version bumped to 1.5.0 (breaking change).
|
|
5
8
|
- [Enhancement] Track and report UI errors originating from Roda/Puma web processes directly to Kafka errors topic for visibility and debugging. UI errors are dispatched asynchronously from web processes using a dedicated listener.
|
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
|
@@ -1,31 +1,30 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
karafka-web (0.11.
|
|
4
|
+
karafka-web (0.11.5)
|
|
5
5
|
erubi (~> 1.4)
|
|
6
6
|
karafka (>= 2.5.2, < 2.6.0)
|
|
7
7
|
karafka-core (>= 2.5.0, < 2.6.0)
|
|
8
|
-
roda (~> 3.
|
|
8
|
+
roda (~> 3.69, >= 3.69)
|
|
9
9
|
tilt (~> 2.0)
|
|
10
10
|
|
|
11
11
|
GEM
|
|
12
12
|
remote: https://rubygems.org/
|
|
13
13
|
specs:
|
|
14
|
-
activesupport (8.
|
|
14
|
+
activesupport (8.1.1)
|
|
15
15
|
base64
|
|
16
|
-
benchmark (>= 0.3)
|
|
17
16
|
bigdecimal
|
|
18
17
|
concurrent-ruby (~> 1.0, >= 1.3.1)
|
|
19
18
|
connection_pool (>= 2.2.5)
|
|
20
19
|
drb
|
|
21
20
|
i18n (>= 1.6, < 2)
|
|
21
|
+
json
|
|
22
22
|
logger (>= 1.4.2)
|
|
23
23
|
minitest (>= 5.1)
|
|
24
24
|
securerandom (>= 0.3)
|
|
25
25
|
tzinfo (~> 2.0, >= 2.0.5)
|
|
26
26
|
uri (>= 0.13.1)
|
|
27
27
|
base64 (0.3.0)
|
|
28
|
-
benchmark (0.4.1)
|
|
29
28
|
bigdecimal (3.3.1)
|
|
30
29
|
byebug (12.0.0)
|
|
31
30
|
concurrent-ruby (1.3.5)
|
|
@@ -54,7 +53,7 @@ GEM
|
|
|
54
53
|
raabro (~> 1.4)
|
|
55
54
|
i18n (1.14.7)
|
|
56
55
|
concurrent-ruby (~> 1.0)
|
|
57
|
-
json (2.
|
|
56
|
+
json (2.16.0)
|
|
58
57
|
karafka (2.5.2)
|
|
59
58
|
base64 (~> 0.2)
|
|
60
59
|
karafka-core (>= 2.5.6, < 2.6.0)
|
|
@@ -64,39 +63,39 @@ GEM
|
|
|
64
63
|
karafka-core (2.5.7)
|
|
65
64
|
karafka-rdkafka (>= 0.20.0)
|
|
66
65
|
logger (>= 1.6.0)
|
|
67
|
-
karafka-rdkafka (0.
|
|
68
|
-
ffi (~> 1.
|
|
66
|
+
karafka-rdkafka (0.23.0)
|
|
67
|
+
ffi (~> 1.17.1)
|
|
69
68
|
json (> 2.0)
|
|
70
69
|
logger
|
|
71
70
|
mini_portile2 (~> 2.6)
|
|
72
71
|
rake (> 12)
|
|
73
|
-
karafka-rdkafka (0.
|
|
74
|
-
ffi (~> 1.
|
|
72
|
+
karafka-rdkafka (0.23.0-aarch64-linux-gnu)
|
|
73
|
+
ffi (~> 1.17.1)
|
|
75
74
|
json (> 2.0)
|
|
76
75
|
logger
|
|
77
76
|
mini_portile2 (~> 2.6)
|
|
78
77
|
rake (> 12)
|
|
79
|
-
karafka-rdkafka (0.
|
|
80
|
-
ffi (~> 1.
|
|
78
|
+
karafka-rdkafka (0.23.0-arm64-darwin)
|
|
79
|
+
ffi (~> 1.17.1)
|
|
81
80
|
json (> 2.0)
|
|
82
81
|
logger
|
|
83
82
|
mini_portile2 (~> 2.6)
|
|
84
83
|
rake (> 12)
|
|
85
|
-
karafka-rdkafka (0.
|
|
86
|
-
ffi (~> 1.
|
|
84
|
+
karafka-rdkafka (0.23.0-x86_64-linux-gnu)
|
|
85
|
+
ffi (~> 1.17.1)
|
|
87
86
|
json (> 2.0)
|
|
88
87
|
logger
|
|
89
88
|
mini_portile2 (~> 2.6)
|
|
90
89
|
rake (> 12)
|
|
91
|
-
karafka-rdkafka (0.
|
|
92
|
-
ffi (~> 1.
|
|
90
|
+
karafka-rdkafka (0.23.0-x86_64-linux-musl)
|
|
91
|
+
ffi (~> 1.17.1)
|
|
93
92
|
json (> 2.0)
|
|
94
93
|
logger
|
|
95
94
|
mini_portile2 (~> 2.6)
|
|
96
95
|
rake (> 12)
|
|
97
96
|
logger (1.7.0)
|
|
98
97
|
mini_portile2 (2.8.9)
|
|
99
|
-
minitest (5.26.
|
|
98
|
+
minitest (5.26.1)
|
|
100
99
|
nokogiri (1.18.10)
|
|
101
100
|
mini_portile2 (~> 2.8.2)
|
|
102
101
|
racc (~> 1.4)
|
|
@@ -119,14 +118,14 @@ GEM
|
|
|
119
118
|
ostruct (0.6.3)
|
|
120
119
|
raabro (1.4.0)
|
|
121
120
|
racc (1.8.1)
|
|
122
|
-
rack (3.2.
|
|
121
|
+
rack (3.2.4)
|
|
123
122
|
rack-test (2.2.0)
|
|
124
123
|
rack (>= 1.3)
|
|
125
124
|
rackup (0.2.3)
|
|
126
125
|
rack (>= 3.0.0.beta1)
|
|
127
126
|
webrick
|
|
128
|
-
rake (13.3.
|
|
129
|
-
roda (3.
|
|
127
|
+
rake (13.3.1)
|
|
128
|
+
roda (3.98.0)
|
|
130
129
|
rack
|
|
131
130
|
rspec (3.13.2)
|
|
132
131
|
rspec-core (~> 3.13.0)
|
|
@@ -137,7 +136,7 @@ GEM
|
|
|
137
136
|
rspec-expectations (3.13.5)
|
|
138
137
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
139
138
|
rspec-support (~> 3.13.0)
|
|
140
|
-
rspec-mocks (3.13.
|
|
139
|
+
rspec-mocks (3.13.7)
|
|
141
140
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
142
141
|
rspec-support (~> 3.13.0)
|
|
143
142
|
rspec-support (3.13.6)
|
|
@@ -151,12 +150,16 @@ GEM
|
|
|
151
150
|
tilt (2.6.1)
|
|
152
151
|
tzinfo (2.0.6)
|
|
153
152
|
concurrent-ruby (~> 1.0)
|
|
154
|
-
uri (1.
|
|
155
|
-
waterdrop (2.8.
|
|
153
|
+
uri (1.1.1)
|
|
154
|
+
waterdrop (2.8.13)
|
|
156
155
|
karafka-core (>= 2.4.9, < 3.0.0)
|
|
157
156
|
karafka-rdkafka (>= 0.20.0)
|
|
158
157
|
zeitwerk (~> 2.3)
|
|
159
158
|
webrick (1.9.1)
|
|
159
|
+
yard (0.9.37)
|
|
160
|
+
yard-lint (1.2.3)
|
|
161
|
+
yard (~> 0.9)
|
|
162
|
+
zeitwerk (~> 2.6)
|
|
160
163
|
zeitwerk (2.7.3)
|
|
161
164
|
|
|
162
165
|
PLATFORMS
|
|
@@ -183,6 +186,7 @@ DEPENDENCIES
|
|
|
183
186
|
rackup (~> 0.2)
|
|
184
187
|
rspec
|
|
185
188
|
simplecov
|
|
189
|
+
yard-lint
|
|
186
190
|
|
|
187
191
|
BUNDLED WITH
|
|
188
|
-
2.
|
|
192
|
+
2.7.1
|
data/karafka-web.gemspec
CHANGED
|
@@ -19,7 +19,7 @@ Gem::Specification.new do |spec|
|
|
|
19
19
|
spec.add_dependency 'erubi', '~> 1.4'
|
|
20
20
|
spec.add_dependency 'karafka', '>= 2.5.2', '< 2.6.0'
|
|
21
21
|
spec.add_dependency 'karafka-core', '>= 2.5.0', '< 2.6.0'
|
|
22
|
-
spec.add_dependency 'roda', '~> 3.
|
|
22
|
+
spec.add_dependency 'roda', '~> 3.69', '>= 3.69'
|
|
23
23
|
spec.add_dependency 'tilt', '~> 2.0'
|
|
24
24
|
|
|
25
25
|
spec.add_development_dependency 'rackup', '~> 0.2'
|
data/lib/karafka/web/config.rb
CHANGED
|
@@ -210,6 +210,12 @@ module Karafka
|
|
|
210
210
|
# Cookie key name
|
|
211
211
|
setting :key, default: '_karafka_session'
|
|
212
212
|
|
|
213
|
+
# Rack middleware session env key. We use independent key from "rack.session" here to
|
|
214
|
+
# prevent our data from leaking to the main app (when mounted) and the other way around.
|
|
215
|
+
# This also prevents us from overloading the session object with extra data that could
|
|
216
|
+
# cause it to go beyond a cookie limit.
|
|
217
|
+
setting :env_key, default: 'karafka.session'
|
|
218
|
+
|
|
213
219
|
# Secret for the session cookie
|
|
214
220
|
setting :secret, default: SecureRandom.hex(32)
|
|
215
221
|
end
|
|
@@ -13,7 +13,7 @@ module Karafka
|
|
|
13
13
|
|
|
14
14
|
private_constant :MIGRATION_ABSPATH_REGEXP, :MIGRATION_BASENAME_REGEXP
|
|
15
15
|
|
|
16
|
-
# @param [String] basename of the file to be loaded
|
|
16
|
+
# @param basename [String] basename of the file to be loaded
|
|
17
17
|
# @param abspath [String] absolute path of the file to be loaded
|
|
18
18
|
# @return [String] Constant name to be used for given file
|
|
19
19
|
def camelize(basename, abspath)
|
data/lib/karafka/web/ui/base.rb
CHANGED
|
@@ -25,11 +25,16 @@ module Karafka
|
|
|
25
25
|
)
|
|
26
26
|
plugin :render_each
|
|
27
27
|
plugin :partials
|
|
28
|
+
plugin :route_csrf
|
|
28
29
|
# The secret here will be reconfigured after Web UI configuration setup
|
|
29
30
|
# This is why we assign here a random value as it will have to be changed by the end
|
|
30
31
|
# user to make the Web UI work.
|
|
31
|
-
plugin
|
|
32
|
-
|
|
32
|
+
plugin(
|
|
33
|
+
:sessions,
|
|
34
|
+
key: '_karafka_session',
|
|
35
|
+
env_key: 'karafka.session',
|
|
36
|
+
secret: SecureRandom.hex(64)
|
|
37
|
+
)
|
|
33
38
|
end
|
|
34
39
|
|
|
35
40
|
plugin :render, escape: true, engine: 'erb'
|
|
@@ -18,7 +18,7 @@ module Karafka
|
|
|
18
18
|
# Helper method to flatten nested hashes and arrays
|
|
19
19
|
# @param prefix [String] The prefix for nested keys, initially an empty string.
|
|
20
20
|
# @param hash [Hash, Array] The nested hash or array to be flattened.
|
|
21
|
-
# @param [Hash]
|
|
21
|
+
# @param result [Hash] The hash to store the flattened key-value pairs.
|
|
22
22
|
# @return [Hash] The flattened hash with keys in bracket notation suitable for URL
|
|
23
23
|
# encoding.
|
|
24
24
|
def flatten_params(prefix, hash, result = {})
|
|
@@ -35,7 +35,7 @@ module Karafka
|
|
|
35
35
|
# Otherwise, computes it via the provided block, stores it,
|
|
36
36
|
# and updates metadata (timestamp + hash).
|
|
37
37
|
#
|
|
38
|
-
# @param key [Object]
|
|
38
|
+
# @param key [Object]
|
|
39
39
|
# @yield block to compute the value if key is not present
|
|
40
40
|
# @return [Object] cached or computed value
|
|
41
41
|
def fetch(key)
|
|
@@ -15,7 +15,7 @@ module Karafka
|
|
|
15
15
|
class << self
|
|
16
16
|
# @param counts [Array<Integer>] sets elements counts
|
|
17
17
|
# @param current_page [Integer] page number
|
|
18
|
-
# @return [Hash
|
|
18
|
+
# @return [Hash{Integer => Range}] hash with integer keys indicating the count
|
|
19
19
|
# location and the range needed to be taken of elements (counting backwards) for
|
|
20
20
|
# each partition
|
|
21
21
|
def call(counts, current_page)
|
|
Binary file
|
|
Binary file
|
data/lib/karafka/web/version.rb
CHANGED
data/package-lock.json
CHANGED
|
@@ -5,15 +5,15 @@
|
|
|
5
5
|
"packages": {
|
|
6
6
|
"": {
|
|
7
7
|
"devDependencies": {
|
|
8
|
-
"@tailwindcss/postcss": "^4.1.
|
|
9
|
-
"daisyui": "^5.
|
|
8
|
+
"@tailwindcss/postcss": "^4.1.17",
|
|
9
|
+
"daisyui": "^5.5.0",
|
|
10
10
|
"gulp": "^5.0.1",
|
|
11
11
|
"gulp-concat": "^2.6.1",
|
|
12
12
|
"gulp-sourcemaps": "^3.0.0",
|
|
13
13
|
"gulp-uglify": "^3.0.2",
|
|
14
14
|
"postcss": "^8.5.6",
|
|
15
15
|
"postcss-cli": "^11.0.1",
|
|
16
|
-
"tailwindcss": "^4.1.
|
|
16
|
+
"tailwindcss": "^4.1.17",
|
|
17
17
|
"through2": "^4.0.2"
|
|
18
18
|
}
|
|
19
19
|
},
|
|
@@ -186,9 +186,9 @@
|
|
|
186
186
|
}
|
|
187
187
|
},
|
|
188
188
|
"node_modules/@tailwindcss/node": {
|
|
189
|
-
"version": "4.1.
|
|
190
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/node/-/node-4.1.
|
|
191
|
-
"integrity": "sha512-
|
|
189
|
+
"version": "4.1.17",
|
|
190
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/node/-/node-4.1.17.tgz",
|
|
191
|
+
"integrity": "sha512-csIkHIgLb3JisEFQ0vxr2Y57GUNYh447C8xzwj89U/8fdW8LhProdxvnVH6U8M2Y73QKiTIH+LWbK3V2BBZsAg==",
|
|
192
192
|
"dev": true,
|
|
193
193
|
"license": "MIT",
|
|
194
194
|
"dependencies": {
|
|
@@ -196,39 +196,39 @@
|
|
|
196
196
|
"enhanced-resolve": "^5.18.3",
|
|
197
197
|
"jiti": "^2.6.1",
|
|
198
198
|
"lightningcss": "1.30.2",
|
|
199
|
-
"magic-string": "^0.30.
|
|
199
|
+
"magic-string": "^0.30.21",
|
|
200
200
|
"source-map-js": "^1.2.1",
|
|
201
|
-
"tailwindcss": "4.1.
|
|
201
|
+
"tailwindcss": "4.1.17"
|
|
202
202
|
}
|
|
203
203
|
},
|
|
204
204
|
"node_modules/@tailwindcss/oxide": {
|
|
205
|
-
"version": "4.1.
|
|
206
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide/-/oxide-4.1.
|
|
207
|
-
"integrity": "sha512-
|
|
205
|
+
"version": "4.1.17",
|
|
206
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide/-/oxide-4.1.17.tgz",
|
|
207
|
+
"integrity": "sha512-F0F7d01fmkQhsTjXezGBLdrl1KresJTcI3DB8EkScCldyKp3Msz4hub4uyYaVnk88BAS1g5DQjjF6F5qczheLA==",
|
|
208
208
|
"dev": true,
|
|
209
209
|
"license": "MIT",
|
|
210
210
|
"engines": {
|
|
211
211
|
"node": ">= 10"
|
|
212
212
|
},
|
|
213
213
|
"optionalDependencies": {
|
|
214
|
-
"@tailwindcss/oxide-android-arm64": "4.1.
|
|
215
|
-
"@tailwindcss/oxide-darwin-arm64": "4.1.
|
|
216
|
-
"@tailwindcss/oxide-darwin-x64": "4.1.
|
|
217
|
-
"@tailwindcss/oxide-freebsd-x64": "4.1.
|
|
218
|
-
"@tailwindcss/oxide-linux-arm-gnueabihf": "4.1.
|
|
219
|
-
"@tailwindcss/oxide-linux-arm64-gnu": "4.1.
|
|
220
|
-
"@tailwindcss/oxide-linux-arm64-musl": "4.1.
|
|
221
|
-
"@tailwindcss/oxide-linux-x64-gnu": "4.1.
|
|
222
|
-
"@tailwindcss/oxide-linux-x64-musl": "4.1.
|
|
223
|
-
"@tailwindcss/oxide-wasm32-wasi": "4.1.
|
|
224
|
-
"@tailwindcss/oxide-win32-arm64-msvc": "4.1.
|
|
225
|
-
"@tailwindcss/oxide-win32-x64-msvc": "4.1.
|
|
214
|
+
"@tailwindcss/oxide-android-arm64": "4.1.17",
|
|
215
|
+
"@tailwindcss/oxide-darwin-arm64": "4.1.17",
|
|
216
|
+
"@tailwindcss/oxide-darwin-x64": "4.1.17",
|
|
217
|
+
"@tailwindcss/oxide-freebsd-x64": "4.1.17",
|
|
218
|
+
"@tailwindcss/oxide-linux-arm-gnueabihf": "4.1.17",
|
|
219
|
+
"@tailwindcss/oxide-linux-arm64-gnu": "4.1.17",
|
|
220
|
+
"@tailwindcss/oxide-linux-arm64-musl": "4.1.17",
|
|
221
|
+
"@tailwindcss/oxide-linux-x64-gnu": "4.1.17",
|
|
222
|
+
"@tailwindcss/oxide-linux-x64-musl": "4.1.17",
|
|
223
|
+
"@tailwindcss/oxide-wasm32-wasi": "4.1.17",
|
|
224
|
+
"@tailwindcss/oxide-win32-arm64-msvc": "4.1.17",
|
|
225
|
+
"@tailwindcss/oxide-win32-x64-msvc": "4.1.17"
|
|
226
226
|
}
|
|
227
227
|
},
|
|
228
228
|
"node_modules/@tailwindcss/oxide-android-arm64": {
|
|
229
|
-
"version": "4.1.
|
|
230
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.1.
|
|
231
|
-
"integrity": "sha512-
|
|
229
|
+
"version": "4.1.17",
|
|
230
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.1.17.tgz",
|
|
231
|
+
"integrity": "sha512-BMqpkJHgOZ5z78qqiGE6ZIRExyaHyuxjgrJ6eBO5+hfrfGkuya0lYfw8fRHG77gdTjWkNWEEm+qeG2cDMxArLQ==",
|
|
232
232
|
"cpu": [
|
|
233
233
|
"arm64"
|
|
234
234
|
],
|
|
@@ -243,9 +243,9 @@
|
|
|
243
243
|
}
|
|
244
244
|
},
|
|
245
245
|
"node_modules/@tailwindcss/oxide-darwin-arm64": {
|
|
246
|
-
"version": "4.1.
|
|
247
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.1.
|
|
248
|
-
"integrity": "sha512-
|
|
246
|
+
"version": "4.1.17",
|
|
247
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.1.17.tgz",
|
|
248
|
+
"integrity": "sha512-EquyumkQweUBNk1zGEU/wfZo2qkp/nQKRZM8bUYO0J+Lums5+wl2CcG1f9BgAjn/u9pJzdYddHWBiFXJTcxmOg==",
|
|
249
249
|
"cpu": [
|
|
250
250
|
"arm64"
|
|
251
251
|
],
|
|
@@ -260,9 +260,9 @@
|
|
|
260
260
|
}
|
|
261
261
|
},
|
|
262
262
|
"node_modules/@tailwindcss/oxide-darwin-x64": {
|
|
263
|
-
"version": "4.1.
|
|
264
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.1.
|
|
265
|
-
"integrity": "sha512-
|
|
263
|
+
"version": "4.1.17",
|
|
264
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.1.17.tgz",
|
|
265
|
+
"integrity": "sha512-gdhEPLzke2Pog8s12oADwYu0IAw04Y2tlmgVzIN0+046ytcgx8uZmCzEg4VcQh+AHKiS7xaL8kGo/QTiNEGRog==",
|
|
266
266
|
"cpu": [
|
|
267
267
|
"x64"
|
|
268
268
|
],
|
|
@@ -277,9 +277,9 @@
|
|
|
277
277
|
}
|
|
278
278
|
},
|
|
279
279
|
"node_modules/@tailwindcss/oxide-freebsd-x64": {
|
|
280
|
-
"version": "4.1.
|
|
281
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.1.
|
|
282
|
-
"integrity": "sha512-
|
|
280
|
+
"version": "4.1.17",
|
|
281
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.1.17.tgz",
|
|
282
|
+
"integrity": "sha512-hxGS81KskMxML9DXsaXT1H0DyA+ZBIbyG/sSAjWNe2EDl7TkPOBI42GBV3u38itzGUOmFfCzk1iAjDXds8Oh0g==",
|
|
283
283
|
"cpu": [
|
|
284
284
|
"x64"
|
|
285
285
|
],
|
|
@@ -294,9 +294,9 @@
|
|
|
294
294
|
}
|
|
295
295
|
},
|
|
296
296
|
"node_modules/@tailwindcss/oxide-linux-arm-gnueabihf": {
|
|
297
|
-
"version": "4.1.
|
|
298
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.1.
|
|
299
|
-
"integrity": "sha512-
|
|
297
|
+
"version": "4.1.17",
|
|
298
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.1.17.tgz",
|
|
299
|
+
"integrity": "sha512-k7jWk5E3ldAdw0cNglhjSgv501u7yrMf8oeZ0cElhxU6Y2o7f8yqelOp3fhf7evjIS6ujTI3U8pKUXV2I4iXHQ==",
|
|
300
300
|
"cpu": [
|
|
301
301
|
"arm"
|
|
302
302
|
],
|
|
@@ -311,9 +311,9 @@
|
|
|
311
311
|
}
|
|
312
312
|
},
|
|
313
313
|
"node_modules/@tailwindcss/oxide-linux-arm64-gnu": {
|
|
314
|
-
"version": "4.1.
|
|
315
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.1.
|
|
316
|
-
"integrity": "sha512-
|
|
314
|
+
"version": "4.1.17",
|
|
315
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.1.17.tgz",
|
|
316
|
+
"integrity": "sha512-HVDOm/mxK6+TbARwdW17WrgDYEGzmoYayrCgmLEw7FxTPLcp/glBisuyWkFz/jb7ZfiAXAXUACfyItn+nTgsdQ==",
|
|
317
317
|
"cpu": [
|
|
318
318
|
"arm64"
|
|
319
319
|
],
|
|
@@ -328,9 +328,9 @@
|
|
|
328
328
|
}
|
|
329
329
|
},
|
|
330
330
|
"node_modules/@tailwindcss/oxide-linux-arm64-musl": {
|
|
331
|
-
"version": "4.1.
|
|
332
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.1.
|
|
333
|
-
"integrity": "sha512-
|
|
331
|
+
"version": "4.1.17",
|
|
332
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.1.17.tgz",
|
|
333
|
+
"integrity": "sha512-HvZLfGr42i5anKtIeQzxdkw/wPqIbpeZqe7vd3V9vI3RQxe3xU1fLjss0TjyhxWcBaipk7NYwSrwTwK1hJARMg==",
|
|
334
334
|
"cpu": [
|
|
335
335
|
"arm64"
|
|
336
336
|
],
|
|
@@ -345,9 +345,9 @@
|
|
|
345
345
|
}
|
|
346
346
|
},
|
|
347
347
|
"node_modules/@tailwindcss/oxide-linux-x64-gnu": {
|
|
348
|
-
"version": "4.1.
|
|
349
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-gnu/-/oxide-linux-x64-gnu-4.1.
|
|
350
|
-
"integrity": "sha512-
|
|
348
|
+
"version": "4.1.17",
|
|
349
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-gnu/-/oxide-linux-x64-gnu-4.1.17.tgz",
|
|
350
|
+
"integrity": "sha512-M3XZuORCGB7VPOEDH+nzpJ21XPvK5PyjlkSFkFziNHGLc5d6g3di2McAAblmaSUNl8IOmzYwLx9NsE7bplNkwQ==",
|
|
351
351
|
"cpu": [
|
|
352
352
|
"x64"
|
|
353
353
|
],
|
|
@@ -362,9 +362,9 @@
|
|
|
362
362
|
}
|
|
363
363
|
},
|
|
364
364
|
"node_modules/@tailwindcss/oxide-linux-x64-musl": {
|
|
365
|
-
"version": "4.1.
|
|
366
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-musl/-/oxide-linux-x64-musl-4.1.
|
|
367
|
-
"integrity": "sha512-
|
|
365
|
+
"version": "4.1.17",
|
|
366
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-musl/-/oxide-linux-x64-musl-4.1.17.tgz",
|
|
367
|
+
"integrity": "sha512-k7f+pf9eXLEey4pBlw+8dgfJHY4PZ5qOUFDyNf7SI6lHjQ9Zt7+NcscjpwdCEbYi6FI5c2KDTDWyf2iHcCSyyQ==",
|
|
368
368
|
"cpu": [
|
|
369
369
|
"x64"
|
|
370
370
|
],
|
|
@@ -379,9 +379,9 @@
|
|
|
379
379
|
}
|
|
380
380
|
},
|
|
381
381
|
"node_modules/@tailwindcss/oxide-wasm32-wasi": {
|
|
382
|
-
"version": "4.1.
|
|
383
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-wasm32-wasi/-/oxide-wasm32-wasi-4.1.
|
|
384
|
-
"integrity": "sha512-
|
|
382
|
+
"version": "4.1.17",
|
|
383
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-wasm32-wasi/-/oxide-wasm32-wasi-4.1.17.tgz",
|
|
384
|
+
"integrity": "sha512-cEytGqSSoy7zK4JRWiTCx43FsKP/zGr0CsuMawhH67ONlH+T79VteQeJQRO/X7L0juEUA8ZyuYikcRBf0vsxhg==",
|
|
385
385
|
"bundleDependencies": [
|
|
386
386
|
"@napi-rs/wasm-runtime",
|
|
387
387
|
"@emnapi/core",
|
|
@@ -397,8 +397,8 @@
|
|
|
397
397
|
"license": "MIT",
|
|
398
398
|
"optional": true,
|
|
399
399
|
"dependencies": {
|
|
400
|
-
"@emnapi/core": "^1.
|
|
401
|
-
"@emnapi/runtime": "^1.
|
|
400
|
+
"@emnapi/core": "^1.6.0",
|
|
401
|
+
"@emnapi/runtime": "^1.6.0",
|
|
402
402
|
"@emnapi/wasi-threads": "^1.1.0",
|
|
403
403
|
"@napi-rs/wasm-runtime": "^1.0.7",
|
|
404
404
|
"@tybys/wasm-util": "^0.10.1",
|
|
@@ -409,7 +409,7 @@
|
|
|
409
409
|
}
|
|
410
410
|
},
|
|
411
411
|
"node_modules/@tailwindcss/oxide-wasm32-wasi/node_modules/@emnapi/core": {
|
|
412
|
-
"version": "1.
|
|
412
|
+
"version": "1.6.0",
|
|
413
413
|
"dev": true,
|
|
414
414
|
"inBundle": true,
|
|
415
415
|
"license": "MIT",
|
|
@@ -420,7 +420,7 @@
|
|
|
420
420
|
}
|
|
421
421
|
},
|
|
422
422
|
"node_modules/@tailwindcss/oxide-wasm32-wasi/node_modules/@emnapi/runtime": {
|
|
423
|
-
"version": "1.
|
|
423
|
+
"version": "1.6.0",
|
|
424
424
|
"dev": true,
|
|
425
425
|
"inBundle": true,
|
|
426
426
|
"license": "MIT",
|
|
@@ -469,9 +469,9 @@
|
|
|
469
469
|
"optional": true
|
|
470
470
|
},
|
|
471
471
|
"node_modules/@tailwindcss/oxide-win32-arm64-msvc": {
|
|
472
|
-
"version": "4.1.
|
|
473
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.1.
|
|
474
|
-
"integrity": "sha512-
|
|
472
|
+
"version": "4.1.17",
|
|
473
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.1.17.tgz",
|
|
474
|
+
"integrity": "sha512-JU5AHr7gKbZlOGvMdb4722/0aYbU+tN6lv1kONx0JK2cGsh7g148zVWLM0IKR3NeKLv+L90chBVYcJ8uJWbC9A==",
|
|
475
475
|
"cpu": [
|
|
476
476
|
"arm64"
|
|
477
477
|
],
|
|
@@ -486,9 +486,9 @@
|
|
|
486
486
|
}
|
|
487
487
|
},
|
|
488
488
|
"node_modules/@tailwindcss/oxide-win32-x64-msvc": {
|
|
489
|
-
"version": "4.1.
|
|
490
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.1.
|
|
491
|
-
"integrity": "sha512-
|
|
489
|
+
"version": "4.1.17",
|
|
490
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.1.17.tgz",
|
|
491
|
+
"integrity": "sha512-SKWM4waLuqx0IH+FMDUw6R66Hu4OuTALFgnleKbqhgGU30DY20NORZMZUKgLRjQXNN2TLzKvh48QXTig4h4bGw==",
|
|
492
492
|
"cpu": [
|
|
493
493
|
"x64"
|
|
494
494
|
],
|
|
@@ -503,17 +503,17 @@
|
|
|
503
503
|
}
|
|
504
504
|
},
|
|
505
505
|
"node_modules/@tailwindcss/postcss": {
|
|
506
|
-
"version": "4.1.
|
|
507
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/postcss/-/postcss-4.1.
|
|
508
|
-
"integrity": "sha512
|
|
506
|
+
"version": "4.1.17",
|
|
507
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/postcss/-/postcss-4.1.17.tgz",
|
|
508
|
+
"integrity": "sha512-+nKl9N9mN5uJ+M7dBOOCzINw94MPstNR/GtIhz1fpZysxL/4a+No64jCBD6CPN+bIHWFx3KWuu8XJRrj/572Dw==",
|
|
509
509
|
"dev": true,
|
|
510
510
|
"license": "MIT",
|
|
511
511
|
"dependencies": {
|
|
512
512
|
"@alloc/quick-lru": "^5.2.0",
|
|
513
|
-
"@tailwindcss/node": "4.1.
|
|
514
|
-
"@tailwindcss/oxide": "4.1.
|
|
513
|
+
"@tailwindcss/node": "4.1.17",
|
|
514
|
+
"@tailwindcss/oxide": "4.1.17",
|
|
515
515
|
"postcss": "^8.4.41",
|
|
516
|
-
"tailwindcss": "4.1.
|
|
516
|
+
"tailwindcss": "4.1.17"
|
|
517
517
|
}
|
|
518
518
|
},
|
|
519
519
|
"node_modules/acorn": {
|
|
@@ -980,9 +980,9 @@
|
|
|
980
980
|
}
|
|
981
981
|
},
|
|
982
982
|
"node_modules/daisyui": {
|
|
983
|
-
"version": "5.3
|
|
984
|
-
"resolved": "https://registry.npmjs.org/daisyui/-/daisyui-5.3.
|
|
985
|
-
"integrity": "sha512-
|
|
983
|
+
"version": "5.5.3",
|
|
984
|
+
"resolved": "https://registry.npmjs.org/daisyui/-/daisyui-5.5.3.tgz",
|
|
985
|
+
"integrity": "sha512-xcDZlujfSHu3AbwXY1mpl25YXDLyzonsBX1YtiIyhvWGTnVIsX4krD5A7mm6RyiwDRlmKbPvMUPPxivQE4Nsvg==",
|
|
986
986
|
"dev": true,
|
|
987
987
|
"license": "MIT",
|
|
988
988
|
"funding": {
|
|
@@ -2443,9 +2443,9 @@
|
|
|
2443
2443
|
}
|
|
2444
2444
|
},
|
|
2445
2445
|
"node_modules/magic-string": {
|
|
2446
|
-
"version": "0.30.
|
|
2447
|
-
"resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.
|
|
2448
|
-
"integrity": "sha512-
|
|
2446
|
+
"version": "0.30.21",
|
|
2447
|
+
"resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.21.tgz",
|
|
2448
|
+
"integrity": "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==",
|
|
2449
2449
|
"dev": true,
|
|
2450
2450
|
"license": "MIT",
|
|
2451
2451
|
"dependencies": {
|
|
@@ -3178,9 +3178,9 @@
|
|
|
3178
3178
|
}
|
|
3179
3179
|
},
|
|
3180
3180
|
"node_modules/tailwindcss": {
|
|
3181
|
-
"version": "4.1.
|
|
3182
|
-
"resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.1.
|
|
3183
|
-
"integrity": "sha512-
|
|
3181
|
+
"version": "4.1.17",
|
|
3182
|
+
"resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.1.17.tgz",
|
|
3183
|
+
"integrity": "sha512-j9Ee2YjuQqYT9bbRTfTZht9W/ytp5H+jJpZKiYdP/bpnXARAuELt9ofP0lPnmHjbga7SNQIxdTAXCmtKVYjN+Q==",
|
|
3184
3184
|
"dev": true,
|
|
3185
3185
|
"license": "MIT"
|
|
3186
3186
|
},
|
data/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"devDependencies": {
|
|
3
|
-
"@tailwindcss/postcss": "^4.1.
|
|
4
|
-
"daisyui": "^5.
|
|
3
|
+
"@tailwindcss/postcss": "^4.1.17",
|
|
4
|
+
"daisyui": "^5.5.0",
|
|
5
5
|
"gulp": "^5.0.1",
|
|
6
6
|
"gulp-concat": "^2.6.1",
|
|
7
7
|
"gulp-sourcemaps": "^3.0.0",
|
|
8
8
|
"gulp-uglify": "^3.0.2",
|
|
9
9
|
"postcss": "^8.5.6",
|
|
10
10
|
"postcss-cli": "^11.0.1",
|
|
11
|
-
"tailwindcss": "^4.1.
|
|
11
|
+
"tailwindcss": "^4.1.17",
|
|
12
12
|
"through2": "^4.0.2"
|
|
13
13
|
}
|
|
14
14
|
}
|
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: 0.11.
|
|
4
|
+
version: 0.11.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Maciej Mensfeld
|
|
@@ -69,7 +69,7 @@ dependencies:
|
|
|
69
69
|
requirements:
|
|
70
70
|
- - "~>"
|
|
71
71
|
- !ruby/object:Gem::Version
|
|
72
|
-
version: '3.
|
|
72
|
+
version: '3.69'
|
|
73
73
|
- - ">="
|
|
74
74
|
- !ruby/object:Gem::Version
|
|
75
75
|
version: '3.69'
|
|
@@ -79,7 +79,7 @@ dependencies:
|
|
|
79
79
|
requirements:
|
|
80
80
|
- - "~>"
|
|
81
81
|
- !ruby/object:Gem::Version
|
|
82
|
-
version: '3.
|
|
82
|
+
version: '3.69'
|
|
83
83
|
- - ">="
|
|
84
84
|
- !ruby/object:Gem::Version
|
|
85
85
|
version: '3.69'
|