Skip to content

Commit

Permalink
Merge pull request #119 from atsign-foundation/2024-12-07
Browse files Browse the repository at this point in the history
ci: backup
  • Loading branch information
XavierChanth authored Dec 11, 2024
2 parents 7ba9220 + d4d5b80 commit 9ae3089
Show file tree
Hide file tree
Showing 8 changed files with 647 additions and 659 deletions.
336 changes: 165 additions & 171 deletions docs/diagrams/package_tree_by_module.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
958 changes: 476 additions & 482 deletions docs/diagrams/package_tree_hierarchical.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion modules/c/at_c
Submodule at_c updated 143 files
2 changes: 1 addition & 1 deletion modules/dart/at_libraries
Submodule at_libraries updated 54 files
+3 −3 .github/workflows/at_libraries.yaml
+2 −2 .github/workflows/dependency-review.yml
+1 −1 .github/workflows/melos_bootstrap.yaml
+1 −1 .github/workflows/scorecards.yml
+10 −0 packages/at_auth/CHANGELOG.md
+2 −10 packages/at_auth/lib/at_auth.dart
+41 −16 packages/at_auth/lib/src/at_auth_impl.dart
+3 −0 packages/at_auth/lib/src/auth/at_auth_request.dart
+1 −0 packages/at_auth/lib/src/keys/at_auth_keys.dart
+6 −6 packages/at_auth/pubspec.yaml
+6 −0 packages/at_chops/CHANGELOG.md
+8 −0 packages/at_chops/lib/src/algorithm/default_hashing_algo.dart
+21 −7 packages/at_chops/lib/src/at_chops_base.dart
+3 −5 packages/at_chops/lib/src/at_keys_crypto.dart
+4 −2 packages/at_chops/lib/src/factory/at_hashing_algo_factory.dart
+5 −5 packages/at_chops/pubspec.yaml
+14 −0 packages/at_chops/test/hashing_algo_test.dart
+8 −0 packages/at_cli_commons/CHANGELOG.md
+33 −26 packages/at_cli_commons/lib/src/cli_base.dart
+7 −7 packages/at_cli_commons/pubspec.yaml
+14 −1 packages/at_commons/CHANGELOG.md
+3 −1 packages/at_commons/lib/src/at_constants.dart
+6 −12 packages/at_commons/lib/src/keystore/at_key.dart
+16 −11 packages/at_commons/lib/src/keystore/public_key_hash.dart
+0 −1 packages/at_commons/lib/src/validators/at_key_validation_impl.dart
+2 −0 packages/at_commons/lib/src/verb/enroll_params.dart
+6 −0 packages/at_commons/lib/src/verb/enroll_params.g.dart
+10 −0 packages/at_commons/lib/src/verb/enroll_verb_builder.dart
+12 −0 packages/at_commons/lib/src/verb/sync_verb_builder.dart
+3 −1 packages/at_commons/lib/src/verb/syntax.dart
+7 −0 packages/at_commons/lib/src/verb/update_verb_builder.dart
+7 −7 packages/at_commons/pubspec.yaml
+0 −1 packages/at_commons/test/at_key_regex_test.dart
+20 −12 packages/at_commons/test/at_key_test.dart
+0 −1 packages/at_commons/test/at_key_type_test.dart
+4 −2 packages/at_commons/test/enroll_params_test.dart
+4 −2 packages/at_commons/test/enroll_verb_builder_test.dart
+18 −31 packages/at_commons/test/public_key_hash_test.dart
+13 −0 packages/at_commons/test/sync_verb_builder_test.dart
+4 −0 packages/at_onboarding_cli/CHANGELOG.md
+9 −6 packages/at_onboarding_cli/example/apkam_examples/enroll_app_listen.dart
+3 −3 packages/at_onboarding_cli/lib/at_onboarding_cli.dart
+86 −40 packages/at_onboarding_cli/lib/src/cli/auth_cli.dart
+14 −1 packages/at_onboarding_cli/lib/src/cli/auth_cli_args.dart
+14 −34 packages/at_onboarding_cli/lib/src/onboard/at_onboarding_service_impl.dart
+7 −13 packages/at_onboarding_cli/lib/src/util/at_onboarding_exceptions.dart
+3 −0 packages/at_onboarding_cli/lib/src/util/at_onboarding_preference.dart
+82 −0 packages/at_onboarding_cli/lib/src/util/create_at_client_cli.dart
+61 −0 packages/at_onboarding_cli/lib/src/util/home_directory_util.dart
+9 −8 packages/at_onboarding_cli/pubspec.yaml
+11 −2 packages/at_onboarding_cli/test/at_onboarding_cli_test.dart
+5 −0 tests/at_onboarding_cli_functional_tests/pubspec.yaml
+11 −0 tests/at_onboarding_cli_functional_tests/test/at_onboarding_cli_test.dart
+98 −29 tests/at_onboarding_cli_functional_tests/test/enrollment_cli_commands_test.dart
2 changes: 1 addition & 1 deletion modules/dart/at_server
Submodule at_server updated 41 files
+53 −31 .github/workflows/at_server.yaml
+2 −2 .github/workflows/at_server_dev_deploy.yaml
+2 −2 .github/workflows/at_server_prod_deploy.yaml
+4 −4 .github/workflows/codeql.yml
+2 −2 .github/workflows/dependency-review.yml
+1 −1 .github/workflows/melos_bootstrap.yaml
+5 −5 .github/workflows/promote_canary.yaml
+1 −1 .github/workflows/scorecards.yml
+1 −1 .github/workflows/ve_base.yaml
+2 −2 .github/workflows/vip_rebuild.yaml
+1 −0 README.md
+10 −0 packages/at_persistence_secondary_server/CHANGELOG.md
+2 −1 packages/at_persistence_secondary_server/lib/src/config/at_config.dart
+6 −2 packages/at_persistence_secondary_server/lib/src/keystore/hive_manager.dart
+3 −2 packages/at_persistence_secondary_server/lib/src/log/commitlog/at_commit_log.dart
+14 −48 packages/at_persistence_secondary_server/lib/src/log/commitlog/commit_log_keystore.dart
+14 −0 packages/at_persistence_secondary_server/lib/src/log/commitlog/sync/fetch_all_keys_strategy.dart
+24 −0 packages/at_persistence_secondary_server/lib/src/log/commitlog/sync/skip_deletes_strategy.dart
+66 −0 packages/at_persistence_secondary_server/lib/src/log/commitlog/sync/sync_keys_fetch_strategy.dart
+41 −5 packages/at_persistence_secondary_server/lib/src/model/at_meta_data.dart
+23 −20 packages/at_persistence_secondary_server/lib/src/model/at_metadata_builder.dart
+5 −2 packages/at_persistence_secondary_server/lib/src/notification/at_notification_keystore.dart
+2 −1 packages/at_persistence_secondary_server/lib/src/utils/type_adapter_util.dart
+4 −4 packages/at_persistence_secondary_server/pubspec.yaml
+2 −1 packages/at_persistence_secondary_server/test/at_config_test.dart
+86 −0 packages/at_persistence_secondary_server/test/commit_log_test.dart
+4 −1 packages/at_persistence_secondary_server/test/hive_keystore_impl_test.dart
+116 −0 packages/at_persistence_secondary_server/test/skip_delete_strategy_test.dart
+1 −1 packages/at_root_server/Dockerfile
+11 −2 packages/at_secondary_server/CHANGELOG.md
+6 −3 packages/at_secondary_server/lib/src/verb/handler/enroll_verb_handler.dart
+5 −2 packages/at_secondary_server/lib/src/verb/handler/sync_progressive_verb_handler.dart
+7 −7 packages/at_secondary_server/pubspec.yaml
+729 −0 packages/at_secondary_server/test/sync_unit_test.dart
+4 −3 tests/at_end2end_test/pubspec.yaml
+5 −5 tests/at_functional_test/pubspec.yaml
+21 −30 tests/at_functional_test/test/enroll_verb_test.dart
+1 −1 tools/build_secondary/Dockerfile
+1 −1 tools/build_secondary/Dockerfile.observe
+1 −1 tools/build_virtual_environment/ve/Dockerfile.vip
+2 −2 tools/build_virtual_environment/ve_base/Dockerfile
2 changes: 1 addition & 1 deletion modules/dart/at_tools

0 comments on commit 9ae3089

Please sign in to comment.