What's New in 5.3.0
Was this helpful?
Was this helpful?
Every Config Setting can be overridden by convention by creating environment variables in the shell where you run box
. This is ideal for CI builds where you want to easily set ForgeBox API keys, or tweak settings for your build.
More Info:
Every server setting can be overridden by convention by creating environment variables in the shell where you run box
. This is ideal for CI builds where you want to easily set ports, or tweak settings for your build.
CommandBox now has out-of-the-box support for the HTTP/2 protocol. It is always enabled by default and browsers will use it when you're serving over HTTPS.
We've added a new jq command which behaves roughly like the bash counterpart. You can pipe in JSON, or read the JSON from a file and apply a JSON query against it which can be used to filter, massage, rewrite, map, or filter the JSON into a new JSON object.
We've also added the ability to specify powerful jq filters to the "package show", "server show", and "config show" commands directly. Just prefix your filter with the text "jq:" like so:
For this to work, you must also configure your AJP proxy in your web server to send the same secret!
We've updated the version of WireBox inside the CLI and now have access to the AsyncManager for sweet threading and scheduled task support.
CommandBox is using an AsyncManager scheduled task thread now to redraw interactive jobs and progress bars. Look out for some new eye candy hiding in your server starts and package installs!
The print helper in commands and Task Runners has a new toy that will print ASCII representations of tabular data thanks to a pull request from Eric Peterson. You can see it in the output of the outdated command.
And you can use it in your Task Runners like so:
When scaffolding ColdBox handlers, we have support for ColdBox 6.x REST Handlers now.
You can enable extra Resource Manager Logging when troubleshooting file system issues:
You can force case sensitivity on a Windows server:
You can force case Insensitivity on a Linux server:
You can enable a cache of file system lookups of servlet paths. This is only for production and will eliminate repeated file system hits by your CF engine, such as checking for an Application.cfc file on every request, or testing where the servlet context root is. Standard Adobe ColdFusion installations have a similar cache of "real" paths from the servlet context that is tied to a setting in the administrator called "Cache Webserver paths" but that setting is not available and does not work on CommandBox servers for some reason. This setting would apply to any CF engine.
When using a CommandBox web server in production, you may wish to force your users to visit your site over HTTPS for security (and for HTTP/2 to work). However, it is desirable to still have your web server listening on HTTP so a user just typing your address in his browser can still connect to HTTP and then redirect. CommandBox can be configured to redirect all HTTP traffic over to HTTPS with the following setting.
If you want to go one step further, you can add a Strict-Transport-Security
header to your site. This instructs the browser to automatically use HTTPS every time the user visits your site again.
CommandBox won't use ANSI color formatting when running inside of a non-interactive terminal. However, build servers such as Gitlab or Jenkins (via a plugin) support ANSI color sequences. You can force CommandBox to use colored text output with this new setting:
One of the common hangups for people dealing with Lucee Server and Adobe ColdFusion CF Engines versions, is that CommandBox follows the npm-flavor of the semantic version spec and expects
instead of
So we've loosened our sem ver library to treat the 4th number as a build ID if there is no plus sign in the version (instead of just discarding the 4th digit as the spec requires)
Most modern browsers allow you to make up any subdomain you want before localhost such as mySite.localhost and will simply resolve them to localhost (127.0.0.1) even without a hosts file entry. CommandBox now supports using these domains and will bind your server's ports to localhost even without using the commandbox-hostupdater module.
You can customize where CommandBox lives by placing a commandbox.properties file next to the box binary. We have better support for relative paths now so you can have portable CommandBox installations such as a thumb drive.
The only known breaking change in this release is if you try to start two servers on the same HTTP port. Previously, CommandBox would just ignore the port on the second server and choose a random port. Due to the confusion that can cause, CommandBox will now throw an error. If you want to override an explicit port locally, set the port to an empty string or a 0 and CommandBox will choose a random port for you. For example, if you are using the commandbox-dotenv module, you can put this line in your project's .env file to override the port in your server.json
If you have a server with the server.json outside of the web root and at least one relative web alias, the alias will not work on the first start of the server. The workaround is to change the web aliases to be relative to the folder that the server.json lives in.
Some users receive the following error when starting CommandBox after updating:
If you see this, it means you have an older version of the commandbox-dotenv module installed that is not compatible with the new version of WireBox inside CommandBox. To fix, delete this folder out of your CommandBox home:
Now the CLI will start and you can install the latest version of dotenv.
Here is the list of all tickets included in the 5.3.0 release.
More Info:
More Info:
Thanks to a massive effort from Scott Steinbeck, the CFML world has a new of the , which is what powers the popular . We've plugged this new library into CommandBox and exposed it in the following ways.
The jq command and JMES spec are very powerful and probably do ! Make sure you check out the docs for more ideas.
More Info:
CommandBox's AJP listener (provided by Undertow) is already protected against the . However, if you would like to set up an AJP secret as well to ensure all requests coming into the AJP listener are from a trusted source, you can do this by setting the web.ajp.secret
property.
More info:
More Info:
More Info:
More Info:
More Info:
More Info:
web server aliases in server.json should be relative to the folder of the server.json
${Setting: serverinfo.foo not found} expansions don't work in a folder that's not the web root
Re-using same server.json with two names doesn't work
Corrupted WireBox metadata cache file will prevent CommandBox from starting
HTTP2 Additional Port Handling and Flexibility
REPL & Command highlighters don't handle square brackets [] well
JVM arg ending in backslash doesn't work
Coldbox Watch-Reinit Watches Unwanted Folders
Package installation doesn't always optimize duplicate packages
Globber.count() bombs if run after .asQuery()
Starting lucee@1.2.3 will use light-light when using CommandBox Light
Loading class files in task runner doesn't work
variables scope doesn't persist between task dependencies
tokenreplace removes BOM from files
trayOptions.json not respecting serverHomeDirectory
Server status not always correct.
Add singleServerHome option to not auto-deploy different versions of servers
Improve error message if version isn't found in ForgeBox
Loosen parsing of build ID in semver
Treat empty HTTP port the same as 0 (chooses random port)
Remove runwar hack that sets java vesrion
Runwar timesout when Lucee's new warmup flag is used
Add option for PID file
Allow generic override of server start settings via env vars or java sys props
Have parser ignore quotes inside a token
Cache "/" path lookup in Runwar's mapped resource manager
Add setters for run() arguments in CommandDSL
Default embedded server only needs to copy lucee.jar
Have outdated
also show latest version of a package
Integrate AsyncManager into CommandBox
Upgrade to latest WireBox 6.x
Bundle testbox in testbox module to prevent auto download
Halt server start if asked for port is in use
the git bullet train car disappears while current working directory is not the root project folder
Support AJP secret in Undertow
Rethink the way the screen is redrawn upon extensive installs so it can be fluent on all screen sizes
Can't link package if no modules are installed
New first-class setting to enable HTTP2
Comment out the default environment vars in .env when createing a new coldbox app
Allow server rules to be commented out with #
Allow servers to use random.localhost domains
Integrate JMES JSON filtering
Debug when lucee-extensions don't find Lucee server
Allow JSON service to create implicit arrays
Add config setting to enable ANSI colors in dumb terminals
Allow generic override of config settings via env vars or java sys props
Add --json flag to server list
Add HTTP redirect options
Add optional servlet path cache in Runwar
Allow caching of task runners
Support for generating ColdBox RESTHandlers
Support default module export as @moduleName,
Allow commandbox_home to be relative