pghero 3.0.1 → 3.2.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 +4 -4
- data/CHANGELOG.md +15 -0
- data/LICENSE.txt +1 -1
- data/app/assets/javascripts/pghero/Chart.bundle.js +23379 -19766
- data/app/assets/javascripts/pghero/chartkick.js +834 -764
- data/app/assets/stylesheets/pghero/application.css +2 -2
- data/app/controllers/pg_hero/home_controller.rb +40 -11
- data/app/views/layouts/pg_hero/application.html.erb +3 -1
- data/app/views/pg_hero/home/explain.html.erb +3 -1
- data/app/views/pg_hero/home/queries.html.erb +4 -2
- data/app/views/pg_hero/home/show_query.html.erb +1 -1
- data/lib/generators/pghero/templates/config.yml.tt +3 -0
- data/lib/pghero/methods/explain.rb +34 -0
- data/lib/pghero/methods/query_stats.rb +5 -3
- data/lib/pghero/methods/space.rb +3 -2
- data/lib/pghero/methods/suggested_indexes.rb +8 -4
- data/lib/pghero/version.rb +1 -1
- data/lib/pghero.rb +36 -26
- data/lib/tasks/pghero.rake +11 -1
- data/licenses/LICENSE-chart.js.txt +1 -1
- data/licenses/LICENSE-date-fns.txt +21 -20
- data/licenses/LICENSE-kurkle-color.txt +9 -0
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9c72b2a0d208a777e24923887f15f1f08c8d969d89838e182960069c18b8b2fb
|
4
|
+
data.tar.gz: 0ed8d878b70201ba7f932e60547549c6d2e970276e40006c57d29db91f6f3d6e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1fd3712548c3409fa898d20f30891e3399777d4215d8eb57bf04cb78d06c8bc0913088318b39a07f24782c91384edf45a9963def28a8b74a770e6681bbac7fe7
|
7
|
+
data.tar.gz: 71cef5f2cc80d8d16cfeace0e2d59dea5cbeaba33dfc0295ebb4d175dd05ea135cf4e4bc628d420719393adcd0e84a13450fcdde2e14571e269c09fa86c0c32d
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,18 @@
|
|
1
|
+
## 3.2.0 (2023-02-21)
|
2
|
+
|
3
|
+
- Added support for pg_query 4
|
4
|
+
- Added `pghero:clean_space_stats` rake task
|
5
|
+
- Added support for specifying retention period with `clean_query_stats` and `clean_space_stats`
|
6
|
+
- Removed reset button when historical query stats are enabled
|
7
|
+
|
8
|
+
## 3.1.0 (2023-01-04)
|
9
|
+
|
10
|
+
- Fixed explain error message leaking data - [more info](https://github.com/ankane/pghero/issues/439)
|
11
|
+
- Explain analyze is now opt-in - [more info](https://github.com/ankane/pghero/issues/438)
|
12
|
+
- Added support for disabling explain and explain analyze
|
13
|
+
- Added support for visualize without explain analyze
|
14
|
+
- Added `explain_v2` method
|
15
|
+
|
1
16
|
## 3.0.1 (2022-10-09)
|
2
17
|
|
3
18
|
- Fixed message when database user does not have permission to reset query stats
|
data/LICENSE.txt
CHANGED