Skip to content

Commit

Permalink
Merge pull request #178 from atsign-foundation/publish_atLookup
Browse files Browse the repository at this point in the history
build: upgrade at_lookup version to 3.0.25
  • Loading branch information
sitaram-kalluri authored Jun 15, 2022
2 parents d9247ef + cc4db11 commit bb419dd
Show file tree
Hide file tree
Showing 8 changed files with 27 additions and 25 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/at_libraries.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
working-directory: at_onboarding_cli
run: dart analyze

functional_tests_at_onbaording_cli:
functional_tests_at_onboarding_cli:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand Down
16 changes: 8 additions & 8 deletions at_contact/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,17 @@ environment:

dependencies:
intl: ^0.17.0
at_client: ^3.0.12
at_commons: ^3.0.5
at_client: ^3.0.25
at_commons: ^3.0.17
at_utils: ^3.0.6
uuid: ^3.0.4

#dependency_overrides:
# at_client:
# git:
# url: https://github.com/atsign-foundation/at_client_sdk.git
# path: at_client
# ref: trunk
dependency_overrides:
at_client:
git:
url: https://github.com/atsign-foundation/at_client_sdk.git
path: at_client
ref: trunk
# at_commons:
# git:
# url: https://github.com/atsign-foundation/at_tools.git
Expand Down
2 changes: 2 additions & 0 deletions at_lookup/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
## 3.0.25
- Update at_commons version 3.0.17 for AtException hierarchy
## 3.0.24
- Removed invalid line added to base_connection.dart
## 3.0.23
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ import 'package:at_lookup/src/cache/secondary_address_finder.dart';
import 'package:at_lookup/src/util/lookup_util.dart';
import 'package:at_utils/at_logger.dart';


class CacheableSecondaryAddressFinder implements SecondaryAddressFinder {
static const Duration defaultCacheDuration = Duration(hours: 1);

Expand Down
6 changes: 3 additions & 3 deletions at_lookup/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -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.24
version: 3.0.25
repository: https://github.com/atsign-foundation/at_libraries
homepage: https://atsign.dev

Expand All @@ -11,8 +11,8 @@ dependencies:
path: ^1.8.0
crypton: ^2.0.1
crypto: ^3.0.1
at_utils: ^3.0.9
at_commons: ^3.0.16
at_utils: ^3.0.10
at_commons: ^3.0.17
mutex: ^3.0.0
mocktail: ^0.3.0

Expand Down
12 changes: 6 additions & 6 deletions at_onboarding_cli/functional_tests/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ dependency_overrides:
git:
url: https://github.com/atsign-foundation/at_libraries.git
path: at_lookup
ref: findsecondary_bug
# at_client:
# git:
# url: https://github.com/atsign-foundation/at_client_sdk.git
# path: at_client
# ref: trunk
ref: trunk
at_client:
git:
url: https://github.com/atsign-foundation/at_client_sdk.git
path: at_client
ref: trunk


dev_dependencies:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ Future<void> main() async {
await insertSelfEncKey(atClient, atsign);
AtKey key = AtKey();
key.key = 'testKey3';
key.namespace = 'wavi';
await atClient?.put(key, 'value3');
AtValue? response = await atClient?.get(key);
expect('value3', response?.value);
Expand Down
12 changes: 6 additions & 6 deletions at_onboarding_cli/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@ dependency_overrides:
git:
url: https://github.com/atsign-foundation/at_libraries.git
path: at_lookup
ref: findsecondary_bug
ref: trunk

# at_client:
# git:
# url: https://github.com/atsign-foundation/at_client_sdk.git
# path: at_client
# ref: trunk
at_client:
git:
url: https://github.com/atsign-foundation/at_client_sdk.git
path: at_client
ref: trunk


dev_dependencies:
Expand Down

0 comments on commit bb419dd

Please sign in to comment.