Release v0.6.0 - #187
Open
glennbolton wants to merge 14 commits into
Open
Conversation
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
feat: add MCP OAuth PKCE flow
| class PendingAuthorizationStore(Protocol): | ||
| """Persistence seam used by the consent route and OAuth provider.""" | ||
|
|
||
| async def create(self, pending: PendingAuthorization) -> None: ... |
|
|
||
| async def create(self, pending: PendingAuthorization) -> None: ... | ||
|
|
||
| async def get(self, request_id: UUID) -> PendingAuthorization | None: ... |
|
|
||
| async def get(self, request_id: UUID) -> PendingAuthorization | None: ... | ||
|
|
||
| async def consume(self, request_id: UUID) -> PendingAuthorization | None: ... |
| user: UserAccount, | ||
| *, | ||
| context: AuditContext | None = None, | ||
| ) -> str: ... |
| context: AuditContext | None = None, | ||
| ) -> str: ... | ||
|
|
||
| async def get_client(self, client_id: str) -> OAuthClientInformationFull | None: ... |
|
|
||
| async def get_client(self, client_id: str) -> OAuthClientInformationFull | None: ... | ||
|
|
||
| async def register_client(self, client_info: OAuthClientInformationFull) -> None: ... |
Upgrade @tidemark-security/ux to v0.4.0 and replace local toolbar and assignee implementations with package exports. Use the shared assignee and date-range controls in entity filters, including current-user selection coverage.
Bind the Langflow development service to 127.0.0.1:7860 so its UI and API are reachable from the host without exposing them beyond localhost.
|
|
||
| def hash_opaque_token(token: str) -> str: | ||
| """Return the canonical non-reversible digest for opaque credentials.""" | ||
| return hashlib.blake2b(token.encode("utf-8"), digest_size=32).hexdigest() |
| heartbeat_task.cancel() | ||
| try: | ||
| await heartbeat_task | ||
| except asyncio.CancelledError: |
| self, | ||
| client: OAuthClientInformationFull, | ||
| authorization_code: str, | ||
| ) -> AuthorizationCode | None: ... |
| self, | ||
| client: OAuthClientInformationFull, | ||
| authorization_code: AuthorizationCode, | ||
| ) -> OAuthToken: ... |
| self, | ||
| client: OAuthClientInformationFull, | ||
| refresh_token: str, | ||
| ) -> RefreshToken | None: ... |
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.
Release summary
This PR promotes Intercept v0.6.0 to main. It fixes attachment description persistence and protects attachment download metadata during edits, while adding a single-origin nginx development harness for local and tunneled environments.
Highlights
Attachment metadata and downloads
Single-origin development harness
127.0.0.1:8080./storage/while preserving the host information required for signature validation.Upgrade notes
docs/local-nginx-harness.md.Verification