Skip to content

Commit 324214f

Browse files
authored
Merge pull request #24 from aaearon/docs/v0.3.0-release
docs: prepare CHANGELOG for v0.3.0 release
2 parents 0773864 + a531a2f commit 324214f

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file.
44

55
## [Unreleased]
66

7+
## [0.3.0] - 2026-02-19
8+
79
### Added
810

911
- Local file-based eligibility cache (`~/.grant/cache/`) with 4-hour default TTL — skips API roundtrip on subsequent runs

CLAUDE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ Custom `SCAAccessService` follows SDK conventions:
8484

8585
## Config
8686
- App config: `~/.grant/config.yaml`
87-
- SDK profile: `~/.idsec_profiles/grant.json`
87+
- SDK profile: `~/.idsec_profiles/grant`
8888

8989
## Authentication
9090
- Use the `/grant-login` skill when you need to authenticate to the grant CLI (e.g., before manual testing)

cmd/configure.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ func NewConfigureCommand() *cobra.Command {
2323
Long: `Configure grant by providing your CyberArk username and optional Identity URL.
2424
2525
This command creates two configuration files:
26-
- SDK profile at ~/.idsec_profiles/grant.json
26+
- SDK profile at ~/.idsec_profiles/grant
2727
- App config at ~/.grant/config.yaml
2828
2929
The Identity URL is optional — the SDK can auto-discover it from your username.
@@ -114,7 +114,7 @@ func runConfigure(cmd *cobra.Command, saver profileSaver, tenantURL, username st
114114
home, _ := os.UserHomeDir()
115115
profileDir = filepath.Join(home, ".idsec_profiles")
116116
}
117-
profilePath := filepath.Join(profileDir, "grant.json")
117+
profilePath := filepath.Join(profileDir, "grant")
118118

119119
// Create app config
120120
cfg := &config.Config{

cmd/configure_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ func TestConfigureCommand(t *testing.T) {
6969
},
7070
wantContain: []string{
7171
"Profile saved to",
72-
"grant.json",
72+
"grant",
7373
"Config saved to",
7474
"config.yaml",
7575
},
@@ -110,7 +110,7 @@ func TestConfigureCommand(t *testing.T) {
110110
},
111111
wantContain: []string{
112112
"Profile saved to",
113-
"grant.json",
113+
"grant",
114114
"Config saved to",
115115
"config.yaml",
116116
},

0 commit comments

Comments
 (0)