Skip to content

Commit 2ee8d70

Browse files
committed
chore: prepare release v1.5.2
1 parent 2d3eb5b commit 2ee8d70

File tree

5 files changed

+44
-3
lines changed

5 files changed

+44
-3
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2121
- 🔗 **Deep Linking**: Added ability to navigate from Token Stats view directly to detailed session conversation.
2222
-**Navigation Improvements**: Fixed infinite loading when switching sessions from the Board view by implementing optimistic store updates.
2323

24+
## Version 1.5.2 (2026-02-21)
25+
26+
### Added
27+
28+
- 📝 **Update Notes in Modal**: Auto-update modal now shows release name and release notes from updater metadata.
29+
- 🐞 **One-click Issue Report from Update Failure**: Failure state now opens the feedback modal with updater diagnostics prefilled for faster bug reporting.
30+
31+
### Changed
32+
33+
- 🔄 **Updater Stage UX**: Download, install, and restart stages are separated and reflected in UI states for clearer progress feedback.
34+
35+
### Fixed
36+
37+
-**Updater Error Mapping**: Distinguishes install-stage and restart-stage failures to avoid misleading `Download failed` messages after successful payload download.
38+
- 🛠️ **Release Workflow Auth**: Split GitHub token usage between main repository and tap repository access in updater release workflow.
39+
2440

2541
---
2642

docs/changelogs/v1.5.2.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
## Highlights
2+
- Updater errors are now mapped by stage (install vs restart), reducing false `Download failed` guidance after successful downloads.
3+
- The auto-update modal now displays release notes directly from updater metadata.
4+
- Update failures can be reported with one click via feedback modal prefilled with updater diagnostics.
5+
6+
## Added
7+
- Release name and release notes rendering inside the auto-update modal.
8+
- Updater diagnostics formatter and UI test coverage for failure/report flows.
9+
10+
## Improved
11+
- Auto-update UX now explicitly reflects downloading, installing, and restarting stages.
12+
- Feedback modal supports prefilled subject/body/type from caller context.
13+
14+
## Fixed
15+
- Improved updater fallback handling for restart-required scenarios.
16+
- Updated release workflow authentication handling for main repo vs tap repo access.
17+
18+
## Breaking Changes
19+
- No breaking changes.
20+
21+
## Migration Notes
22+
- No migration required.
23+
24+
## Full Changelog
25+
- Compare: https://github.com/jhlee0409/claude-code-history-viewer/compare/v1.5.1...v1.5.2

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "claude-code-history-viewer",
33
"private": true,
4-
"version": "1.5.1",
4+
"version": "1.5.2",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",

src-tauri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "claude-code-history-viewer"
3-
version = "1.5.1"
3+
version = "1.5.2"
44
description = "Claude Code 대화 기록을 탐색하고 분석하는 데스크톱 애플리케이션"
55
authors = ["JaeHyeok Lee"]
66
license = "MIT"

src-tauri/tauri.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://schema.tauri.app/config/2",
33
"productName": "Claude Code History Viewer",
4-
"version": "1.5.1",
4+
"version": "1.5.2",
55
"identifier": "com.claude.history-viewer",
66
"build": {
77
"frontendDist": "../dist",

0 commit comments

Comments
 (0)