redis_dashboard 0.3.0 → 0.3.1

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: 9642ce8486ef1fc0d995d2c06380537aa7918335b1f90e8cbade6983e3a84940
4
- data.tar.gz: 5221f10a927a48865bd0f598cddac86f9601a942b800d85543e336754c2682e8
3
+ metadata.gz: e78b5465c79a495d9a32eaa831e3494424768613d5fb450a3c8ddc77b3a9af79
4
+ data.tar.gz: 5c1b6f4d0cd7304e387c53f52feee926bc7389d72d0031286ff89635c0922b78
5
5
  SHA512:
6
- metadata.gz: 1865b8f9ef769bf860987722807e5c341d32c0303e5c115e9c09a9f8c97b91bf9a2de46bd8c2c17dc5b676f379ac1a96142c747f2a1d134611d51a101bff8389
7
- data.tar.gz: be609cbe14b267d8421006103528db4afafbd99de6f7995bffc5880daf0f067b83d27a7230e8ed97e0fc014c4e76af53c6c2ef317587d688e309a8c82f0a9503
6
+ metadata.gz: 49088b2f4c4251a3c82dad08e233dca6a65d1912f9a7079497cdef77dd27e3ff974158548d95eb0dbadbbfaea4a83527a892e3ebfb94a1bacfe1b03401de23b1
7
+ data.tar.gz: 55aee7635ffbe175cb9b463d4b35d04ef95af8da01cd1b86574489009e8150925af2fbec0bf8538c33d1e85efc4e8388d66f0c180ed1fb9c0761f4ddce47de70
data/CHANGELOG.md CHANGED
@@ -1,4 +1,10 @@
1
- ## 0.3.0
1
+ # Changelog of Redis Dashboard
2
+
3
+ ## 0.3.1 (2023-09-12)
4
+
5
+ * Fix key filtering when there is no query
6
+
7
+ ## 0.3.0 (2021-11-04)
2
8
 
3
9
  * Add keyspace explorer
4
10
  * Use friendly URLs with server host name
@@ -6,13 +12,13 @@
6
12
  * Use Ariato CSS framework https://ariato.org
7
13
  * Remove sassc dependency to switch to plain CSS
8
14
 
9
- ## 0.2.0
15
+ ## 0.2.0 (2020-04-23)
10
16
 
11
17
  * Add memory stats
12
18
  * Replace deprecated sass by sassc
13
19
 
14
- ## 0.1.6
20
+ ## 0.1.6 (2019-08-16)
15
21
 
16
22
  * Switch to erubi
17
23
  * Escape HTML by default
18
- * Fix cache hit ratio
24
+ * Fix cache hit ratio
data/Gemfile.lock CHANGED
@@ -1,20 +1,24 @@
1
1
  GEM
2
2
  remote: https://rubygems.org/
3
3
  specs:
4
- erubi (1.10.0)
5
- mustermann (1.1.1)
4
+ connection_pool (2.3.0)
5
+ erubi (1.12.0)
6
+ mustermann (3.0.0)
6
7
  ruby2_keywords (~> 0.0.1)
7
- rack (2.2.3)
8
- rack-protection (2.1.0)
8
+ rack (2.2.6.2)
9
+ rack-protection (3.0.5)
9
10
  rack
10
- redis (4.5.1)
11
+ redis (5.0.6)
12
+ redis-client (>= 0.9.0)
13
+ redis-client (0.12.1)
14
+ connection_pool
11
15
  ruby2_keywords (0.0.5)
12
- sinatra (2.1.0)
13
- mustermann (~> 1.0)
14
- rack (~> 2.2)
15
- rack-protection (= 2.1.0)
16
+ sinatra (3.0.5)
17
+ mustermann (~> 3.0)
18
+ rack (~> 2.2, >= 2.2.4)
19
+ rack-protection (= 3.0.5)
16
20
  tilt (~> 2.0)
17
- tilt (2.0.10)
21
+ tilt (2.0.11)
18
22
 
19
23
  PLATFORMS
20
24
  ruby
@@ -25,4 +29,4 @@ DEPENDENCIES
25
29
  sinatra
26
30
 
27
31
  BUNDLED WITH
28
- 2.1.4
32
+ 2.2.22
@@ -39,7 +39,7 @@ class RedisDashboard::Application < Sinatra::Base
39
39
 
40
40
  get "/:server/keyspace/:db" do
41
41
  client.connection.select(params[:db].sub(/^db/, ""))
42
- erb(:keys, locals: {client: client, keys: client.keys(params[:query])})
42
+ erb(:keys, locals: {client: client, keys: client.keys(params[:query] || "")})
43
43
  end
44
44
 
45
45
  get "/:server/keyspace/:db/*" do
@@ -9,7 +9,7 @@
9
9
  </table>
10
10
  </div>
11
11
  <div role="alert">
12
- <a href="https://raw.githubusercontent.com/antirez/redis/4.0/redis.conf" target="_blank" rel="noopener nofollower">
12
+ <a href="https://github.com/redis/redis/blob/unstable/redis.conf" target="_blank" rel="noopener nofollower">
13
13
  Redis config documentation
14
14
  </a>
15
15
  </div>
@@ -19,7 +19,7 @@
19
19
  </table>
20
20
  </div>
21
21
  <div role="alert">
22
- <a href="https://github.com/antirez/redis/blob/unstable/redis.conf" target="_blank" rel="noopener nofollower">
22
+ <a href="https://redis.io/commands/memory-stats" target="_blank" rel="noopener nofollower">
23
23
  Redis memory stats documentation
24
24
  </a>
25
25
  </div>
@@ -3,7 +3,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
3
3
 
4
4
  Gem::Specification.new do |spec|
5
5
  spec.name = "redis_dashboard"
6
- spec.version = "0.3.0"
6
+ spec.version = "0.3.1"
7
7
  spec.authors = ["Alexis Bernard"]
8
8
  spec.email = ["alexis@bernard.io"]
9
9
  spec.summary = "Sinatra app to monitor Redis servers."
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: redis_dashboard
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alexis Bernard
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-11-04 00:00:00.000000000 Z
11
+ date: 2023-09-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: sinatra
@@ -112,7 +112,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
112
112
  - !ruby/object:Gem::Version
113
113
  version: '0'
114
114
  requirements: []
115
- rubygems_version: 3.1.6
115
+ rubygems_version: 3.2.22
116
116
  signing_key:
117
117
  specification_version: 4
118
118
  summary: Sinatra app to monitor Redis servers.