-
Notifications
You must be signed in to change notification settings - Fork 197
feat: continuous verification job #219
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
Draft
aphansal123
wants to merge
29
commits into
remote-verification
Choose a base branch
from
feature/continuous-verification-job
base: remote-verification
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from all commits
Commits
Show all changes
29 commits
Select commit
Hold shift + click to select a range
72a1967
feat: implement 128-bit cryptographically secure token generation for…
aphansal123 ffbed48
Merge branch 'main' into feature/domain-verification-token-generation
aphansal123 f375640
Fix package references and eliminate duplicate string literals in tok…
aphansal123 f7a85fa
Update internal/verification/README.md
aphansal123 36579a1
Update internal/verification/token_test.go
aphansal123 382925e
Capitalize MaxDNSRecordLength variable name for consistency
aphansal123 a9afe32
Add comprehensive DNS TXT record RFC compliance validation tests
aphansal123 bc4d621
Fix gci linter error by removing trailing whitespace
aphansal123 71b6a9f
Initial implementation of the metadata collection
thomas-sickert c3cd6f7
Merge branch 'remote-verification' of https://github.com/modelcontext…
thomas-sickert 32af3a1
feat: dns record verification (#208)
aphansal123 3daef44
Update to account for the verification without server case
thomas-sickert 5daa853
Implement continuous verification background job system with DNS/HTTP…
aphansal123 b48197b
Fix database interface methods and refine background verification job…
aphansal123 57fe1ad
Merge branch 'remote-verification' into thomas-sickert/token-storage
aphansal123 8b04448
Merge branch 'thomas-sickert/token-storage' into feature/continuous-v…
aphansal123 92b8406
Fix linting errors and modernize verification code with TLS 1.2+, pro…
aphansal123 40865cd
Fix build errors and duplicate struct definitions, add missing databa…
aphansal123 60999f9
fix: update cron schedule comment and remove unused variable assignment
aphansal123 b981b95
feat: integrate background verification job into main application
aphansal123 1981eb8
fix: resolve golangci-lint import formatting issues
aphansal123 a348eef
Add production-ready background verification job with configurable en…
aphansal123 39efcf9
Merge branch 'remote-verification' into feature/continuous-verificati…
aphansal123 426428b
update temporary network error to clarify that it is non-retryable
aphansal123 680e739
Fix negative timeout bug in background verification job
aphansal123 b479a75
Upgrade env package from v10 to v11 and fix golangci-lint errors
aphansal123 75312ec
Merge branch 'remote-verification' into feature/continuous-verificati…
aphansal123 af1627e
Fix notification logic to alert on all threshold exceedances and upda…
aphansal123 6d0d5d6
Fix background job to use stored tokens instead of generating new ones
aphansal123 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
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
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
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
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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The import alias has been removed (changed from
env \"github.com/caarlos0/env/v11\"
to just the standard import). This is good practice as the package nameenv
is already clear and the alias was unnecessary.Copilot uses AI. Check for mistakes.