Compare commits

..

No commits in common. "a97cfdb7fc4729dbe9afa040408aa1c6ea30f21f" and "55c3f60d1c6e9db9bd69cc273e38527bd8a58a1e" have entirely different histories.

3 changed files with 22 additions and 19 deletions

View File

@ -368,6 +368,17 @@
"Precision": 0, "Precision": 0,
"WithoutKey": false, "WithoutKey": false,
"Hide": false "Hide": false
},
{
"Index": 8,
"Name": "CallStacks",
"KeyName": "",
"AttachBefore": false,
"Color": "",
"Format": "",
"Precision": 0,
"WithoutKey": false,
"Hide": false
} }
] ]
} }

View File

@ -1,13 +1,5 @@
# Changelog: @go/starter # Changelog: @go/starter
## v1.5.5 (2026-06-21)
- **依赖对齐**:
- 升级依赖 `jsmod``v1.5.3`, `cast``v1.5.3`, `rand``v1.5.3`, `encoding``v1.5.4`, `shell``v1.5.3`, `safe``v1.5.2`, `id``v1.5.4`, `crypto``v1.5.3`, `file``v1.5.5`, `config``v1.5.3`, `log``v1.5.8`
## v1.5.4 (2026-06-11)
- **依赖对齐**:
- 对齐基础设施依赖到 v1.5.x。
## v1.5.3 (2026-06-07) ## v1.5.3 (2026-06-07)
- **重大架构更迭: 引入 Start/Wait 编排模式与生命周期钩子**: - **重大架构更迭: 引入 Start/Wait 编排模式与生命周期钩子**:
- **废弃 `Run()`**: 彻底移除黑盒式的 `Run()` 方法,改为显式的 `Start()` (解析与非阻塞启动) 与 `Wait()` (阻塞与信号处理) 模式。 - **废弃 `Run()`**: 彻底移除黑盒式的 `Run()` 方法,改为显式的 `Start()` (解析与非阻塞启动) 与 `Wait()` (阻塞与信号处理) 模式。

22
go.mod
View File

@ -3,21 +3,21 @@ module apigo.cc/go/starter
go 1.25.0 go 1.25.0
require ( require (
apigo.cc/go/crypto v1.5.3 apigo.cc/go/crypto v1.5.0
apigo.cc/go/id v1.5.4 apigo.cc/go/id v1.5.0
apigo.cc/go/log v1.5.8 apigo.cc/go/log v1.5.5
) )
require apigo.cc/go/jsmod v1.5.3 // indirect require apigo.cc/go/jsmod v1.5.0 // indirect
require ( require (
apigo.cc/go/cast v1.5.3 // indirect apigo.cc/go/cast v1.5.0 // indirect
apigo.cc/go/config v1.5.3 // indirect apigo.cc/go/config v1.5.1 // indirect
apigo.cc/go/encoding v1.5.4 // indirect apigo.cc/go/encoding v1.5.0 // indirect
apigo.cc/go/file v1.5.5 // indirect apigo.cc/go/file v1.5.0 // indirect
apigo.cc/go/rand v1.5.3 // indirect apigo.cc/go/rand v1.5.0 // indirect
apigo.cc/go/safe v1.5.2 // indirect apigo.cc/go/safe v1.5.0 // indirect
apigo.cc/go/shell v1.5.3 // indirect apigo.cc/go/shell v1.5.0 // indirect
golang.org/x/crypto v0.52.0 // indirect golang.org/x/crypto v0.52.0 // indirect
golang.org/x/sys v0.45.0 // indirect golang.org/x/sys v0.45.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect gopkg.in/yaml.v3 v3.0.1 // indirect