@qiaolei81/copilot-session-viewer 0.1.2 → 0.1.4

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 CHANGED
@@ -5,6 +5,74 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [0.1.4] - 2026-02-16
9
+
10
+ ### Fixed
11
+ - Rate limiting configuration for insight operations - resolved 429 "Too Many Requests" errors
12
+ - Removed rate limiting from insight status checks (GET requests) - status checks are now unlimited
13
+ - Improved rate limiting differentiation: strict for generation (POST), lenient for access (DELETE)
14
+ - Fixed "Age: NaNs" timestamp display issue in insight generation progress
15
+ - Added missing `ageMs` calculation to backend insight service responses
16
+ - ESLint configuration migration from deprecated `.eslintignore` to modern flat config
17
+ - Minimal `.npmignore` configuration for optimized package publishing (82% size reduction)
18
+
19
+ ### Changed
20
+ - Insight output file renamed from `insight-report.md` to `copilot-insight.md`
21
+ - Insight prompt rewritten to enforce ≤500 character output (down from ~2000 words)
22
+ - Insight now focuses on three essentials: health score, top issue, key recommendation
23
+ - Insight generation rate limiting: 3 requests per 5 minutes (more user-friendly window)
24
+ - Insight access operations: 50 requests per minute (very lenient for status checks)
25
+ - Package size optimized from 298kB to 52kB for npm publishing
26
+
27
+ ### Removed
28
+ - Deprecated `.eslintignore` file in favor of `eslint.config.mjs` ignores property
29
+ - Verbose `.npmignore` entries - simplified to essential exclusions only
30
+
31
+ ## [0.1.3] - 2026-02-16
32
+
33
+ ### Added
34
+ - Infinite scroll functionality for homepage session list
35
+ - "Load More Sessions" button for manual session loading
36
+ - Seamless scroll-triggered loading when approaching bottom of page
37
+ - API endpoint `/api/sessions/load-more` for paginated session loading
38
+ - Comprehensive e2e test suite expansion (45 total tests, up from 17)
39
+ - New test files: `api-pagination.spec.js`, `infinite-scroll.spec.js`, `core-functionality.spec.js`
40
+
41
+ ### Changed
42
+ - Replaced traditional pagination with infinite scroll on homepage
43
+ - Homepage now loads initial 20 sessions instead of all sessions
44
+ - Session count display removed from homepage for cleaner UI
45
+ - Updated JavaScript to handle dynamic session loading and rendering
46
+
47
+ ### Removed
48
+ - Session count display "(showing X of Y)" from homepage header
49
+ - Unused logger utility (`src/utils/logger.js`) - dead code cleanup
50
+ - Pagination parameters from homepage (legacy support maintained in API)
51
+
52
+ ### Fixed
53
+ - Updated unit tests to reflect infinite scroll functionality
54
+ - Improved performance for sites with large numbers of sessions
55
+ - Memory usage optimization by loading sessions progressively
56
+ - E2E test reliability improvements - achieved 100% pass rate (45/45 tests)
57
+ - Fixed selector issues in session detail page tests
58
+ - Improved test resilience with better error handling and fallback selectors
59
+
60
+ ## [0.1.2] - 2026-02-15
61
+
62
+ ### Fixed
63
+ - Content Security Policy configuration (removed unsafe-inline and unsafe-eval)
64
+ - Missing repository URL in README installation instructions
65
+ - Version inconsistencies across documentation files
66
+
67
+ ### Added
68
+ - Session pagination support for better performance with large session counts
69
+ - API endpoint pagination with backward compatibility
70
+
71
+ ## [0.1.1] - 2026-02-15
72
+
73
+ ### Internal
74
+ - Project improvements and bug fixes
75
+
8
76
  ## [0.1.0] - 2026-02-15
9
77
 
10
78
  ### Added
@@ -27,4 +95,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
27
95
  - CORS restricted to localhost
28
96
  - File upload size limits (50MB)
29
97
 
98
+ [0.1.3]: https://github.com/qiaolei81/copilot-session-viewer/releases/tag/v0.1.3
99
+ [0.1.2]: https://github.com/qiaolei81/copilot-session-viewer/releases/tag/v0.1.2
100
+ [0.1.1]: https://github.com/qiaolei81/copilot-session-viewer/releases/tag/v0.1.1
30
101
  [0.1.0]: https://github.com/qiaolei81/copilot-session-viewer/releases/tag/v0.1.0