Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build: at_client dependecy upgrades #1150

Merged
merged 6 commits into from
Dec 13, 2023
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
3 changes: 3 additions & 0 deletions packages/at_client/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 3.0.70
- 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.69
- feat: Add AtRpcClient for a much cleaner developer experience for sending AtRpc requests
## 3.0.68
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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.69';
final String atClientVersion = '3.0.70';

/// Represents the client commit log compaction time interval
///
Expand Down
10 changes: 5 additions & 5 deletions packages/at_client/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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.69
version: 3.0.70
## NB: When incrementing the version, please also increment the version in AtClientConfig file
##

Expand All @@ -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.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
crypto: ^3.0.1
crypto: ^3.0.3
collection: ^1.16.0
archive: ^3.3.5
http: ">=0.13.5 <2.0.0"
Expand Down