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: Remove deprecated methods and fields and rename enrollStatus field. #463

Merged
merged 2 commits into from
Nov 28, 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
10 changes: 1 addition & 9 deletions packages/at_commons/lib/at_commons.dart
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,7 @@ export 'package:at_commons/src/exception/at_client_exceptions.dart';
export 'package:at_commons/src/exception/at_exception_manager.dart';
export 'package:at_commons/src/exception/at_exception_stack.dart';
export 'package:at_commons/src/exception/at_exception_utils.dart';
export 'package:at_commons/src/exception/at_exceptions.dart'
hide
AtServerException,
InboundConnectionLimitException,
OutboundConnectionLimitException,
BlockedConnectionException,
LookupException,
InternalServerException,
InternalServerError;
export 'package:at_commons/src/exception/at_exceptions.dart';
export 'package:at_commons/src/exception/at_server_exceptions.dart';
export 'package:at_commons/src/exception/error_message.dart';
export 'package:at_commons/src/keystore/at_key.dart';
Expand Down
5 changes: 2 additions & 3 deletions packages/at_commons/lib/src/at_constants.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
part 'at_constants_legacy.dart';

class AtConstants {
static const String atSign = 'atSign';
static const String forAtSign = 'forAtSign';
Expand All @@ -20,7 +18,8 @@ class AtConstants {
static const String atSigningPublicKey = 'public:signing_publickey';
static const String atCramSecret = 'privatekey:at_secret';
static const String atCramSecretDeleted = 'privatekey:at_secret_deleted';
static const String atBlocklist = 'private:blocklist'; // contains @atsign postfix
static const String atBlocklist =
'private:blocklist'; // contains @atsign postfix
static const String atSigningKeypairGenerated =
'privatekey:signing_keypair_generated';
static const String statId = 'statId';
Expand Down
319 changes: 0 additions & 319 deletions packages/at_commons/lib/src/at_constants_legacy.dart

This file was deleted.

22 changes: 0 additions & 22 deletions packages/at_commons/lib/src/compaction/at_compaction_config.dart

This file was deleted.

Loading