ghcr-manager 1.0.2 → 1.0.3
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/CHANGELOG.md +6 -0
- package/README.md +7 -7
- package/package.json +14 -3
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [v1.0.3] - 2026-06-05
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- Added npm package keywords for both `ghcr-manager` and `ghcr-manager-visualizer` to improve package discovery.
|
|
15
|
+
|
|
10
16
|
## [v1.0.2] - 2026-06-05
|
|
11
17
|
|
|
12
18
|
### Fixed
|
package/README.md
CHANGED
|
@@ -13,7 +13,7 @@ Inspect, analyze, and manage large GitHub Container Registry packages.
|
|
|
13
13
|
- cleanup packages: with a GitHub step summary and optional DB artifact
|
|
14
14
|
- preview cleanup: with `dry-run` before making changes
|
|
15
15
|
- visualize graphs: and their changes with the
|
|
16
|
-
[visualizer](https://github.com/ghcr-manager/ghcr-manager/blob/main/visualizer/README.md)
|
|
16
|
+
[ghcr-manager-visualizer](https://github.com/ghcr-manager/ghcr-manager/blob/main/visualizer/README.md)
|
|
17
17
|
|
|
18
18
|

|
|
19
19
|
|
|
@@ -38,7 +38,7 @@ jobs:
|
|
|
38
38
|
|
|
39
39
|
- name: Preview GHCR cleanup
|
|
40
40
|
id: ghcr-manager
|
|
41
|
-
uses: ghcr-manager/ghcr-manager@v1.0.
|
|
41
|
+
uses: ghcr-manager/ghcr-manager@v1.0.3
|
|
42
42
|
with:
|
|
43
43
|
command: cleanup
|
|
44
44
|
token: ${{ github.token }}
|
|
@@ -81,7 +81,7 @@ The action supports two commands:
|
|
|
81
81
|
### Preview cleanup
|
|
82
82
|
|
|
83
83
|
```yaml
|
|
84
|
-
- uses: ghcr-manager/ghcr-manager@v1.0.
|
|
84
|
+
- uses: ghcr-manager/ghcr-manager@v1.0.3
|
|
85
85
|
with:
|
|
86
86
|
command: cleanup
|
|
87
87
|
token: ${{ github.token }}
|
|
@@ -102,7 +102,7 @@ The action supports two commands:
|
|
|
102
102
|
### Apply cleanup
|
|
103
103
|
|
|
104
104
|
```yaml
|
|
105
|
-
- uses: ghcr-manager/ghcr-manager@v1.0.
|
|
105
|
+
- uses: ghcr-manager/ghcr-manager@v1.0.3
|
|
106
106
|
with:
|
|
107
107
|
command: cleanup
|
|
108
108
|
token: ${{ github.token }}
|
|
@@ -124,7 +124,7 @@ off `dry-run`.
|
|
|
124
124
|
### Scan one package
|
|
125
125
|
|
|
126
126
|
```yaml
|
|
127
|
-
- uses: ghcr-manager/ghcr-manager@v1.0.
|
|
127
|
+
- uses: ghcr-manager/ghcr-manager@v1.0.3
|
|
128
128
|
with:
|
|
129
129
|
command: scan
|
|
130
130
|
token: ${{ github.token }}
|
|
@@ -199,8 +199,8 @@ Current naming:
|
|
|
199
199
|
|
|
200
200
|
- [GitHub Action usage](https://github.com/ghcr-manager/ghcr-manager/blob/main/docs/action-usage.md): action commands,
|
|
201
201
|
including `cleanup` and `scan`
|
|
202
|
-
- [
|
|
203
|
-
scan-to-scan comparison
|
|
202
|
+
- [ghcr-manager-visualizer](https://github.com/ghcr-manager/ghcr-manager/blob/main/visualizer/README.md): local graph
|
|
203
|
+
inspection and scan-to-scan comparison
|
|
204
204
|
- [Multi-package workflows](https://github.com/ghcr-manager/ghcr-manager/blob/main/docs/db-merge-workflows.md): cleaning
|
|
205
205
|
up multiple packages with one combined DB
|
|
206
206
|
- [SQLite schema guide](https://github.com/ghcr-manager/ghcr-manager/blob/main/docs/schema-description.md): practical
|
package/package.json
CHANGED
|
@@ -2,6 +2,20 @@
|
|
|
2
2
|
"name": "ghcr-manager",
|
|
3
3
|
"description": "Inspect, analyze, and manage GitHub Container Registry packages.",
|
|
4
4
|
"homepage": "https://github.com/ghcr-manager/ghcr-manager#readme",
|
|
5
|
+
"version": "v1.0.3",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"type": "module",
|
|
8
|
+
"keywords": [
|
|
9
|
+
"ghcr",
|
|
10
|
+
"github-container-registry",
|
|
11
|
+
"github-packages",
|
|
12
|
+
"container-registry",
|
|
13
|
+
"docker",
|
|
14
|
+
"oci",
|
|
15
|
+
"cleanup",
|
|
16
|
+
"github-actions",
|
|
17
|
+
"sqlite"
|
|
18
|
+
],
|
|
5
19
|
"bugs": {
|
|
6
20
|
"url": "https://github.com/ghcr-manager/ghcr-manager/issues"
|
|
7
21
|
},
|
|
@@ -9,9 +23,6 @@
|
|
|
9
23
|
"type": "git",
|
|
10
24
|
"url": "https://github.com/ghcr-manager/ghcr-manager"
|
|
11
25
|
},
|
|
12
|
-
"license": "MIT",
|
|
13
|
-
"version": "v1.0.2",
|
|
14
|
-
"type": "module",
|
|
15
26
|
"workspaces": [
|
|
16
27
|
"visualizer"
|
|
17
28
|
],
|