Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# authn.io ChangeLog

## 7.6.0 - 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
Expand Down
3 changes: 2 additions & 1 deletion web/components/MediatorGreeting.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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};
}
Expand Down