Skip to content

Commit 54582c5

Browse files
intel352claude
andcommitted
chore: update examples for modular v1.13.0 consolidated paths
Update all 17 example go.mod files to reference v1.13.0, which absorbed the 7 lightweight sub-modules (logmasker, httpserver, httpclient, eventlogger, configwatcher, chimux, scheduler) into core. All examples compile successfully with the new version. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 504626d commit 54582c5

17 files changed

Lines changed: 17 additions & 17 deletions

File tree

examples/advanced-logging/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.26
55
toolchain go1.26.0
66

77
require (
8-
github.com/GoCodeAlone/modular v1.12.3
8+
github.com/GoCodeAlone/modular v1.13.0
99
github.com/GoCodeAlone/modular/modules/reverseproxy v1.1.0
1010
)
1111

examples/base-config-example/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module github.com/GoCodeAlone/modular/examples/base-config-example
22

33
go 1.26
44

5-
require github.com/GoCodeAlone/modular v1.11.9
5+
require github.com/GoCodeAlone/modular v1.13.0
66

77
require (
88
github.com/BurntSushi/toml v1.6.0 // indirect

examples/basic-app/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.26
55
replace github.com/GoCodeAlone/modular => ../../
66

77
require (
8-
github.com/GoCodeAlone/modular v1.11.9
8+
github.com/GoCodeAlone/modular v1.13.0
99
github.com/go-chi/chi/v5 v5.2.2
1010
)
1111

examples/feature-flag-proxy/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.26
55
toolchain go1.26.0
66

77
require (
8-
github.com/GoCodeAlone/modular v1.12.3
8+
github.com/GoCodeAlone/modular v1.13.0
99
github.com/GoCodeAlone/modular/modules/reverseproxy v1.1.2
1010
)
1111

examples/health-aware-reverse-proxy/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.26
55
toolchain go1.26.0
66

77
require (
8-
github.com/GoCodeAlone/modular v1.12.3
8+
github.com/GoCodeAlone/modular v1.13.0
99
github.com/GoCodeAlone/modular/modules/reverseproxy v0.0.0-00010101000000-000000000000
1010
)
1111

examples/http-client/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.26
55
toolchain go1.26.0
66

77
require (
8-
github.com/GoCodeAlone/modular v1.12.3
8+
github.com/GoCodeAlone/modular v1.13.0
99
github.com/GoCodeAlone/modular/modules/reverseproxy v1.1.0
1010
github.com/stretchr/testify v1.11.1
1111
)

examples/instance-aware-db/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ replace github.com/GoCodeAlone/modular => ../..
77
replace github.com/GoCodeAlone/modular/modules/database/v2 => ../../modules/database
88

99
require (
10-
github.com/GoCodeAlone/modular v1.12.3
10+
github.com/GoCodeAlone/modular v1.13.0
1111
github.com/GoCodeAlone/modular/modules/database/v2 v2.2.0
1212
github.com/mattn/go-sqlite3 v1.14.32
1313
)

examples/logger-reconfiguration/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ go 1.26
44

55
replace github.com/GoCodeAlone/modular => ../../
66

7-
require github.com/GoCodeAlone/modular v1.11.9-00010101000000-000000000000
7+
require github.com/GoCodeAlone/modular v1.13.0
88

99
require (
1010
github.com/BurntSushi/toml v1.6.0 // indirect

examples/logmasker-example/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module logmasker-example
22

33
go 1.26
44

5-
require github.com/GoCodeAlone/modular v1.12.3
5+
require github.com/GoCodeAlone/modular v1.13.0
66

77
require (
88
github.com/BurntSushi/toml v1.6.0 // indirect

examples/multi-engine-eventbus/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.26
55
toolchain go1.26.0
66

77
require (
8-
github.com/GoCodeAlone/modular v1.12.3
8+
github.com/GoCodeAlone/modular v1.13.0
99
github.com/GoCodeAlone/modular/modules/eventbus v1.7.0
1010
)
1111

0 commit comments

Comments
 (0)