Skip to content

Commit 1878d46

Browse files
Pantanijulienrbrt
andauthored
fix: replace broken bytedance/sonic version in the go.mod (#4793)
* fix: replace broken sonic version * add changelog * run mod tidy for integration * Update go.mod.plush * Update changelog.md * Update go.mod.plush --------- Co-authored-by: julienrbrt <[email protected]>
1 parent 6f451ee commit 1878d46

File tree

3 files changed

+10
-1
lines changed

3 files changed

+10
-1
lines changed

.github/workflows/test-integration.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
strategy:
3232
fail-fast: false
3333
matrix:
34-
os: [ubuntu-latest, macos-latest]
34+
os: [ ubuntu-latest, macos-latest ]
3535
test-path: ${{fromJson(needs.pre-test.outputs.matrix)}}
3636
steps:
3737
- uses: actions/checkout@v4
@@ -40,6 +40,9 @@ jobs:
4040
with:
4141
go-version: "stable"
4242

43+
- name: Run Go Mod Tidy
44+
run: go mod tidy
45+
4346
- name: Run Integration Tests
4447
env:
4548
GOTOOLCHAIN: local+path

changelog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## Unreleased
44

5+
### Fixes
6+
7+
- [#4793](https://github.com/ignite/cli/pull/4793) Use latest `bytedance/sonic` version to support Go 1.25.
8+
59
## [`v29.3.0`](https://github.com/ignite/cli/releases/tag/v29.3.0)
610

711
### Features

ignite/templates/app/files/go.mod.plush

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ replace (
99
github.com/syndtr/goleveldb => github.com/syndtr/goleveldb v1.0.1-0.20210819022825-2ae1ddf74ef7
1010
// replace broken vanity url
1111
nhooyr.io/websocket => github.com/coder/websocket v1.8.7
12+
// force latest sonic version for Go 1.25 support
13+
github.com/bytedance/sonic => github.com/bytedance/sonic v1.14.0
1214
)
1315

1416
require (

0 commit comments

Comments
 (0)