-
Notifications
You must be signed in to change notification settings - Fork 8
Add dual-path EdgeZero entry point with feature flag (PR 14) #628
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
Open
prk-Jr
wants to merge
15
commits into
feature/edgezero-pr13-integration-provider-type-migration
Choose a base branch
from
feature/edgezero-pr14-entry-point-dual-path
base: feature/edgezero-pr13-integration-provider-type-migration
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.
Open
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
f5a984a
Add dual-path entry point with feature-flag dispatch and legacy_main …
prk-Jr a81b1d6
Fix clippy doc_markdown, fmt, and add warn log on flag-read failure
prk-Jr 7d2f059
Add FinalizeResponseMiddleware and AuthMiddleware with golden header-…
prk-Jr 4410813
Simplify EdgeError::internal call and fix comment accuracy in middleware
prk-Jr 68ddcba
Revert anyhow direct dependency; use std::io::Error::other for EdgeEr…
prk-Jr 8c9cb56
Implement TrustedServerApp with all routes via Hooks trait
prk-Jr 5e30906
Fix app.rs spec gaps: remove double-Arc, move tsjs into catch-all, fi…
prk-Jr e1bce63
Clean up app.rs: remove gratuitous allocation, Box::pin inconsistency…
prk-Jr 181d866
Reference legacy-cleanup issue in legacy_main comment
prk-Jr e8e0d9f
Fix lint issues
prk-Jr d3c2798
Pin edgezero dependencies to branch=main and bump toml to 1.1
prk-Jr a300109
Switch EdgeZero dispatch to dispatch_with_config, add routing log lines
prk-Jr 86a44b6
Register explicit GET / and POST / routes to cover matchit root path gap
prk-Jr a48d956
Add trusted_server_config config store for local dev
prk-Jr dacc403
Address PR review findings in app.rs
prk-Jr 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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.
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.
🔧 wrench — Workspace deps pinned to
branch = "main"All four
edgezero-*deps moved fromrev = "170b74b"tobranch = "main".Cargo.lockrecords the resolved commit, but anyone runningcargo updatewill silently pull whatever is on upstreammainthat minute — CI/local builds become non-deterministic and create a supply-chain path from an external repo into prod.Fix: pin to the specific upstream commit that introduced
dispatch_with_configinstead of a moving branch.If upstream is unreleased, mirror the required change into a fork tag.