-
Notifications
You must be signed in to change notification settings - Fork 1
Production-readiness refactor: drop MinIO, make Crate IDs more robust, add async validation and offline cache #186
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
Merged
Merged
Changes from all commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
29beec3
refactor: load and validate Settings on startup and add StorageBackend
alexhambley a3aa2e7
feat(storage): add boto3 S3Backend
alexhambley 837c74d
feat(crates): add crate-ID validation
alexhambley 70ed8e7
feat(crates): deterministic crate resolver
alexhambley ef93bdd
feat(validation): add `ValidationOutcome` type and runner
alexhambley db4482c
refactor(validation): make metadata validation synchronous
alexhambley fa1ef14
refactor(storage): migrate store-backed flow to S3Backend; drop minio-py
alexhambley 56913c1
feat(webhooks): retry delivery, with backoff and surface failures
alexhambley ee62364
feat(logging): structured JSON logs, request IDs, secret redaction
alexhambley f900ae2
feat: add /healthz and /readyz endpoints
alexhambley 721dcb8
chore(tooling): adopt pyproject, ruff, and update CI
alexhambley 882fe57
chore(dev): use RustFS as the local S3-compatible dev store
alexhambley 4526f56
test: mirror app/ layout and rebuild the integration test suite
alexhambley 3289a9a
docs: rewrite README for the new architecture with diagrams
alexhambley 0b340ce
chore(docker): consolidate Dockerfiles and tidy up compose
alexhambley 7a0d28a
feat(validation): bump rocrate-validator to 0.10.0; rename entrypoint…
alexhambley 19d5b4a
refactor(api): merge POST route groups under one Swagger tag
alexhambley df8524d
chore(docker): restructure conditional RUN blocks as heredocs
alexhambley 6260cca
ci: pin integration-test and lint dependencies
alexhambley 6f4c389
ci: pin GitHub Actions to commit SHAs
alexhambley 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,30 @@ | ||
| name: Lint | ||
|
|
||
| on: | ||
| pull_request: | ||
| branches: [ develop ] | ||
|
|
||
| jobs: | ||
| ruff: | ||
| runs-on: ubuntu-latest | ||
|
|
||
| steps: | ||
| - name: Checkout code | ||
| uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1 | ||
|
|
||
| - name: Set up Python | ||
| uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0 | ||
| with: | ||
| python-version: '3.11' | ||
|
|
||
| - name: Install ruff | ||
| run: | | ||
| python -m pip install --upgrade pip | ||
| # Keep in sync with requirements-dev.txt | ||
| pip install ruff==0.15.17 | ||
|
|
||
| - name: Lint | ||
| run: ruff check . | ||
|
|
||
| - name: Format check | ||
| run: ruff format --check . |
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 was deleted.
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.