Skip to content

fix: update xcode info plist#30

Merged
sirily11 merged 1 commit into
mainfrom
fix-release
May 20, 2026
Merged

fix: update xcode info plist#30
sirily11 merged 1 commit into
mainfrom
fix-release

Conversation

@sirily11
Copy link
Copy Markdown
Contributor

No description provided.

Copilot AI review requested due to automatic review settings May 20, 2026 13:11
@vercel
Copy link
Copy Markdown

vercel Bot commented May 20, 2026

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
rxcode Ready Ready Preview, Comment May 20, 2026 1:12pm

Request Review

@autopilot-project-manager autopilot-project-manager Bot added the bug Something isn't working label May 20, 2026
@sirily11 sirily11 enabled auto-merge (squash) May 20, 2026 13:12
@sirily11 sirily11 merged commit 2a44854 into main May 20, 2026
8 checks passed
@sirily11 sirily11 deleted the fix-release branch May 20, 2026 13:14
Copy link
Copy Markdown

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

This PR updates iOS app metadata for App Store export compliance and adjusts the local permission hook server to accept multiple concurrently-valid hook tokens (to avoid invalidating in-flight agents). It also changes the GitHub OAuth client ID used for device-flow authentication.

Changes:

  • Add ITSAppUsesNonExemptEncryption to RxCodeMobile/Info.plist.
  • Update PermissionServer to mint and accept multiple valid run tokens (with bounded retention) and remove run-token refresh calls from AppState.
  • Update GitHubService OAuth client ID constant.

Reviewed changes

Copilot reviewed 4 out of 4 changed files in this pull request and generated 2 comments.

File Description
RxCodeMobile/Info.plist Adds App Store encryption compliance flag.
RxCode/Services/PermissionServer.swift Reworks hook token handling to support multiple concurrent CLI launches.
RxCode/Services/GitHubService.swift Updates the GitHub OAuth client ID used for device flow and settings links.
RxCode/App/AppState.swift Removes run-token refresh calls; relies on hook settings file generation to mint tokens.
Comments suppressed due to low confidence (1)

RxCode/Services/PermissionServer.swift:327

  • mintRunToken evicts the oldest token once maxValidRunTokens is exceeded. Any still-running CLI subprocess that continues using an evicted token will start getting 403s on subsequent tool calls. Consider tracking token last-seen time (or associating tokens with session IDs) and evicting only tokens that are definitely stale, or making the cap configurable.
        let token = UUID().uuidString
        validRunTokens.append(token)
        if validRunTokens.count > Self.maxValidRunTokens {
            validRunTokens.removeFirst(validRunTokens.count - Self.maxValidRunTokens)
        }

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Comment on lines 6 to 10
actor GitHubService {

static let oauthClientId = "Ov23liaj3hlJoMGsNZTW"
static let oauthClientId = "Ov23li0plkoiQCmLm5O5"
private let clientId = oauthClientId
private let logger = Logger(subsystem: "com.claudework", category: "GitHubService")
Comment on lines +28 to +32
/// Hook tokens currently accepted on the `/hook/pre-tool-use` path. Each CLI
/// subprocess gets its own (see `mintRunToken`), so spawning a new agent never
/// invalidates the hook URL of an agent already running. Ordered oldest-first;
/// bounded by `maxValidRunTokens`.
private var validRunTokens: [String] = []
@sirily11
Copy link
Copy Markdown
Contributor Author

🎉 This PR is included in version 1.8.0 🎉

The release is available on GitHub release

Your semantic-release bot 📦🚀

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

bug Something isn't working released

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants