@fatecannotbealtered-/jira-cli 1.0.1 → 1.0.2

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +18 -2
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -7,6 +7,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [1.0.2] - 2026-05-14
11
+
12
+ ### Fixed
13
+
14
+ - **Retry loop now respects context cancellation** — long-running API calls with rate limiting or server errors can now be interrupted by the caller.
15
+ - **Upload retry loop now respects context cancellation** — file uploads honor context cancellation during retries.
16
+ - **Token sanitization improved** — audit logging now handles `--token=value` format for all case variations (e.g., `--TOKEN=`, `--Token=`).
17
+ - **Config file corruption detection** — invalid JSON in `~/.jira-cli/config.json` now returns an error instead of silently continuing with empty values.
18
+ - **Timing attack prevention** — confirmation prompts use constant-time comparison to prevent timing-based information leakage.
19
+
20
+ ### Security
21
+
22
+ - **Audit logging uses constant-time comparison** to prevent timing attacks on confirmation inputs.
23
+ - **Sensitive flags aligned with JDC-only PAT authentication** — audit sanitization targets only `--token` and `-t` since this CLI uses PAT only, no password support.
24
+
10
25
  ## [1.0.1] - 2026-05-06
11
26
 
12
27
  ### Fixed
@@ -22,7 +37,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
22
37
  - **`filter run` supports `--raw` and `--fields`** flags, consistent with `search` and `issue list`.
23
38
  - **`board backlog` and `board epics` support `--limit`** flag (default 50, max 200).
24
39
  - **`issue watch`/`unwatch`/`vote`/`unvote` produce JSON output** with `--json` flag.
25
- - **`parseTimeSpent` supports `d` (days) and `w` (weeks)** units — `1d` = 8h, `1w` = 5d (Jira defaults).
40
+ - **`parseTimeSpent` supports `d` (days) and `w` (weeks)`** units — `1d` = 8h, `1w` = 5d (Jira defaults).
26
41
  - **`make test` now runs `gofmt` and `go vet`** before unit tests.
27
42
  - **Release workflow extracts version-specific notes** from CHANGELOG.md for GitHub Release body.
28
43
 
@@ -58,6 +73,7 @@ Initial release of jira-cli for Jira Data Center.
58
73
  - SKILL.md with JSON output schemas, error codes, exit codes, and complete flag reference.
59
74
  - GitHub PR template for contributors.
60
75
 
61
- [Unreleased]: https://github.com/fatecannotbealtered/jira-cli/compare/v1.0.1...HEAD
76
+ [Unreleased]: https://github.com/fatecannotbealtered/jira-cli/compare/v1.0.2...HEAD
77
+ [1.0.2]: https://github.com/fatecannotbealtered/jira-cli/compare/v1.0.1...v1.0.2
62
78
  [1.0.1]: https://github.com/fatecannotbealtered/jira-cli/compare/v1.0.0...v1.0.1
63
79
  [1.0.0]: https://github.com/fatecannotbealtered/jira-cli/releases/tag/v1.0.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fatecannotbealtered-/jira-cli",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "Full-featured Jira Data Center CLI for humans and AI Agents — manage issues, sprints, boards, epics, projects, users, and filters from your terminal",
5
5
  "keywords": [
6
6
  "jira",