diff --git a/at_lookup/CHANGELOG.md b/at_lookup/CHANGELOG.md index 2d60f48e..f802260d 100644 --- a/at_lookup/CHANGELOG.md +++ b/at_lookup/CHANGELOG.md @@ -1,3 +1,5 @@ +## 3.0.26 +- Update at_commons version 3.0.18 to display hidden keys in scan ## 3.0.25 - Update at_commons version 3.0.17 for AtException hierarchy ## 3.0.24 diff --git a/at_lookup/lib/src/at_lookup_impl.dart b/at_lookup/lib/src/at_lookup_impl.dart index f6355ec0..03f39ab7 100644 --- a/at_lookup/lib/src/at_lookup_impl.dart +++ b/at_lookup/lib/src/at_lookup_impl.dart @@ -166,11 +166,15 @@ class AtLookupImpl implements AtLookUp { @override Future> scan( - {String? regex, String? sharedBy, bool auth = true}) async { + {String? regex, + String? sharedBy, + bool auth = true, + bool showHiddenKeys = false}) async { var builder = ScanVerbBuilder() ..sharedBy = sharedBy ..regex = regex - ..auth = auth; + ..auth = auth + ..showHiddenKeys = showHiddenKeys; var scanResult = await executeVerb(builder); if (scanResult.isNotEmpty) { scanResult = scanResult.replaceFirst('data:', ''); diff --git a/at_lookup/pubspec.yaml b/at_lookup/pubspec.yaml index f98b1cec..d260047e 100644 --- a/at_lookup/pubspec.yaml +++ b/at_lookup/pubspec.yaml @@ -1,6 +1,6 @@ name: at_lookup description: A Dart library that contains the core commands that can be used with a secondary server (scan, update, lookup, llookup, plookup, etc.) -version: 3.0.25 +version: 3.0.26 repository: https://github.com/atsign-foundation/at_libraries homepage: https://atsign.dev @@ -12,7 +12,7 @@ dependencies: crypton: ^2.0.1 crypto: ^3.0.1 at_utils: ^3.0.10 - at_commons: ^3.0.17 + at_commons: ^3.0.18 mutex: ^3.0.0 mocktail: ^0.3.0