From c3c23214ddf87de96a3397963bf64eb3a74ffa86 Mon Sep 17 00:00:00 2001 From: Sitaram Kalluri Date: Mon, 9 Dec 2024 22:42:30 +0530 Subject: [PATCH] fix: Update the version to 3.1.1 --- packages/at_secondary_server/CHANGELOG.md | 2 ++ packages/at_secondary_server/pubspec.yaml | 2 +- tests/at_end2end_test/test/lookup_verb_test.dart | 8 ++++---- 3 files changed, 7 insertions(+), 5 deletions(-) diff --git a/packages/at_secondary_server/CHANGELOG.md b/packages/at_secondary_server/CHANGELOG.md index 58e639b7c..2b155b113 100644 --- a/packages/at_secondary_server/CHANGELOG.md +++ b/packages/at_secondary_server/CHANGELOG.md @@ -1,3 +1,5 @@ +# 3.1.1 +- fix: Store "publicKeyHash" value in the keystore # 3.1.0 - feat: sync skip deletes until changes - fix: Enable persistence of the Initialization Vector for "defaultEncryptionPrivateKey" and "selfEncryptionKey" in diff --git a/packages/at_secondary_server/pubspec.yaml b/packages/at_secondary_server/pubspec.yaml index fc4553d6b..1aa03443d 100644 --- a/packages/at_secondary_server/pubspec.yaml +++ b/packages/at_secondary_server/pubspec.yaml @@ -1,6 +1,6 @@ name: at_secondary description: Implementation of secondary server. -version: 3.1.0 +version: 3.1.1 repository: https://github.com/atsign-foundation/at_server homepage: https://www.example.com publish_to: none diff --git a/tests/at_end2end_test/test/lookup_verb_test.dart b/tests/at_end2end_test/test/lookup_verb_test.dart index 67237dbc1..14dc155d1 100644 --- a/tests/at_end2end_test/test/lookup_verb_test.dart +++ b/tests/at_end2end_test/test/lookup_verb_test.dart @@ -55,15 +55,15 @@ void main() { test('A test to verify lookup metadata contains public key hash value', () async { Version atSign1ServerVersion = Version.parse(await sh1.getVersion()); - if (atSign1ServerVersion < Version(3, 1, 0)) { + if (atSign1ServerVersion < Version(3, 1, 1)) { print( - 'Found $atSign_1 with server version: $atSign1ServerVersion. This test is only applicable for server version greater than 3.1.0. Skipping the test'); + 'Found $atSign_1 with server version: $atSign1ServerVersion. This test is only applicable for server version least 3.1.1. Skipping the test'); return; } Version atSign2ServerVersion = Version.parse(await sh2.getVersion()); - if (atSign2ServerVersion < Version(3, 1, 0)) { + if (atSign2ServerVersion < Version(3, 1, 1)) { print( - 'Found $atSign_2 with server version: $atSign2ServerVersion. This test is only applicable for server version greater than 3.1.0. Skipping the test'); + 'Found $atSign_2 with server version: $atSign2ServerVersion. This test is only applicable for server version least 3.1.1. Skipping the test'); return; } var lastValue = Random().nextInt(5);