Skip to content

Commit 2cbec08

Browse files
committed
chore: update go dependencies
Updated multiple Go module dependencies to their latest versions: 1. Updated github.com/linuxdeepin/dde-api from 20260131071225 to 20260310032929 2. Updated github.com/linuxdeepin/go-dbus-factory from 20260131085755 to 20260227070938 3. Updated github.com/linuxdeepin/go-lib from 20251106065207 to 20260205120541 4. Added golang.org/x/sys v0.26.0 as direct dependency 5. Removed golang.org/x/sys from indirect dependencies section These updates bring bug fixes, performance improvements, and new features from the upstream dependencies. The golang.org/x/sys module was promoted from indirect to direct dependency to ensure proper version management. Influence: 1. Verify that the application builds successfully with new dependency versions 2. Test core functionality to ensure no regression from dependency updates 3. Check for any new features or behavior changes introduced by updated modules 4. Validate system compatibility with the updated sys package chore: 更新 Go 依赖项 更新了多个 Go 模块依赖到最新版本: 1. 将 github.com/linuxdeepin/dde-api 从 20260131071225 更新到 20260310032929 2. 将 github.com/linuxdeepin/go-dbus-factory 从 20260131085755 更新 到 20260227070938 3. 将 github.com/linuxdeepin/go-lib 从 20251106065207 更新到 20260205120541 4. 添加 golang.org/x/sys v0.26.0 作为直接依赖项 5. 从间接依赖项部分移除了 golang.org/x/sys 这些更新带来了上游依赖项的 bug 修复、性能改进和新功能。golang.org/x/sys 模块从间接依赖提升为直接依赖,以确保正确的版本管理。 Influence: 1. 验证应用程序是否能够使用新的依赖版本成功构建 2. 测试核心功能以确保依赖更新没有引入回归问题 3. 检查更新模块是否引入了新功能或行为变化 4. 验证系统与更新后的 sys 包的兼容性
1 parent beeaf1f commit 2cbec08

2 files changed

Lines changed: 10 additions & 10 deletions

File tree

go.mod

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,15 @@ require (
88
github.com/fsnotify/fsnotify v1.8.0
99
github.com/godbus/dbus/v5 v5.1.0
1010
github.com/jouyouyun/hardware v0.1.8
11-
github.com/linuxdeepin/dde-api v0.0.0-20260131071225-4d0ebae885ed
12-
github.com/linuxdeepin/go-dbus-factory v0.0.0-20260131085755-2c6a2abea07f
11+
github.com/linuxdeepin/dde-api v0.0.0-20260310032929-7f0ab8f52e1b
12+
github.com/linuxdeepin/go-dbus-factory v0.0.0-20260227070938-bcb8d12841ab
1313
github.com/linuxdeepin/go-gir v0.0.0-20251204113853-1873b5530f50
14-
github.com/linuxdeepin/go-lib v0.0.0-20251106065207-1fdf101312e6
14+
github.com/linuxdeepin/go-lib v0.0.0-20260205120541-a1f572ce1442
1515
github.com/linuxdeepin/go-x11-client v0.0.0-20240415051504-c8e43d028ff9
1616
github.com/mdlayher/netlink v1.7.2
1717
github.com/rickb777/date v1.21.1
1818
github.com/stretchr/testify v1.9.0
19+
golang.org/x/sys v0.26.0
1920
golang.org/x/xerrors v0.0.0-20240716161551-93cc26a95ae9
2021
google.golang.org/protobuf v1.34.2
2122
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c
@@ -39,7 +40,6 @@ require (
3940
golang.org/x/image v0.10.0 // indirect
4041
golang.org/x/net v0.27.0 // indirect
4142
golang.org/x/sync v0.10.0 // indirect
42-
golang.org/x/sys v0.26.0 // indirect
4343
golang.org/x/text v0.21.0 // indirect
4444
gopkg.in/yaml.v3 v3.0.1 // indirect
4545
)

go.sum

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,15 @@ github.com/kr/pretty v0.2.1/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfn
2828
github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ=
2929
github.com/kr/text v0.1.0 h1:45sCR5RtlFHMR4UwH9sdQ5TC8v0qDQCHnXt+kaKSTVE=
3030
github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI=
31-
github.com/linuxdeepin/dde-api v0.0.0-20260131071225-4d0ebae885ed h1:pADOeaOzkvY97E9F9vOl3uOquy+1ieDrIVdLr1Cj9LE=
32-
github.com/linuxdeepin/dde-api v0.0.0-20260131071225-4d0ebae885ed/go.mod h1:WKOHlSzRQRF9pnFpLVuZxNEWRdGfpeP7CBIUwHvkoyk=
33-
github.com/linuxdeepin/go-dbus-factory v0.0.0-20260131085755-2c6a2abea07f h1:6fROaxORy4CFjHaU0BeYcN5CbjeYwn5exGflT6IyVJI=
34-
github.com/linuxdeepin/go-dbus-factory v0.0.0-20260131085755-2c6a2abea07f/go.mod h1:dfpixHkqiijg3P7w5QArkMyC7+vlHcutN5R6zHIn8is=
31+
github.com/linuxdeepin/dde-api v0.0.0-20260310032929-7f0ab8f52e1b h1:MkrAGimPW17PAShqzLQ8JURvyZ+UvzbnZuM+XCijAtQ=
32+
github.com/linuxdeepin/dde-api v0.0.0-20260310032929-7f0ab8f52e1b/go.mod h1:etFJ3bz0/U3wklOLPLn7A4DM5VBQJ4yHhHaWpCEzzV8=
33+
github.com/linuxdeepin/go-dbus-factory v0.0.0-20260227070938-bcb8d12841ab h1:tzTj6afLE47xQ8oRdeH/xBwgc1Jfo6loOCZyAVO21/4=
34+
github.com/linuxdeepin/go-dbus-factory v0.0.0-20260227070938-bcb8d12841ab/go.mod h1:dfpixHkqiijg3P7w5QArkMyC7+vlHcutN5R6zHIn8is=
3535
github.com/linuxdeepin/go-gir v0.0.0-20250812023606-b28aaee32ac9/go.mod h1:a0tox5vepTQu5iO6rdKc4diGT+fkyXZlRROM8ULEvaI=
3636
github.com/linuxdeepin/go-gir v0.0.0-20251204113853-1873b5530f50 h1:CLVQdE+YgfvHD2EadN/0hPIhCbbu5cdGyDu4brW9pyw=
3737
github.com/linuxdeepin/go-gir v0.0.0-20251204113853-1873b5530f50/go.mod h1:a0tox5vepTQu5iO6rdKc4diGT+fkyXZlRROM8ULEvaI=
38-
github.com/linuxdeepin/go-lib v0.0.0-20251106065207-1fdf101312e6 h1:ntYWER7pULMpTQykPiENOGh7pxSPCspV3Ql8mZA+IBc=
39-
github.com/linuxdeepin/go-lib v0.0.0-20251106065207-1fdf101312e6/go.mod h1:2d0hhhqpr9UP9DRgnzU4y6nwdgUtM0qV94Wf0bzAI2g=
38+
github.com/linuxdeepin/go-lib v0.0.0-20260205120541-a1f572ce1442 h1:CuqOgdz4wxhvUIjuOnQX36Wq0zSnMQd94YqoiwH681E=
39+
github.com/linuxdeepin/go-lib v0.0.0-20260205120541-a1f572ce1442/go.mod h1:2d0hhhqpr9UP9DRgnzU4y6nwdgUtM0qV94Wf0bzAI2g=
4040
github.com/linuxdeepin/go-x11-client v0.0.0-20220830090948-78fe92b727bb/go.mod h1:KwpmRZ47A/0a2l9V0V6aTlkuNaqy5j1fOqMFJONuIMY=
4141
github.com/linuxdeepin/go-x11-client v0.0.0-20240415051504-c8e43d028ff9 h1:GbhdC1TMi+V5yMRlfl16Y2gT/nhJn2OJalw6sVbFRHQ=
4242
github.com/linuxdeepin/go-x11-client v0.0.0-20240415051504-c8e43d028ff9/go.mod h1:KwpmRZ47A/0a2l9V0V6aTlkuNaqy5j1fOqMFJONuIMY=

0 commit comments

Comments
 (0)