From 66b9862cf9b306d0e4eadcc68ab72a843ff2ecc1 Mon Sep 17 00:00:00 2001 From: Derek Scruggs Date: Mon, 20 Jul 2026 15:32:50 -0500 Subject: [PATCH 1/3] Reword wallet chooser permission dialog copy. Replace the abstract 'wants to manage credentials for you' with concrete language describing what the user will experience later: 'wants to appear as an option when you're asked to share or store information on other websites'. Most users don't have a mental model for 'credentials' as a category; this describes the future action instead of the abstract permission grant. Addresses #150. --- CHANGELOG.md | 8 ++++++++ package-lock.json | 4 ++-- package.json | 2 +- web/components/MediatorGreeting.vue | 3 ++- 4 files changed, 13 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1f36a142..ad895db8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # authn.io ChangeLog +## 7.5.2 - 2026-07-dd + +### Changed +- Reword the first party wallet chooser permission dialog to describe + the concrete action ("appear as an option when you're asked to share + or store information on other websites") instead of the abstract + "manage credentials for you". Addresses #150. + ## 7.5.1 - 2026-06-15 ### Fixed diff --git a/package-lock.json b/package-lock.json index a402b4ef..cdac0500 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "authio", - "version": "7.5.1", + "version": "7.5.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "authio", - "version": "7.5.1", + "version": "7.5.2", "license": "SEE LICENSE IN LICENSE", "dependencies": { "@bedrock/config-yaml": "^4.3.3", diff --git a/package.json b/package.json index 30b2d98f..f621861e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "authio", - "version": "7.5.1", + "version": "7.5.2", "type": "module", "main": "./lib/index.js", "browser": { diff --git a/web/components/MediatorGreeting.vue b/web/components/MediatorGreeting.vue index f8eab74a..3782582b 100644 --- a/web/components/MediatorGreeting.vue +++ b/web/components/MediatorGreeting.vue @@ -57,7 +57,8 @@ export default { if(requestType.value === 'credentialStore') { return 'has credentials for you to store:'; } - return 'wants to manage credentials for you:'; + return 'wants to appear as an option when you\'re asked to share or ' + + 'store information on other websites:'; }); return {websiteDesire}; } From 1b7ee4b7c3d17cb5c8337a515e1e29c519534fc2 Mon Sep 17 00:00:00 2001 From: Dave Longley Date: Wed, 22 Jul 2026 15:18:08 -0400 Subject: [PATCH 2/3] Adjust package/changelog versioning. Co-authored-by: Dave Longley --- CHANGELOG.md | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ad895db8..68ad5498 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # authn.io ChangeLog -## 7.5.2 - 2026-07-dd +## 7.6.0 - 2026-07-dd ### Changed - Reword the first party wallet chooser permission dialog to describe diff --git a/package.json b/package.json index f621861e..30b2d98f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "authio", - "version": "7.5.2", + "version": "7.5.1", "type": "module", "main": "./lib/index.js", "browser": { From 64cfb3d2af6d85db7a7308a2f63bdf252967bbaa Mon Sep 17 00:00:00 2001 From: Derek Scruggs Date: Thu, 23 Jul 2026 17:00:43 -0500 Subject: [PATCH 3/3] Sync package-lock.json version to 7.5.1. The lockfile version fields lagged at 7.5.2 while package.json was already at 7.5.1, matching main. Restore the lockfile so this PR introduces no package version change; the release tooling bumps the version from the CHANGELOG entry. Co-Authored-By: Claude Opus 4.8 (1M context) --- package-lock.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package-lock.json b/package-lock.json index cdac0500..a402b4ef 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "authio", - "version": "7.5.2", + "version": "7.5.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "authio", - "version": "7.5.2", + "version": "7.5.1", "license": "SEE LICENSE IN LICENSE", "dependencies": { "@bedrock/config-yaml": "^4.3.3",