chore: align infrastructure to v1.5.2 (by AI)

This commit is contained in:
AI Engineer 2026-06-11 18:58:50 +08:00
parent 77210602a6
commit 1246865620
2 changed files with 8 additions and 5 deletions

View File

@ -1,5 +1,8 @@
# Changelog: @go/crypto # Changelog: @go/crypto
## v1.5.2 (2026-06-11)
- **版本对齐**: 基础设施全局对齐 v1.5.2。
## v1.5.1 (2026-06-08) ## v1.5.1 (2026-06-08)
- **JS 对齐 & 缩写规范**: 将所有注册到 `jsmod` 的方法名统一为 PascalCase并强制将缩写如 MD5, SHA1, HMAC, RSA, AES, URL全大写。 - **JS 对齐 & 缩写规范**: 将所有注册到 `jsmod` 的方法名统一为 PascalCase并强制将缩写如 MD5, SHA1, HMAC, RSA, AES, URL全大写。
- **源码纠偏**: 修正了 `hash.go` 中错误的缩写命名(`UrlBase64` -> `URLBase64`),并同步更新了 `encoding` v1.5.2 的 API 调用。 - **源码纠偏**: 修正了 `hash.go` 中错误的缩写命名(`UrlBase64` -> `URLBase64`),并同步更新了 `encoding` v1.5.2 的 API 调用。

10
go.mod
View File

@ -3,14 +3,14 @@ module apigo.cc/go/crypto
go 1.25.0 go 1.25.0
require ( require (
apigo.cc/go/cast v1.5.0 apigo.cc/go/cast v1.5.2
apigo.cc/go/encoding v1.5.0 apigo.cc/go/encoding v1.5.3
apigo.cc/go/jsmod v1.5.0 apigo.cc/go/jsmod v1.5.3
apigo.cc/go/safe v1.5.0 apigo.cc/go/safe v1.5.1
golang.org/x/crypto v0.52.0 golang.org/x/crypto v0.52.0
) )
require ( require (
apigo.cc/go/rand v1.5.0 // indirect apigo.cc/go/rand v1.5.2
golang.org/x/sys v0.45.0 // indirect golang.org/x/sys v0.45.0 // indirect
) )