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

fix: updated dependencies of at_commons,at_utils #1724

Merged
merged 2 commits into from
Jan 2, 2024
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
4 changes: 4 additions & 0 deletions packages/at_persistence_secondary_server/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 3.0.60
- build[deps]: Upgraded the following packages:
- at_commons to v4.0.0
- at_utils to v3.0.16
## 3.0.59
- fix: When checking namespace authorization, gracefully handle any malformed
keys which happen to be in the commit log for historical reasons
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,8 @@ class AtMetaData extends HiveObject {
..ttb = ttb
..ttr = ttr
..ccd = isCascade
..isBinary = isBinary
..isEncrypted = isEncrypted
..isBinary = (isBinary == null) ? false : isBinary!
..isEncrypted = (isEncrypted == null) ? false : isEncrypted!
..dataSignature = dataSignature
..sharedKeyEnc = sharedKeyEnc
..pubKeyCS = pubKeyCS
Expand Down
6 changes: 3 additions & 3 deletions packages/at_persistence_secondary_server/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: at_persistence_secondary_server
description: A Dart library with the implementation classes for the persistence layer of the secondary server.
version: 3.0.59
version: 3.0.60
repository: https://github.com/atsign-foundation/at_server
homepage: https://docs.atsign.com/

Expand All @@ -14,8 +14,8 @@ dependencies:
crypto: ^3.0.2
uuid: ^3.0.6
at_utf7: ^1.0.0
at_commons: ^3.0.56
at_utils: ^3.0.15
at_commons: ^4.0.0
at_utils: ^3.0.16
at_persistence_spec: ^2.0.14
meta: ^1.8.0

Expand Down