carson 2.19.0 → 2.19.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 +4 -4
- data/MANUAL.md +2 -2
- data/RELEASE.md +6 -0
- data/VERSION +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 435170cdcfaa157366cfa6b761ebde96c1877280d90beeeddbe7520818724a73
|
|
4
|
+
data.tar.gz: 6387c9b36f0f6186df924c416e724d48a69304be8ae77f50ff4a9053f7cea913
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e2767245bfcdc8f742f4d721d327eae751bc2e081f34453c5973378ca0a56a2a0b41cd3b206369190785d371406d982718b3dff45c8e868faf598cc370a24be7
|
|
7
|
+
data.tar.gz: 7708eb059145a43fc1c09e0a09c3d23739c41ec39686da421c394634f74568936088d195d97ac11104d3de43b8751409916a7b029ad6b67777dce58e888215f3
|
data/MANUAL.md
CHANGED
|
@@ -101,7 +101,7 @@ Notes:
|
|
|
101
101
|
|
|
102
102
|
### Canonical Templates
|
|
103
103
|
|
|
104
|
-
Carson manages 5 governance files (carson.md, CLAUDE.md, AGENTS.md, copilot-instructions.md, pull_request_template.md). Beyond those, you can tell Carson about your own canonical `.github/` files — CI workflows, linter configs,
|
|
104
|
+
Carson manages 5 governance files (carson.md, CLAUDE.md, AGENTS.md, copilot-instructions.md, pull_request_template.md). Beyond those, you can tell Carson about your own canonical `.github/` files — CI workflows, linter configs, labeller rules, anything that belongs in `.github/`.
|
|
105
105
|
|
|
106
106
|
Set `template.canonical` in `~/.carson/config.json`:
|
|
107
107
|
|
|
@@ -120,7 +120,7 @@ That directory mirrors the `.github/` structure:
|
|
|
120
120
|
├── workflows/
|
|
121
121
|
│ └── lint.yml → deployed to .github/workflows/lint.yml
|
|
122
122
|
├── .mega-linter.yml → deployed to .github/.mega-linter.yml
|
|
123
|
-
└──
|
|
123
|
+
└── labeler.yml → deployed to .github/labeler.yml
|
|
124
124
|
```
|
|
125
125
|
|
|
126
126
|
Carson discovers files in this directory and syncs them to governed repos alongside its own governance files. `carson template check` detects drift, `carson template apply` writes them, and `carson refresh` propagates them to the remote.
|
data/RELEASE.md
CHANGED
|
@@ -5,6 +5,12 @@ Release-note scope rule:
|
|
|
5
5
|
- `RELEASE.md` records only version deltas, breaking changes, and migration actions.
|
|
6
6
|
- Operational usage guides live in `MANUAL.md` and `API.md`.
|
|
7
7
|
|
|
8
|
+
## 2.19.1 — Remove Dependabot References
|
|
9
|
+
|
|
10
|
+
### What changed
|
|
11
|
+
|
|
12
|
+
- Replaced all Dependabot example references in documentation and tests with `labeler.yml`. Carson never had a Dependabot feature — these were illustrative filenames for the canonical template system.
|
|
13
|
+
|
|
8
14
|
## 2.19.0 — Canonical Templates, Lint Removed
|
|
9
15
|
|
|
10
16
|
### What changed
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.19.
|
|
1
|
+
2.19.1
|