blippy 0.1.4 → 0.1.6

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
@@ -7,6 +7,61 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.1.6](https://github.com/AksharP5/blippy/compare/v0.1.5...v0.1.6) - 2026-02-28
11
+
12
+ ### Added
13
+
14
+ - *(pr)* add permission-aware pull request merge flow
15
+ - *(ui)* add transient browser-open status toast
16
+
17
+ ### Fixed
18
+
19
+ - *(pr)* show merge shortcut in PR contexts
20
+ - *(ui)* label PR comment editor titles correctly
21
+ - *(ui)* clear stale terminal artifacts after browser launch
22
+
23
+ ### Other
24
+
25
+ - merge main into feat/pr-merge
26
+
27
+ ## [0.1.5](https://github.com/AksharP5/blippy/compare/v0.1.4...v0.1.5) - 2026-02-16
28
+
29
+ ### Added
30
+
31
+ - add confirmed TUI issue creation workflow
32
+ - handle merged pull request state in filters and status
33
+ - show linked item overflow hint in issue detail
34
+ - improve linked picker context and multi-link labels
35
+ - add linked picker for multiple linked issues and pull requests
36
+
37
+ ### Other
38
+
39
+ - move main tests into dedicated module
40
+ - move sync tests into dedicated module
41
+ - split github client into focused modules
42
+ - split app navigation into keyboard and mouse modules
43
+ - move store tests into dedicated module
44
+ - extract shared ui helper module
45
+ - extract app input handling module
46
+ - split sync workflows into focused modules
47
+ - split issue detail and action utility modules
48
+ - separate main action utilities
49
+ - split ui rendering into focused modules
50
+ - split main workflow into modules
51
+ - split app module into focused submodules
52
+ - extract interaction state
53
+ - extract search state
54
+ - extract navigation state
55
+ - extract metadata picker state
56
+ - extract pull request state
57
+ - extract pull request diff reset helpers
58
+ - centralize pull request state reset
59
+ - extract repo context state
60
+ - centralize store connection usage
61
+ - extract linked navigation state
62
+ - extract sync state from app
63
+ - streamline worker setup
64
+
10
65
  ## [0.1.4](https://github.com/AksharP5/blippy/compare/v0.1.3...v0.1.4) - 2026-02-13
11
66
 
12
67
  ### Fixed
package/README.md CHANGED
@@ -59,6 +59,7 @@ cargo install --git https://github.com/AksharP5/blippy
59
59
  - Browse and manage issues and pull requests
60
60
  - Open linked issues/PRs in TUI or browser
61
61
  - Review PR diffs with inline comments and thread resolution
62
+ - Merge pull requests from the TUI when repository permissions allow
62
63
  - Edit labels and assignees (when repository permissions allow)
63
64
  - Customize themes, keybindings, and close-comment presets
64
65
 
@@ -22,7 +22,7 @@
22
22
  },
23
23
  "hasInstallScript": true,
24
24
  "name": "blippy",
25
- "version": "0.1.4"
25
+ "version": "0.1.6"
26
26
  },
27
27
  "node_modules/@isaacs/balanced-match": {
28
28
  "engines": {
@@ -514,5 +514,5 @@
514
514
  }
515
515
  },
516
516
  "requires": true,
517
- "version": "0.1.4"
517
+ "version": "0.1.6"
518
518
  }
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "artifactDownloadUrl": "https://github.com/AksharP5/blippy/releases/download/v0.1.4",
2
+ "artifactDownloadUrl": "https://github.com/AksharP5/blippy/releases/download/v0.1.6",
3
3
  "bin": {
4
4
  "blippy": "run-blippy.js"
5
5
  },
@@ -75,7 +75,7 @@
75
75
  "zipExt": ".tar.gz"
76
76
  }
77
77
  },
78
- "version": "0.1.4",
78
+ "version": "0.1.6",
79
79
  "volta": {
80
80
  "node": "18.14.1",
81
81
  "npm": "9.5.0"