-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: secureli modular refactor (#501)
secureli-XXX This is a larger refactor of secureli's structure and includes the merging of a handful of smaller tickets in an effort to silo secureli's feature set. Additionally it includes a few enhancements, most notably smarter language detection on merge, as well as a new PII scan feature. ## Changes * Refactor codebase into a more modular structure * Custom PII Scan ## Testing * Existing tests pass, code coverage requirements are maintained, e2e tests passing ## Clean Code Checklist - [x] Meets acceptance criteria for issue - [x] New logic is covered with automated tests - [x] Appropriate exception handling added - [x] Thoughtful logging included - [x] Documentation is updated - [ ] Follow-up work is documented in TODOs - [x] TODOs have a ticket associated with them - [x] No commented-out code included <!-- Github-flavored markdown reference: https://docs.github.com/en/get-started/writing-on-github --> --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: Isaac Heist <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: github-actions <[email protected]> Co-authored-by: Kathleen Hogan <[email protected]> Co-authored-by: Kathleen Hogan <[email protected]> Co-authored-by: kevin-orlando <[email protected]> Co-authored-by: Jordan Heffernan <[email protected]>
- Loading branch information
1 parent
bab857d
commit f1e9036
Showing
123 changed files
with
1,967 additions
and
1,107 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ build-backend = "poetry.core.masonry.api" | |
name = "secureli" | ||
version = "0.32.0" | ||
description = "Secure Project Manager" | ||
authors = ["Caleb Tonn <[email protected]>"] | ||
authors = ["Caleb Tonn <[email protected]>"] # disable-pii-scan | ||
license = "Apache-2.0" | ||
readme = "README.md" | ||
|
||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,7 +13,7 @@ else | |
echo "Pulling down the most recent published secureli release v${secureliVersion}" | ||
gh release download v$secureliVersion | ||
export secureliSha256=$(sha256sum ./secureli-${secureliVersion}.tar.gz | awk '{print $1}') | ||
git config --global user.email "[email protected]" | ||
git config --global user.email "[email protected]" # disable-pii-scan | ||
git config --global user.name "Secureli Automation" | ||
python ./scripts/get-secureli-dependencies.py | ||
cd homebrew-secureli | ||
|
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.