惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

I
InfoQ
G
Google Developers Blog
Engineering at Meta
Engineering at Meta
月光博客
月光博客
博客园 - 聂微东
博客园 - Franky
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
有赞技术团队
有赞技术团队
A
About on SuperTechFans
Microsoft Azure Blog
Microsoft Azure Blog
Blog — PlanetScale
Blog — PlanetScale
U
Unit 42
T
Tailwind CSS Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
云风的 BLOG
云风的 BLOG
S
SegmentFault 最新的问题
F
Fortinet All Blogs
H
Help Net Security
J
Java Code Geeks
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 叶小钗
L
LangChain Blog
Martin Fowler
Martin Fowler
N
Netflix TechBlog - Medium

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
build(ios): attach app review notes PDF · openclaw/opencl...
joshavant · 2026-06-24 · via Recent Commits to openclaw:main

@@ -47,6 +47,10 @@ PUBLIC_METADATA_FILENAMES = [

4747

"subtitle.txt",

4848

"support_url.txt"

4949

].freeze

50+

APP_REVIEW_NOTES_METADATA_FILENAMES = [

51+

"notes.txt",

52+

"review_notes.txt"

53+

].freeze

50545155

def load_env_file(path)

5256

return unless File.exist?(path)

@@ -732,6 +736,37 @@ def release_notes_metadata_path

732736

temp_root

733737

end

734738739+

def app_review_notes_markdown_path

740+

File.join(ios_root, "APP-REVIEW-NOTES.md")

741+

end

742+743+

def app_review_notes_pdf_path

744+

File.join(ios_root, "build", "app-review", "APP-REVIEW-NOTES.pdf")

745+

end

746+747+

def generate_app_review_notes_pdf!

748+

source = app_review_notes_markdown_path

749+

UI.user_error!("Missing App Review notes at #{source}.") unless File.exist?(source)

750+751+

output = app_review_notes_pdf_path

752+

FileUtils.mkdir_p(File.dirname(output))

753+

sh(shell_join(["xcrun", "swift", File.join(repo_root, "scripts", "ios-app-review-notes-pdf.swift"), source, output]))

754+

output

755+

end

756+757+

def assert_no_app_review_notes_field_metadata!(metadata_path)

758+

notes_dir = File.join(metadata_path, "review_information")

759+

APP_REVIEW_NOTES_METADATA_FILENAMES.each do |filename|

760+

path = File.join(notes_dir, filename)

761+

next unless File.exist?(path)

762+763+

UI.user_error!(

764+

"Refusing to upload App Review Notes metadata from #{path}. " \

765+

"Maintain the App Store Connect Notes field manually so the live setup code is not stored in this repo."

766+

)

767+

end

768+

end

769+735770

def public_metadata_path

736771

source = File.join(__dir__, "metadata")

737772

temp_root = Dir.mktmpdir("openclaw-app-store-metadata")

@@ -1014,7 +1049,7 @@ platform :ios do

10141049

ENV.delete("XCODE_XCCONFIG_FILE")

10151050

end

101610511017-

desc "Generate screenshots, update App Store version metadata, then upload an App Store build"

1052+

desc "Generate screenshots, update App Store metadata and review attachment, then upload an App Store build"

10181053

lane :release_upload do

10191054

unless ENV["OPENCLAW_IOS_RELEASE_WRAPPER"] == "1"

10201055

UI.user_error!("Use `pnpm ios:release:upload`; direct Fastlane TestFlight upload is disabled.")

@@ -1044,7 +1079,7 @@ platform :ios do

10441079

ENV.delete("XCODE_XCCONFIG_FILE")

10451080

end

104610811047-

desc "Upload App Store metadata (and optionally screenshots)"

1082+

desc "Upload App Store metadata, App Review PDF attachment, and optionally screenshots"

10481083

lane :metadata do

10491084

install_ready_for_review_edit_state_lookup!

10501085

sync_ios_versioning!

@@ -1064,12 +1099,15 @@ platform :ios do

10641099

validate_required_screenshots!(paths)

10651100

end

106611011102+

assert_no_app_review_notes_field_metadata!(File.join(__dir__, "metadata"))

10671103

metadata_path = public_metadata_path

10681104

skip_metadata = ENV["DELIVER_METADATA"] != "1"

10691105

if release_notes_upload_requested? && skip_metadata

10701106

metadata_path = release_notes_metadata_path

10711107

skip_metadata = false

10721108

end

1109+

assert_no_app_review_notes_field_metadata!(metadata_path) unless skip_metadata

1110+

app_review_attachment_file = skip_metadata ? nil : generate_app_review_notes_pdf!

1073111110741112

deliver_options = {

10751113

api_key: api_key,

@@ -1083,6 +1121,7 @@ platform :ios do

10831121

skip_metadata: skip_metadata,

10841122

skip_binary_upload: true,

10851123

overwrite_screenshots: screenshot_upload_requested?,

1124+

app_review_attachment_file: app_review_attachment_file,

10861125

skip_app_version_update: false,

10871126

submit_for_review: false,

10881127

run_precheck_before_submit: false