is Fusion reactor 10.0.0 supported by commandbox-f...
# box-products
d
is Fusion reactor 10.0.0 supported by commandbox-fusionreactor yet? Can’t seem to find it, current one in forge box seems to be for 9.2.2
b
@dougcain The FR folks control what versions they push to ForgeBox for the module to use https://www.forgebox.io/view/FusionReactor#versions
Looks like 10 is up there, but I haven't personally tested it yet
I would assume they did if they published it ¯\_(ツ)_/¯
I haven't looked into 10.0 yet to know what breaking changes there are
The reason you still get 9.0 by default is because of this default setting https://github.com/bdw429s/commandbox-fusionreactor/blob/master/ModuleConfig.cfc#L6
I "pin" the module to a given major version so breaking changes don't sneak in
You can test 10 by simply specifying it as your installID in your server.json
Copy code
server set fusionreactor.installID=fusionreactor@10
Give it a go and let me know how it works 🙂
d
Thanks @bdw429s I did try the installID but used @10.0.0 will see how @10 goes
b
@dougcain There's no difference.
10
is a semantic version range which de-sugars to
10.x.x
which is the equivalent
>=10.0.0 && < 11.0.0
So either way, seeing as how there is only one version called
10.0.0
,
fusionreactor@10
is going to install the same the same thing as
fusionreactor@10.0.0
If it didn't work, use
--verbose
when starting the server and report back the console output.
d
all fine and working - I had installID set in a couple of places, last one won which was still 9
b
Ok, let me know if you have any issues with FR 10
If it seems all backwards compat and stuff, then I can update the module to default to it
d
@bdw429s 10.0.0 looks fine to me - deployed into my application and everything I use is working as expected
👍 1