Skip to content

Commit aed3311

Browse files
committed
feature: move includes out of experiment
Signed-off-by: Valery Piashchynski <[email protected]>
1 parent c2e131c commit aed3311

File tree

1 file changed

+5
-9
lines changed

1 file changed

+5
-9
lines changed

plugin.go

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -96,14 +96,10 @@ func (p *Plugin) Init() error {
9696
return errors.E(op, errors.Errorf("version should be a string: `version: \"3\"`, actual type is: %T", ver))
9797
}
9898

99-
// hide includes under the experimental flag
100-
// 'include' is an experimental feature
101-
// should be here because we need to perform all overrides before
102-
if p.Experimental() {
103-
err = p.handleInclude(ver.(string))
104-
if err != nil {
105-
return errors.E(op, err)
106-
}
99+
// handle includes syntax
100+
err = p.handleInclude(ver.(string))
101+
if err != nil {
102+
return errors.E(op, err)
107103
}
108104

109105
// RR includes the config feature by default starting from v2.7.
@@ -114,7 +110,7 @@ func (p *Plugin) Init() error {
114110

115111
// configuration v2.7
116112
if ver.(string) == prevConfigVersion {
117-
println("please, update your configuration version from version: '2.7' to version: '3', see changes here: https://roadrunner.dev/docs/plugins-config/current#v30-configuration")
113+
println("please, update your configuration version from version: '2.7' to version: '3', see changes here: https://docs.roadrunner.dev/docs/general/compatibility#v3.0-configuration-and-rr-v2023.x.x")
118114
}
119115

120116
return nil

0 commit comments

Comments
 (0)