Implement password strength enforcement and breach detection - #4
Open
daveedAJ wants to merge 65 commits into
Open
Implement password strength enforcement and breach detection#4daveedAJ wants to merge 65 commits into
daveedAJ wants to merge 65 commits into
Conversation
- Introduce PlatformCircuitBreakerService backed by Redis (AppModule cache) with isActive/activate/deactivate operations - Add PlatformCircuitBreakerGuard that returns 503 during maintenance - Protect all deposit/withdrawal endpoints in vaults, farm-vaults, and insurance-fund controllers - Add admin endpoints POST /admin/platform/circuit-breaker/open and close - Include audit trail logging through CustomLoggerService with admin identity - Add comprehensive unit tests and integration tests
…, and history chart
Implement password strength enforcement and breach detection
The EventParserV1 and EventParserV2 implementations imported ./event-parser.interface from their versioned subdirectories, but the interface file lives one level up. This caused TypeScript module resolution failures and prevented the factory-based schema versioning system from working for existing parsers. Fixes: src/soroban/parsers/v1/event-parser-v1.ts src/soroban/parsers/v2/event-parser-v2.ts
…uit-breaker # Conflicts: # harvest-finance/backend/src/database/entities/user.entity.ts # harvest-finance/backend/src/vaults/vaults.controller.ts # harvest-finance/backend/src/vaults/vaults.integration.spec.ts # harvest-finance/backend/src/vaults/vaults.service.spec.ts
…-clean Implement vault strategy performance scoring algorithm
…rewithsearchableFAQ Implement searchable FAQ feature with article validation and tests
…r-reputation-ui feat: add operator reputation score UI with circular gauge, breakdown…
issues resolved
…issue-633-vault-repository feat: Add Repository pattern for Vault entity (HarvestFinance#633)
…t-schema-versioning fix(soroban): correct import paths in event parsers v1/v2
…-clean-v3 Add email verification flow for new user registrations
… daily APY snapshot history
…-compounding-clean Implement APY calculation with compounding frequency support
…ip-alt-text fix: add accessible labels to seasonal tip icons
… PostCard, and vault components including CreateVaultModal, DepositModal, FarmVaultCard, and MobileVaultCard.
…dated environment variables, and integrated MSW for API mocking. Introduced new loading and error components across various pages, and implemented bundle budget checks with reporting.
…itecture-modernization Feat/frontend architecture modernization
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What: Enforce a minimum password strength policy and check new passwords against the HaveIBeenPwned database to reject known-breached passwords.
Closes #976