From 3ad3cbde647b5bfe15b63610296d5bf3d71ce572 Mon Sep 17 00:00:00 2001 From: Srie Teja Date: Wed, 25 Oct 2023 03:07:43 +0530 Subject: [PATCH 1/4] build: upgrade deps for at_client to latest versions --- packages/at_client/pubspec.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/at_client/pubspec.yaml b/packages/at_client/pubspec.yaml index c7b0a9aef..5569afd24 100644 --- a/packages/at_client/pubspec.yaml +++ b/packages/at_client/pubspec.yaml @@ -17,13 +17,13 @@ environment: dependencies: path: ^1.8.2 hive: ^2.2.3 - asn1lib: ">=1.4.1 <1.5.0" - crypton: ">=2.1.0 <2.1.1" - encrypt: ">=5.0.1 <5.0.2" + asn1lib: "<=1.5.0" + crypton: "<=2.2.1" + encrypt: "<=5.0.3" cron: ^0.5.1 convert: ^3.0.2 uuid: ^3.0.7 - crypto: ^3.0.1 + crypto: ^3.0.3 collection: ^1.16.0 archive: ^3.3.5 http: ">=0.13.5 <2.0.0" From af5aa22e11fff6ad37513fbd543e62d565e57ed3 Mon Sep 17 00:00:00 2001 From: Srie Teja Date: Wed, 25 Oct 2023 11:06:39 +0530 Subject: [PATCH 2/4] build: add minimum version constraints for the upgraded packages --- packages/at_client/pubspec.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/at_client/pubspec.yaml b/packages/at_client/pubspec.yaml index 5569afd24..7f0f76481 100644 --- a/packages/at_client/pubspec.yaml +++ b/packages/at_client/pubspec.yaml @@ -17,9 +17,9 @@ environment: dependencies: path: ^1.8.2 hive: ^2.2.3 - asn1lib: "<=1.5.0" - crypton: "<=2.2.1" - encrypt: "<=5.0.3" + asn1lib: ">=1.4.1 <=1.5.0" + crypton: ">=2.1.0 <=2.2.1" + encrypt: ">=5.0.1 <=5.0.3" cron: ^0.5.1 convert: ^3.0.2 uuid: ^3.0.7 From b03dfec2082150c767d7c38713f7fa4e59a0f78f Mon Sep 17 00:00:00 2001 From: Srie Teja Date: Wed, 25 Oct 2023 12:29:28 +0530 Subject: [PATCH 3/4] build: upgraded at_client version to 3.0.67 --- packages/at_client/lib/src/preference/at_client_config.dart | 2 +- packages/at_client/pubspec.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/at_client/lib/src/preference/at_client_config.dart b/packages/at_client/lib/src/preference/at_client_config.dart index 3d77b5b4f..683850a15 100644 --- a/packages/at_client/lib/src/preference/at_client_config.dart +++ b/packages/at_client/lib/src/preference/at_client_config.dart @@ -10,7 +10,7 @@ class AtClientConfig { /// Represents the at_client version. /// Must always be the same as the actual version in pubspec.yaml - final String atClientVersion = '3.0.66'; + final String atClientVersion = '3.0.67'; /// Represents the client commit log compaction time interval /// diff --git a/packages/at_client/pubspec.yaml b/packages/at_client/pubspec.yaml index 7f0f76481..51e9f80fa 100644 --- a/packages/at_client/pubspec.yaml +++ b/packages/at_client/pubspec.yaml @@ -4,7 +4,7 @@ description: The at_client library is the non-platform specific Client SDK which ## ## ## NB: When incrementing the version, please also increment the version in AtClientConfig file -version: 3.0.66 +version: 3.0.67 ## NB: When incrementing the version, please also increment the version in AtClientConfig file ## From 0cb21fca9f8e84ab1ab290fe7758f75202351394 Mon Sep 17 00:00:00 2001 From: Srie Teja Date: Wed, 25 Oct 2023 12:29:47 +0530 Subject: [PATCH 4/4] docs: updated changelog reg relevant changes --- packages/at_client/CHANGELOG.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/packages/at_client/CHANGELOG.md b/packages/at_client/CHANGELOG.md index e8bdca7db..dde1d5c35 100644 --- a/packages/at_client/CHANGELOG.md +++ b/packages/at_client/CHANGELOG.md @@ -1,3 +1,6 @@ +## 3.0.67 +- build[deps]: Upgraded dependencies for the following packages: + - asn1lib: `>=1.4.1 <=1.5.0`, crypton: `>=2.1.0 <=2.2.1`, encrypt: `>=5.0.1 <=5.0.3`, crypto: `^3.0.3` ## 3.0.66 - feat: deprecate useAtChops experimental flag and remove fallback code using private key from preferences/EncryptionUtil methods - updated at_commons to `'3.0.57'`, at_chops to `'1.0.5`, at_persistence_secondary_server to `'3.0.59'`