Skip to content

Commit

Permalink
Merge pull request #1724 from atsign-foundation/persistence_secondary…
Browse files Browse the repository at this point in the history
…_commons_uptake

fix: updated dependencies of at_commons,at_utils
  • Loading branch information
murali-shris authored Jan 2, 2024
2 parents 84329df + 50c2ebe commit 6565d86
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
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

0 comments on commit 6565d86

Please sign in to comment.