@chappibunny/repolens 1.3.0 โ 1.4.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/CHANGELOG.md +36 -1
- package/README.md +95 -1109
- package/RELEASE.md +1 -1
- package/package.json +1 -1
- package/src/ai/prompts.js +53 -10
- package/src/analyzers/domain-inference.js +37 -22
- package/src/cli.js +2 -2
- package/src/docs/generate-doc-set.js +1 -1
- package/src/doctor.js +51 -0
- package/src/integrations/discord.js +3 -3
- package/src/publishers/confluence.js +9 -2
- package/src/publishers/markdown.js +10 -1
- package/src/publishers/notion.js +95 -20
- package/src/renderers/render.js +8 -0
- package/src/renderers/renderDiff.js +18 -0
- package/src/renderers/renderMap.js +75 -60
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,41 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to RepoLens will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## 1.4.0
|
|
6
|
+
|
|
7
|
+
### ๐ Bug Fixes (Tier 1 โ Production)
|
|
8
|
+
|
|
9
|
+
- **Confluence CDATA injection**: Code blocks containing `]]>` no longer break Confluence XML storage format. Applied standard CDATA escape pattern (`]]]]><** โ Full step-by-step guide extracted from README (publishers, AI, Notion, Confluence, GitHub Wiki, Discord, CI/CD). Previously 350+ lines inside README.
|
|
34
|
+
- **Security & Telemetry sections condensed** โ ~200 lines of detail replaced with 3-line summaries linking to SECURITY.md and TELEMETRY.md.
|
|
35
|
+
- **22-item feature checklist โ 8-row "Why RepoLens" table** โ Scannable, benefit-focused instead of spec-sheet.
|
|
36
|
+
- **Unified documentation table** โ All 10 supporting docs linked from one place.
|
|
37
|
+
- **Fixed 11 version references** across docs (1.3.0 โ 1.3.1).
|
|
38
|
+
- **npm version badge** added to README header.
|
|
39
|
+
|
|
5
40
|
## 1.3.0
|
|
6
41
|
|
|
7
42
|
### โจ New Feature: `repolens demo`
|
|
@@ -124,7 +159,7 @@ RepoLens v1.0.0 marks the first stable release with a frozen public API. All CLI
|
|
|
124
159
|
- Config schema updated: `plugins` array validated, custom publisher names accepted
|
|
125
160
|
|
|
126
161
|
### ๐งช Tests
|
|
127
|
-
- Added 21 new plugin tests + 21 publisher parser tests (
|
|
162
|
+
- Added 21 new plugin tests + 21 publisher parser tests (185 tests across 15 files)
|
|
128
163
|
|
|
129
164
|
### ๐ง Output Quality
|
|
130
165
|
- **Notion Publisher**: Full table support (table blocks with `table_row` children), blockquote โ callout, dividers, numbered lists, h3 headings, inline rich text (`**bold**`, `*italic*`, `` `code` ``)
|