pghero 2.7.3 → 2.8.2
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of pghero might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/CHANGELOG.md +20 -0
- data/LICENSE.txt +1 -1
- data/README.md +2 -2
- data/app/assets/javascripts/pghero/Chart.bundle.js +22931 -19988
- data/app/assets/javascripts/pghero/chartkick.js +317 -253
- data/app/controllers/pg_hero/home_controller.rb +13 -12
- data/app/helpers/pg_hero/home_helper.rb +10 -0
- data/app/views/pg_hero/home/index.html.erb +4 -1
- data/app/views/pg_hero/home/maintenance.html.erb +2 -2
- data/app/views/pg_hero/home/relation_space.html.erb +1 -1
- data/app/views/pg_hero/home/show_query.html.erb +3 -3
- data/app/views/pg_hero/home/space.html.erb +4 -4
- data/app/views/pg_hero/home/system.html.erb +4 -4
- data/lib/pghero/database.rb +1 -1
- data/lib/pghero/methods/queries.rb +2 -1
- data/lib/pghero/methods/sequences.rb +2 -1
- data/lib/pghero/methods/suggested_indexes.rb +99 -26
- data/lib/pghero/methods/system.rb +0 -1
- data/lib/pghero/version.rb +1 -1
- data/lib/pghero.rb +8 -2
- data/licenses/LICENSE-chart.js.txt +1 -1
- data/licenses/LICENSE-chartjs-adapter-date-fns.txt +9 -0
- data/licenses/LICENSE-chartkick.js.txt +1 -1
- data/licenses/LICENSE-date-fns.txt +20 -0
- metadata +5 -4
- data/licenses/LICENSE-moment.txt +0 -22
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: dcb20f61ae17a91ddbe9ed9d91de39fe02e0486284cb6b1f2efc6d03a63d5e69
|
4
|
+
data.tar.gz: b0cc09ab0d4670bdc0f8c5e70731a325acb0c187911e2e4d9865458f381f4c88
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 92ce99fea5ed6ad43a05ee7eab311960e3164cd5fcba02153d470a2adddd008b62f4edf1f6d3bd0a64c1707a06099dd472af5ce5c6a3eebfb6687143b6ef007e
|
7
|
+
data.tar.gz: c0a794fc0e6bc6dad54fd6efe27637e86910bc46440dabf93bfef856c60b231585431e603598f5074bf0b499842dd63b35d448a381792a4155dc6703dc24ee62
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,23 @@
|
|
1
|
+
## 2.8.2 (2021-12-15)
|
2
|
+
|
3
|
+
- Fixed sorting by name on space page when historical space stats are not enabled
|
4
|
+
- Fixed deprecation warnings with Active Record 7
|
5
|
+
|
6
|
+
## 2.8.1 (2021-03-25)
|
7
|
+
|
8
|
+
- Added support for pg_query 2
|
9
|
+
|
10
|
+
## 2.8.0 (2021-03-14)
|
11
|
+
|
12
|
+
- No longer show walsender in long running queries
|
13
|
+
- Show relative time on maintenance page
|
14
|
+
- Added support for `PGHERO_TZ` for Docker and Linux
|
15
|
+
|
16
|
+
## 2.7.4 (2021-02-01)
|
17
|
+
|
18
|
+
- Fixed error on redirect with Ruby 3
|
19
|
+
- Fixed error with unparsable sequences
|
20
|
+
|
1
21
|
## 2.7.3 (2020-11-23)
|
2
22
|
|
3
23
|
- Improved index suggestions when hash, GiST, GIN, or BRIN index present
|
data/LICENSE.txt
CHANGED
data/README.md
CHANGED
@@ -4,13 +4,13 @@ A performance dashboard for Postgres
|
|
4
4
|
|
5
5
|
[See it in action](https://pghero.dokkuapp.com/)
|
6
6
|
|
7
|
-
[![Screenshot](https://pghero.dokkuapp.com/assets/pghero-
|
7
|
+
[![Screenshot](https://pghero.dokkuapp.com/assets/pghero-ebb9c8e11434fd0e4ead81db88fe255b29cbbc845ec315b79e6c5e25015bc921.png)](https://pghero.dokkuapp.com/)
|
8
8
|
|
9
9
|
:tangerine: Battle-tested at [Instacart](https://www.instacart.com/opensource)
|
10
10
|
|
11
11
|
[![Build Status](https://github.com/ankane/pghero/workflows/build/badge.svg?branch=master)](https://github.com/ankane/pghero/actions) [![Docker Pulls](https://img.shields.io/docker/pulls/ankane/pghero)](https://hub.docker.com/repository/docker/ankane/pghero)
|
12
12
|
|
13
|
-
##
|
13
|
+
## Documentation
|
14
14
|
|
15
15
|
PgHero is available as a Docker image, Linux package, and Rails engine.
|
16
16
|
|