Skip to content

Commit 3cb7cc0

Browse files
authored
chore(deps): bump spx to 2.0.4 (#3312)
* chore(deps): bump spx to 2.0.4 * chore(deps): bump xgolsw
1 parent 21479d9 commit 3cb7cc0

9 files changed

Lines changed: 21 additions & 21 deletions

File tree

.github/agents/spx-upgrader.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ You are a release specialist dedicated to upgrading spx across goplus/builder sa
1212
- Refresh Go modules in `tools/ai/`, `tools/spxls/`, and `tools/ispx/` via `go get github.com/goplus/spx/v2@v<version>` followed by `go mod tidy` in each directory
1313
- Execute `bash spx-gui/install-spx.sh` to download the matching runtime assets and remove any temporary archives
1414
- Execute `bash build-wasm.sh` in `spx-gui/` to build Wasm components
15-
- Run `npm ci`, `npm run lint`, `npm run test -- --run` in `spx-gui/`, plus `go test ./...` inside `tools/ai/`, `tools/spxls/`, and `tools/ispx/`
15+
- Run `npm ci`, `npm run lint`, `npm run test -- --run` in `spx-gui/`, plus `go test ./...` inside `tools/ai/`, `tools/spxls/`, and `tools/ispx/` if there are packages to test
1616
- Verify `git status` is clean beyond the expected files, then create a commit titled `chore(deps): bump spx to <version>` and draft a PR with release notes and validation logs
1717
- If any command fails, stop immediately and report the exact output instead of continuing
1818

spx-gui/.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ VITE_USERCONTENT_UPLOAD_BASE_URL=""
4242
VITE_DISABLE_AIGC="false"
4343

4444
# Version of spx, keep in sync with the version in `install-spx.sh`.
45-
VITE_SPX_VERSION="2.0.3"
45+
VITE_SPX_VERSION="2.0.4"
4646

4747
# Whether to show the license information (including copyright) in the footer.
4848
VITE_SHOW_LICENSE="false"

spx-gui/install-spx.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ set -e
44
cd "$(dirname "$0")"
55

66
# Keep this version in sync with `VITE_SPX_VERSION` in `.env`.
7-
SPX_VERSION="2.0.3"
7+
SPX_VERSION="2.0.4"
88

99
SPX_NAME="spx_${SPX_VERSION}"
1010
SPX_RELEASE_URL="https://github.com/goplus/spx/releases/download/v${SPX_VERSION}/spx_web.zip"

tools/ai/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module github.com/goplus/builder/tools/ai
22

33
go 1.25.0
44

5-
require github.com/goplus/spx/v2 v2.0.3
5+
require github.com/goplus/spx/v2 v2.0.4
66

77
require (
88
github.com/goplus/spbase v0.1.0 // indirect

tools/ai/go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
github.com/goplus/spbase v0.1.0 h1:JNZ0D/65DerYyv9/9IfrXHZZbd0WNK0jHiVvgCtZhwY=
22
github.com/goplus/spbase v0.1.0/go.mod h1:brnD3OJnHtipqob2IsJ3/QzGBf+eOnqXNnHGKpv1irQ=
3-
github.com/goplus/spx/v2 v2.0.3 h1:Qb3n2/B04lsbOgLSZEXGYhOiPyGgWrRFhSU1+srSCdg=
4-
github.com/goplus/spx/v2 v2.0.3/go.mod h1:mF2kCvUNw97ku2PYHMEwbCENv24b5EwnlXOLiVMRbHM=
3+
github.com/goplus/spx/v2 v2.0.4 h1:4hyCM5XH3DMRjFeoTxCndrqcFZTeCWHkEicyp7wYTSs=
4+
github.com/goplus/spx/v2 v2.0.4/go.mod h1:mF2kCvUNw97ku2PYHMEwbCENv24b5EwnlXOLiVMRbHM=
55
github.com/petermattis/goid v0.0.0-20250721140440-ea1c0173183e h1:D0bJD+4O3G4izvrQUmzCL80zazlN7EwJ0PPDhpJWC/I=
66
github.com/petermattis/goid v0.0.0-20250721140440-ea1c0173183e/go.mod h1:pxMtw7cyUw6B2bRH0ZBANSPg+AoSud1I1iyJHI69jH4=
77
golang.org/x/image v0.23.0 h1:HseQ7c2OpPKTPVzNjG5fwJsOTCiiwS4QdsYi5XU6H68=

tools/ispx/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ require (
88
github.com/goplus/builder/tools/ai v0.0.0
99
github.com/goplus/ixgo v1.1.0
1010
github.com/goplus/mod v0.20.2
11-
github.com/goplus/spx/v2 v2.0.3
11+
github.com/goplus/spx/v2 v2.0.4
1212
)
1313

1414
require (

tools/ispx/go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ github.com/goplus/reflectx v1.7.0 h1:52l0Si+vDc6CvT7Y+h47h2QUs5HQp6qxPlmvLsMzo38
1515
github.com/goplus/reflectx v1.7.0/go.mod h1:EXX8KSPTmnb2W1PfyVkDC0Qwet0lYX2h2/S06Vhwrhw=
1616
github.com/goplus/spbase v0.1.0 h1:JNZ0D/65DerYyv9/9IfrXHZZbd0WNK0jHiVvgCtZhwY=
1717
github.com/goplus/spbase v0.1.0/go.mod h1:brnD3OJnHtipqob2IsJ3/QzGBf+eOnqXNnHGKpv1irQ=
18-
github.com/goplus/spx/v2 v2.0.3 h1:Qb3n2/B04lsbOgLSZEXGYhOiPyGgWrRFhSU1+srSCdg=
19-
github.com/goplus/spx/v2 v2.0.3/go.mod h1:mF2kCvUNw97ku2PYHMEwbCENv24b5EwnlXOLiVMRbHM=
18+
github.com/goplus/spx/v2 v2.0.4 h1:4hyCM5XH3DMRjFeoTxCndrqcFZTeCWHkEicyp7wYTSs=
19+
github.com/goplus/spx/v2 v2.0.4/go.mod h1:mF2kCvUNw97ku2PYHMEwbCENv24b5EwnlXOLiVMRbHM=
2020
github.com/goplus/xgo v1.7.2-0.20260414235301-df19f4a1b7c2 h1:kXIGYlJUTii+7nv1XTKR0ctMZSeTcgYMoQuEexZPr7A=
2121
github.com/goplus/xgo v1.7.2-0.20260414235301-df19f4a1b7c2/go.mod h1:fX3+ZaYEzBE6qkgFcJx83D6DbUo/vMO8Y1Allydy2ws=
2222
github.com/petermattis/goid v0.0.0-20250721140440-ea1c0173183e h1:D0bJD+4O3G4izvrQUmzCL80zazlN7EwJ0PPDhpJWC/I=

tools/spxls/go.mod

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ tool github.com/goplus/xgolsw/cmd/pkgdatagen
66

77
require (
88
github.com/goplus/builder/tools/ai v0.0.0
9-
github.com/goplus/xgolsw v0.21.1-0.20260601022856-658bbeba671b
9+
github.com/goplus/xgolsw v0.21.1-0.20260625100638-5f3cd6593261
1010
)
1111

1212
require (
13-
github.com/goplus/gogen v1.23.0-pre.3.0.20260414234848-6641c10c9d6f // indirect
13+
github.com/goplus/gogen v1.23.0-pre.5 // indirect
1414
github.com/goplus/mod v0.20.2 // indirect
1515
github.com/goplus/spbase v0.1.0 // indirect
16-
github.com/goplus/spx/v2 v2.0.3 // indirect
17-
github.com/goplus/xgo v1.7.2-0.20260414235301-df19f4a1b7c2 // indirect
16+
github.com/goplus/spx/v2 v2.0.4 // indirect
17+
github.com/goplus/xgo v1.7.2 // indirect
1818
github.com/petermattis/goid v0.0.0-20250721140440-ea1c0173183e // indirect
1919
github.com/qiniu/x v1.17.0 // indirect
2020
golang.org/x/image v0.23.0 // indirect

tools/spxls/go.sum

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,18 @@ github.com/goccy/go-yaml v1.19.2 h1:PmFC1S6h8ljIz6gMRBopkjP1TVT7xuwrButHID66PoM=
55
github.com/goccy/go-yaml v1.19.2/go.mod h1:XBurs7gK8ATbW4ZPGKgcbrY1Br56PdM69F7LkFRi1kA=
66
github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI=
77
github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY=
8-
github.com/goplus/gogen v1.23.0-pre.3.0.20260414234848-6641c10c9d6f h1:qb3VcmljqvrIgEVbs83cbZkckszvtHl3OnO/ums8Zoc=
9-
github.com/goplus/gogen v1.23.0-pre.3.0.20260414234848-6641c10c9d6f/go.mod h1:Y7ulYW3wonQ3d9er00b0uGFEV/IUZa6okWJZh892ACQ=
8+
github.com/goplus/gogen v1.23.0-pre.5 h1:0JD3RkuIWbgFPC5kNmNXZeWdXXujTqKxPQZ9uKz6Gsc=
9+
github.com/goplus/gogen v1.23.0-pre.5/go.mod h1:Y7ulYW3wonQ3d9er00b0uGFEV/IUZa6okWJZh892ACQ=
1010
github.com/goplus/mod v0.20.2 h1:YX72E6AhhRLvlkVnI9cBK6PZvUwtge2hwROh7w9N6Yk=
1111
github.com/goplus/mod v0.20.2/go.mod h1:lWW62tH7L3Vm42Lr6wlUMYHvsm5w3TkEpE2ulKTgmU8=
1212
github.com/goplus/spbase v0.1.0 h1:JNZ0D/65DerYyv9/9IfrXHZZbd0WNK0jHiVvgCtZhwY=
1313
github.com/goplus/spbase v0.1.0/go.mod h1:brnD3OJnHtipqob2IsJ3/QzGBf+eOnqXNnHGKpv1irQ=
14-
github.com/goplus/spx/v2 v2.0.3 h1:Qb3n2/B04lsbOgLSZEXGYhOiPyGgWrRFhSU1+srSCdg=
15-
github.com/goplus/spx/v2 v2.0.3/go.mod h1:mF2kCvUNw97ku2PYHMEwbCENv24b5EwnlXOLiVMRbHM=
16-
github.com/goplus/xgo v1.7.2-0.20260414235301-df19f4a1b7c2 h1:kXIGYlJUTii+7nv1XTKR0ctMZSeTcgYMoQuEexZPr7A=
17-
github.com/goplus/xgo v1.7.2-0.20260414235301-df19f4a1b7c2/go.mod h1:fX3+ZaYEzBE6qkgFcJx83D6DbUo/vMO8Y1Allydy2ws=
18-
github.com/goplus/xgolsw v0.21.1-0.20260601022856-658bbeba671b h1:Liz70j43NCN7C/SwEdE95Yh6I4CDYiO/rGbPUAMH8G4=
19-
github.com/goplus/xgolsw v0.21.1-0.20260601022856-658bbeba671b/go.mod h1:p68CHqfgmLAc3muvEOohs6IiWvX5AlUdP0rvF2PpqBs=
14+
github.com/goplus/spx/v2 v2.0.4 h1:4hyCM5XH3DMRjFeoTxCndrqcFZTeCWHkEicyp7wYTSs=
15+
github.com/goplus/spx/v2 v2.0.4/go.mod h1:mF2kCvUNw97ku2PYHMEwbCENv24b5EwnlXOLiVMRbHM=
16+
github.com/goplus/xgo v1.7.2 h1:leAinbUiz+oUukKfdYIXyYZlxm/gh6TkEg5/dzvevQk=
17+
github.com/goplus/xgo v1.7.2/go.mod h1:QR2TaWixDRCYQfv0F7xpZbUPvuclcgg0oUFmcq5nNn0=
18+
github.com/goplus/xgolsw v0.21.1-0.20260625100638-5f3cd6593261 h1:gMGiaFfFaqNinxgayugqptAGXV8rn5meJ+MfA6cRnoc=
19+
github.com/goplus/xgolsw v0.21.1-0.20260625100638-5f3cd6593261/go.mod h1:ANgB42yf5ul2VDNMxp6v2yxbcwyNu1wV9IWekAgGSG4=
2020
github.com/petermattis/goid v0.0.0-20250721140440-ea1c0173183e h1:D0bJD+4O3G4izvrQUmzCL80zazlN7EwJ0PPDhpJWC/I=
2121
github.com/petermattis/goid v0.0.0-20250721140440-ea1c0173183e/go.mod h1:pxMtw7cyUw6B2bRH0ZBANSPg+AoSud1I1iyJHI69jH4=
2222
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=

0 commit comments

Comments
 (0)