Blog

Brad Wood

February 14, 2020

Spread the word


Share your thoughts

We are pleased to announce that the first Release Candidate of CommandBox 5.0.0-RC.1 is now available.  This release started as 4.9.0-alpha, but we decided to go ahead with a major version bump due to some major updates in our Java libraries.  Most notably, Lucee 5.3 and Java 11 support.  Please help us test this RC.  If no issues are found, we'll turn it into a final release.  

Docs and Downloads

The Gitbook docs have been updated with the 5.0.0 changes on this branch:

https://commandbox.ortusbooks.com/v/5.0.0/

You can download the new binary from our artifacts server here:

https://downloads.ortussolutions.com/#/ortussolutions/commandbox/5.0.0-RC.1/

And the latest Command API docs are available here:

https://s3.amazonaws.com/apidocs.ortussolutions.com/commandbox/5.0.0-RC.1/index.html

Upgrade Compatibility

Even though this is a new major version, it should be very backwards compatible.  CommandBox proper has no known backwards compatibility issues we're aware of, but note we've bumped libraries like Lucee Server, Undertow, and Java support, so you may notice differences due to these 3rd party lib updates.  For example, one breaking change in Lucee 5.3 (which now powers your default server) is how page output buffer is handled. 

You should be able to simply replace your box.exe binary and run it to get the same in-place upgrade you're used to.  If you run into issue, you can try removing the "engine" folder in your ~/.CommandBox folder and try again.  If you need to downgrade for any reason, replace the box binary with the old version, remove the "engine", "cfml", and "lib" folders in your CommandBox home and they will get re-created on the next run.

You may also notice the box binary is larger now.  From 44 Megs up to 77 Megs.  This is a regrettable byproduct of us turning off the Pack200 process we used to run against the Lucee jar.  Lucee seems to have some bugs that causes it to re-download a bunch of OSGI bundles when we compress them and we can't figure it out, or get support on the matter, so for now we're just not compressing as much stuff.  This was a huge blocker for anyone needing to run CommandBox on a PC with no external internet access as Lucee provides no mechanism to turn off it's auto-download behavior.

And finally, if you have installed any custom OSGI bundles into your CLI, they will be wiped by the upgrade process now.  We didn't want to have to to do this, but Lucee has bugs that cause errors when doing in-place upgrades with the old OSGI bundles left in place and we couldn't get it fixed, so this was the only way to ensure in-place upgrades would "just work" without errors.  We are leaving the Lucee engine folder, so any settings you may have put into your CLI should remain in place.

What's New?

There's a lot of new stuff in CommandBox 5.0.0.  Here's an overview.   One of the biggest new "features" is you can finally use CommandBox on Java 11+.  This was not possible in CommandBox 4.x due to the version of Lucee not fully supporting newer versions of Java.  Now that Lucee has been bumped to 5.3 (see below) you are free to leave java 8 behind for the CLI.  Note if you're using CommandBox to start up older versions of Adobe CF or Lucee/Railo, you may still need to use java 8 specifically for your servers.  

New Libraries

Let's start with the library updates.  For the most part, all the jars we bundle are a "black box" but in reality, every update is usually for new features, fixes, or security patches.  Here's an overview of the new libs:

  • WireBox 5.6.2
  • JLine 3.13.0
  • Runwar 4.0.3 (major bump from 3.x)
  • JBoss Undertow 2.0.27.Final (major bump from 1.x)
  • JGit 5.5.1.201910021850-r
  • Lucee 5.3.4.77("major" bump from 5.2)
  • AdoptOpenJDK jdk-11.0.6+10 (In the JRE-included download) (major bump from 8.x)

New Features/Enhancements

You can now use user/pass or personal access token authentication when cloning Git repos over HTTPS.  This has been tested with Github and Gitlab and is an alternative to SSH keys.  Please check the docs, as Github and Gitlab both expect slightly different inputs.

install git+https://username:password@domain.com/user/repo.git
or
install git+https://AccessTokenHere@github.com/user/repo.git

There is a new Lex installation endpoint to help you acquire Lucee Extensions your app needs via the "install" command or a dependency in your box.json file.  If the current directory has a Lucee server in it, CommandBox will install the extension file directly into your server's "deploy" folder (server context)

install lex:https://downloads.ortussolutions.com/ortussolutions/lucee-extensions/ortus-redis-cache/1.4.0/ortus-redis-cache-1.4.0.lex

The auto-install feature into your server will work on any Lex package, even one coming from ForgeBox:

// ForgeBox slug for Ortus Redis Extension
install 5C558CC6-1E67-4776-96A60F9726D580F1

Tuning your server is easier now.  You can configure your Undertow worker-threads setting with first-class server.json property

server set web.maxRequests=200

Which gives you this in your server.json

{
  "web" : {
    "maxRequests" : 200
  }
}

We've also unlocked a method for you to set ANY valid Undertow option or XNIO option.  So if Undertow supports it, you can configure it!

server set runwar.undertowOptions.ALLOW_UNESCAPED_CHARACTERS_IN_URL=true

server set runwar.XNIOOptions.WORKER_NAME=myWorker

We've added a new experimental feature that lets you create a batch file, powershell script, or bash shell script that directly starts a server with the exact settings that you get from "server start".  This is for you to create super-optimzed startups in Docker or Service that bypass the CLI steps and "lock in" the settings.  No server.json or CFConfig, or dotenv code will be processed, but you will have a fast streamlined start that is the same every time.  Couple this with our new "dryRun" flag on server start that will unpack the CF engine, but not actually start the server, and you can create your customs start script like so:

server start --console --dryRun startScript=bash startScriptFile=startmebaby.sh

// Later directly from bash...

./startmebaby.sh

The Globber helper can now take more than one globbing pattern.  This also means every built-in command in CommandBox that takes a globbing pattern, can now take a comma delimited list of patterns.  We've also added an exclude list of globbing patterns to the dir command as well.

dir **.cfc,*.cfm
dir paths=modules excludePath=**.md --recurse
dir paths=samples sort="directory asc, name desc"

We've got a couple new handy commands to help you from the command line, "unique" (modeled after the Bash "uniq" command)

cat names.txt | unique
cat names.txt | unique --count

And "sort" (modeled after the Bash "sort" command)

cat names.txt | sort
cat names.txt | sort type=text
cat names.txt | sort type=numeric
cat names.txt | sort direction=desc

The "grep" command has received a "count" parameter if you just want the count of lines that match the regex (or no regex will count all lines)

dir **.cfc | grep --count

dir | grep .*\.md --count

 

The tray icon for your servers now has a new option under the "Open" menu that will open up the file system folder where the server home lives.  This is nice for finding your CF Engine's log files.

Release Notes

There are a lot of bug fixes and even more enhancements I didn't cover above.  You can read the full release notes here:

 

Sub-task

  • [COMMANDBOX-1069] - Remove extra stashes on url paths when servlet init params starts with WEB-INF

Bug

  • [COMMANDBOX-643] - Tray Icon not displaying on Debian8
  • [COMMANDBOX-711] - X Window Errors
  • [COMMANDBOX-812] - "Coldbox create resource" uses wrong paths on Windows
  • [COMMANDBOX-941] - urlrewrite.xml has file size of 0 on docker restart but not regular start
  • [COMMANDBOX-946] - CommandBox instances crashing because of TrayIcon rendering
  • [COMMANDBOX-975] - CommandBox always reads STDIN even when in non-interactive mode
  • [COMMANDBOX-980] - Using zsh exits out of CommandBox when running a binary command
  • [COMMANDBOX-992] - Shebang scripts no longer work without .cfm extension
  • [COMMANDBOX-1005] - If custom rewrite file is already in correct destination, runwar overwrites it as 0 bytes
  • [COMMANDBOX-1008] - worker-threads setting no longer has any affect
  • [COMMANDBOX-1009] - Tray icon not showing in Ubuntu 18.04
  • [COMMANDBOX-1013] - Undertow error output when starting server
  • [COMMANDBOX-1014] - [RUNWAR] Tray menu placeholders such as ${Setting: runwar.port not found} are not replaced in sub menus
  • [COMMANDBOX-1022] - regex string index out of bounds exception
  • [COMMANDBOX-1035] - URL Rewrites fire incorrect on URL containing a space
  • [COMMANDBOX-1036] - Browser doesn't open when server start
  • [COMMANDBOX-1037] - Host updater does not work
  • [COMMANDBOX-1038] - Server doesn't stop on Windows
  • [COMMANDBOX-1043] - ConcurrentModificationException with undertow?
  • [COMMANDBOX-1048] - Restrict /dumprunwarrequest to be used only on Unit Testing
  • [COMMANDBOX-1050] - Remove trailing slash from Adobe updates path
  • [COMMANDBOX-1054] - Default command parameters don't work on commands in namespaces
  • [COMMANDBOX-1061] - Command DSL has unexpected behavior with equals sign in positional tokens
  • [COMMANDBOX-1062] - Tab complete for negated flags isn't complete
  • [COMMANDBOX-1063] - box fails to open in vSphere Web Client console due to outdated JLine jar
  • [COMMANDBOX-1068] - Server start doesn't correctly expand relative Java Home directory
  • [COMMANDBOX-1070] - slashes into the servlet init param paths
  • [COMMANDBOX-1071] - Tray icon doesn't disappear on Windows when server stops from CLI
  • [COMMANDBOX-1076] - Install dependency from box.json with env var placeholder gets overwritten with actual value
  • [COMMANDBOX-1077] - coldbox create resource command ignores specsDirectory argument
  • [COMMANDBOX-1079] - foreach cannot be interrupted with Ctrl-C
  • [COMMANDBOX-1081] - validate non-numeric exit codes from the "exit" command
  • [COMMANDBOX-1089] - Task Runner's loadModule() fails on path with period
  • [COMMANDBOX-1090] - Tasks don't treat return 1 and setExitCode( 1 ) the same
  • [COMMANDBOX-1091] - When a task sets a failing exit code, no output is sent to console
  • [COMMANDBOX-1092] - Commands that set a failing exit code don't raise proper exception
  • [COMMANDBOX-1098] - foreach, grep, and sed only break on chr(10)

New Feature

Task

Improvement

 

Recent Entries

Ortus March Newsletter

Ortus March Newsletter

Welcome to Ortus Solutions’ monthly roundup, where we're thrilled to showcase cutting-edge advancements, product updates, and exciting events! Join us as we delve into the latest innovations shaping the future of technology.

Maria Jose Herrera
Maria Jose Herrera
April 01, 2024
Into the Box 2024 Last Early Bird Days!

Into the Box 2024 Last Early Bird Days!

Time is ticking, with less than 60 days remaining until the excitement of Into the Box 2024 unfolds! Don't let this golden opportunity slip away; our exclusive Early Bird Pricing is here for a limited time only, available until March 31st. Why wait? Secure your seat now and take advantage of this steal!

Maria Jose Herrera
Maria Jose Herrera
March 20, 2024
Ortus February Newsletter 2024

Ortus February Newsletter 2024

Welcome to Ortus Solutions’ monthly roundup, where we're thrilled to showcase cutting-edge advancements, product updates, and exciting events! Join us as we delve into the latest innovations shaping the future of technology.

Maria Jose Herrera
Maria Jose Herrera
March 06, 2024