Sync/upstream 2026 03 14#107
Conversation
…claw#45518) * test: preserve wrapper behavior for targeted runs * test: tighten targeted wrapper routing
…r injection References GHSA-g2f6-pwvx-r275.
…claw#45622) * Gateway: treat scope-limited probe RPC as degraded * Docs: clarify gateway probe degraded scope output * test: fix CI type regressions in gateway and outbound suites * Tests: fix Node24 diffs theme loading and Windows assertions * Tests: fix extension typing after main rebase * Tests: fix Windows CI regressions after rebase * Tests: normalize executable path assertions on Windows * Tests: remove duplicate gateway daemon result alias * Tests: stabilize Windows approval path assertions * Tests: fix Discord rate-limit startup fixture typing * Tests: use Windows-friendly relative exec fixtures --------- Co-authored-by: Mainframe <mainframe@MainfraacStudio.localdomain>
* fix(gateway): bound unanswered client requests * fix(gateway): skip default timeout for expectFinal requests * fix(gateway): preserve gateway call timeouts * fix(gateway): localize request timeout policy * fix(gateway): clamp explicit request timeouts * fix(gateway): clamp default request timeout
* 'main' of https://github.com/openclaw/openclaw: (640 commits) ci: add npm token fallback for npm releases build: prepare 2026.3.13-beta.1 docs: reorder unreleased changelog by impact fix: keep windows onboarding logs ascii-safe test: harden parallels all-os smoke harness chore: bump pi to 0.58.0 fix(browser): prefer user profile over chrome relay build: upload Android native debug symbols Gateway: treat scope-limited probe RPC as degraded reachability (openclaw#45622) build: shrink Android app release bundle fix: keep exec summaries inline docs: fix changelog formatting test(discord): align rate limit error mock with carbon build(android): strip unused dnsjava resolver service before R8 build(android): add auto-bump signed aab release script fix(browser): add browser session selection fix(models): apply Gemini model-id normalization to google-vertex provider (openclaw#42435) fix(feishu): add early event-level dedup to prevent duplicate replies (openclaw#43762) fix: unblock discord startup on deploy rate limits fix: default Android TLS setup codes to port 443 ... # Conflicts: # src/browser/pw-tools-core.interactions.batch.test.ts # src/browser/pw-tools-core.interactions.ts
* origin/main: fix(gateway): bound unanswered client requests (openclaw#45689)
This reverts commit aaeb348.
…on (openclaw#16511) feat(cron): support persistent session targets for cron jobs (openclaw#9765) Add support for `sessionTarget: "current"` and `session:<id>` so cron jobs can bind to the creating session or a persistent named session instead of only `main` or ephemeral `isolated` sessions. Also: - preserve custom session targets across reloads and restarts - update gateway validation and normalization for the new target forms - add cron coverage for current/custom session targets and fallback behavior - fix merged CI regressions in Discord and diffs tests - add a changelog entry for the new cron session behavior Co-authored-by: kkhomej33-netizen <kkhomej33-netizen@users.noreply.github.com> Co-authored-by: ImLukeF <92253590+ImLukeF@users.noreply.github.com>
Summary of ChangesHello, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request synchronizes the repository with upstream changes, focusing on upgrading dependencies, enhancing security, improving the Android app, and adding detailed testing playbooks. It includes updates to Dockerfiles, GitHub Actions, documentation, and various bug fixes across different platforms and channels. Highlights
🧠 New Feature in Public Preview: You can now enable Memory to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console. Changelog
Ignored Files
Activity
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for GitHub and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
There was a problem hiding this comment.
Code Review
This pull request appears to be a large synchronization and dependency update, touching many parts of the codebase including CI workflows, Android and iOS apps, macOS app, and various extensions. Key changes include upgrading to Node.js 24, significant refactoring of authentication and push notification logic for mobile apps, UI improvements, and security hardenings in command execution and webhook handling. My review found a couple of critical issues in the GitHub Actions workflow files that will cause CI to fail.
|
|
||
| - name: Setup Node.js | ||
| uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0 | ||
| uses: actions/setup-node@v6 |
| uses: actions/cache@v4 | ||
| # PRs that request sticky disks still need a safe cache restore path. | ||
| if: inputs.use-actions-cache == 'true' && (inputs.use-sticky-disk != 'true' || github.event_name == 'pull_request') && inputs.use-restore-keys != 'true' | ||
| uses: actions/cache@v5 |
| if: inputs.use-actions-cache == 'true' && inputs.use-sticky-disk != 'true' && inputs.use-restore-keys == 'true' | ||
| uses: actions/cache@v4 | ||
| if: inputs.use-actions-cache == 'true' && (inputs.use-sticky-disk != 'true' || github.event_name == 'pull_request') && inputs.use-restore-keys == 'true' | ||
| uses: actions/cache@v5 |
No description provided.