v0.5.96: sim oauth provider, slack ephemeral message tool and blockkit support#3281
Merged
waleedlatif1 merged 5 commits intomainfrom Feb 21, 2026
Merged
v0.5.96: sim oauth provider, slack ephemeral message tool and blockkit support#3281waleedlatif1 merged 5 commits intomainfrom
waleedlatif1 merged 5 commits intomainfrom
Conversation
* feat(auth): add OAuth 2.1 provider for MCP connector support * fix(auth): rename redirect_u_r_ls column to redirect_urls * chore(db): regenerate oauth migration with correct column naming * fix(auth): reorder CORS headers and handle missing redirectURI * fix(auth): redirect to login without stale callbackUrl on account switch * chore: run lint * fix(auth): override credentials header on OAuth CORS entries * fix(auth): preserve OAuth flow when switching accounts on consent page * fix(auth): add session and user-id checks to authorize-params endpoint * fix(auth): add expiry check, credentials, MCP CORS, and scope in WWW-Authenticate * feat(mcp): add tool annotations for Connectors Directory compliance
…ocs (#3278) * feat(slack): added ephemeral message send tool, updated ci, updated docs * added block kit support * upgrade turborepo * added wandConfig for slack block kit * fix generation type
…oads (#3280) * fix(trigger): handle Slack reaction_added/reaction_removed event payloads * fix(trigger): use oldest param for conversations.history consistency * fix oldest param * fix(trigger): use reactions.get API to fetch message text for thread replies
|
The latest updates on your projects. Learn more about Vercel for GitHub. |
Contributor
Greptile SummaryThis release (v0.5.96) adds OAuth 2.1 provider support for MCP connectors, Slack ephemeral messages with Block Kit support, and fixes for log data staleness and Slack reaction event handling. OAuth 2.1 Provider Implementation
Slack Enhancements
Bug Fixes
Infrastructure Updates
Confidence Score: 5/5
Important Files Changed
Sequence DiagramsequenceDiagram
participant Client as MCP Client
participant Auth as OAuth 2.1 Provider
participant DB as Database
participant Consent as Consent Page
participant User as End User
Client->>Auth: GET /.well-known/oauth-authorization-server
Auth-->>Client: OAuth metadata (authorize, token, jwks endpoints)
Client->>Auth: POST /oauth2/authorize (PKCE challenge)
Auth->>DB: Store verification code + params
Auth->>Consent: Redirect to consent page
User->>Consent: View scope permissions
Consent->>Auth: POST /oauth2/consent (accept/deny)
Auth->>DB: Create oauth_consent record
Auth->>DB: Create oauth_access_token + refresh_token
Auth-->>Client: Redirect with authorization code
Client->>Auth: POST /oauth2/token (code + PKCE verifier)
Auth->>DB: Validate code, exchange for tokens
Auth-->>Client: access_token + refresh_token
Client->>Auth: API request with Bearer token
Auth->>DB: Validate access_token (not expired)
Auth-->>Client: Authorized response
Last reviewed commit: 765a481 |
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 1 potential issue.
Bugbot Autofix is OFF. To automatically fix reported issues with Cloud Agents, enable Autofix in the Cursor dashboard.
…raction (#3282) * fix(copilot): handle negated operation conditions in block config extraction * fix(copilot): simplify condition evaluation to single matchesOperation call
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.
Uh oh!
There was an error while loading. Please reload this page.