-
Notifications
You must be signed in to change notification settings - Fork 4.9k
chore(release): publish 4.1.6 #18268
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| { | ||
| "name": "@tarojs/binding-linux-x64-musl", | ||
| "version": "4.1.5-alpha.2", | ||
| "version": "4.1.6", | ||
| "os": [ | ||
| "linux" | ||
| ], | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| { | ||
| "name": "@tarojs/components-react", | ||
| "version": "4.1.5-alpha.2", | ||
| "version": "4.1.6", | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 💡 Verification agent 🧩 Analysis chain同步版本到 4.1.6:LGTM 仅元数据版本号更新,未触及 exports/依赖/脚本。 为确保整仓版本一致性,建议在仓库根目录运行下述脚本检查是否还有未升级到 4.1.6 的 package.json: 🏁 Script executed: #!/bin/bash
set -euo pipefail
# 1) 查找所有非 4.1.6 的 package.json
rg -nP --glob '!**/node_modules/**' -g '*/package.json' '"version"\s*:\s*"(?!4\.1\.6\b)' || echo "OK: 所有 package.json 均为 4.1.6"
# 2) 兜底检查是否仍残留 4.1.5-alpha 前缀
rg -nP --glob '!**/node_modules/**' -g '*/package.json' '4\.1\.5-alpha' || echo "OK: 未发现 4.1.5-alpha 残留"Length of output: 290 将 tests/package.json 中 version 字段从 4.0.0-alpha.4 更新为 4.1.6 🤖 Prompt for AI Agents |
||
| "description": "", | ||
| "main:h5": "dist/index.js", | ||
| "main": "dist/index.js", | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| { | ||
| "name": "@tarojs/plugin-platform-h5", | ||
| "version": "4.1.5-alpha.2", | ||
| "version": "4.1.6", | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 💡 Verification agent 🧩 Analysis chainH5 平台包版本号更新 —— 通过;构建产物校验建议 该包包含 运行以下脚本快速自检整仓版本一致性与变更记录: 🏁 Script executed: #!/bin/bash
set -euo pipefail
echo "1) 查找遗留的 4.1.5-alpha.2(应为0条):"
rg -nP '"version"\s*:\s*"4\.1\.5-alpha\.2"' -S || true
echo -e "\n2) 统计 4.1.6 版本字段数量:"
rg -nP '"version"\s*:\s*"4\.1\.6"' -S | wc -l
echo -e "\n3) 校验二进制平台包是否全部提升(展示名称与版本):"
rg -nP '"name"\s*:\s*"@tarojs/binding-[^"]+"' npm -n
rg -nP '"version"\s*:\s*"4\.1\.6"' npm -n
echo -e "\n4) 检查 CHANGELOG 是否含 4.1.6:"
rg -n '4\.1\.6' CHANGELOG.md || trueLength of output: 1229 确认 H5 平台包版本更新 —— 通过;构建产物校验建议
🤖 Prompt for AI Agents |
||
| "description": "Web 端平台插件", | ||
| "author": "O2Team", | ||
| "license": "MIT", | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
💡 Verification agent
🧩 Analysis chain
原生绑定(musl)包版本号同步——LGTM
仅版本位移;os/cpu/libc/main/files 字段保持合理。建议在发布前确认二进制存在并会被打包。
快速存在性检查脚本:
🏁 Script executed:
Length of output: 270
添加并验证 musl 平台预编译二进制文件存在
运行脚本检测到缺少
npm/linux-x64-musl/taro.linux-x64-musl.node,请在发布流程中生成并将该文件包含至包内,确保安装时能够正确加载本地绑定。🤖 Prompt for AI Agents