pgplan 0.4.1 → 0.5.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.
- package/README.md +10 -1
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# pgplan
|
|
2
2
|
|
|
3
|
+
[](https://github.com/JacobArthurs/pgplan/releases/latest)
|
|
4
|
+
[](https://www.npmjs.com/package/pgplan)
|
|
5
|
+
[](https://pypi.org/project/pgplan/)
|
|
6
|
+
[](https://pkg.go.dev/github.com/jacobarthurs/pgplan)
|
|
7
|
+
[](https://goreportcard.com/report/github.com/jacobarthurs/pgplan)
|
|
8
|
+
[](https://github.com/JacobArthurs/pgplan/actions/workflows/ci.yml)
|
|
9
|
+
[](./go.mod)
|
|
10
|
+
[](LICENSE)
|
|
11
|
+
|
|
3
12
|
A command-line tool for analyzing and comparing PostgreSQL query execution plans. Get optimization insights and track performance regressions without leaving your terminal.
|
|
4
13
|
|
|
5
14
|
## Features
|
|
@@ -18,7 +27,7 @@ A command-line tool for analyzing and comparing PostgreSQL query execution plans
|
|
|
18
27
|
pip install pgplan
|
|
19
28
|
```
|
|
20
29
|
|
|
21
|
-
### [
|
|
30
|
+
### [npm](https://www.npmjs.com/package/pgplan)
|
|
22
31
|
|
|
23
32
|
```bash
|
|
24
33
|
npm i -g pgplan
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pgplan",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.5.0",
|
|
4
4
|
"description": "Analyze and compare PostgreSQL query plans",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -20,10 +20,10 @@
|
|
|
20
20
|
"README.md"
|
|
21
21
|
],
|
|
22
22
|
"optionalDependencies": {
|
|
23
|
-
"@pgplan/linux-x64": "0.
|
|
24
|
-
"@pgplan/linux-arm64": "0.
|
|
25
|
-
"@pgplan/darwin-x64": "0.
|
|
26
|
-
"@pgplan/darwin-arm64": "0.
|
|
27
|
-
"@pgplan/win32-x64": "0.
|
|
23
|
+
"@pgplan/linux-x64": "0.5.0",
|
|
24
|
+
"@pgplan/linux-arm64": "0.5.0",
|
|
25
|
+
"@pgplan/darwin-x64": "0.5.0",
|
|
26
|
+
"@pgplan/darwin-arm64": "0.5.0",
|
|
27
|
+
"@pgplan/win32-x64": "0.5.0"
|
|
28
28
|
}
|
|
29
29
|
}
|