arrow-left

All pages
gitbookPowered by GitBook
1 of 1

Loading...

What's New in 5.3.0

hashtag
Override Config Settings via Env Vars

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: https://commandbox.ortusbooks.com/config-settings/env-var-overridesarrow-up-right

hashtag
Override Server Settings via Env Vars

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.

More Info:

hashtag
HTTP/2 Support

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.

More Info:

hashtag
JMES JSON filtering / jq Command

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.

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:

The jq command and JMES spec are very powerful and probably do ! Make sure you check out the docs for more ideas.

More Info:

hashtag
AJP Secret Support

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.

For this to work, you must also configure your AJP proxy in your web server to send the same secret!

More info:

hashtag
AsyncManager Available to Task Runners and Commands

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!

More Info:

hashtag
New Table Printer

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:

hashtag
ColdBox Scaffolding for REST Handlers

When scaffolding ColdBox handlers, we have support for ColdBox 6.x REST Handlers now.

hashtag
Experimental Server Features

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.

More Info:

hashtag
HTTPS Redirect/HSTS

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.

More Info:

hashtag
Force Colored Output in your Builds

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:

hashtag
Loose Semantic Version Parsing

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)

hashtag
Support for "localhost subdomains"

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.

More Info:

hashtag
Relative CommandBox home

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.

More Info:

hashtag
Halt Server If Port In Use (Breaking Change)

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

hashtag
Relative Web Alias Behavior (regression)

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.

hashtag
Incompatibility with old DotEnv module

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.

hashtag
Release notes

Here is the list of all tickets included in the 5.3.0 release.

hashtag
Bug

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 [email protected] 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.

hashtag
Improvement

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

hashtag
New Feature

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

box_config_endpoints_forgebox_APIToken=my-token-here

# JSON which will be parsed
box_config_proxy={ "server" : "localhost", "port": 80 }

# dot-delimited keys (windows only)
box_config_endpoints.forgebox.APIToken=my-token-here

# array indexes too (windows only)
box_config_foo.bar[baz].bum[1]=test
https://commandbox.ortusbooks.com/embedded-server/configuring-your-server/env-var-overridesarrow-up-right
https://commandbox.ortusbooks.com/embedded-server/configuring-your-server/server-port-and-host#http-2arrow-up-right
CF implementationarrow-up-right
JMES specarrow-up-right
"jq" (or JSON Query) bash commandarrow-up-right
much more than you realizearrow-up-right
https://commandbox.ortusbooks.com/usage/jq-commandarrow-up-right
Ghostcat vulnerabilityarrow-up-right
https://commandbox.ortusbooks.com/embedded-server/configuring-your-server/server-port-and-host#ajp-secretarrow-up-right
https://commandbox.ortusbooks.com/task-runners/threading-async#asyncmanagerarrow-up-right
https://commandbox.ortusbooks.com/embedded-server/configuring-your-server/experimental-featuresarrow-up-right
https://commandbox.ortusbooks.com/embedded-server/configuring-your-server/https-redirect-hstsarrow-up-right
https://commandbox.ortusbooks.com/embedded-server/configuring-your-server/server-port-and-host#a-gracious-hostarrow-up-right
https://commandbox.ortusbooks.com/setup/installationarrow-up-right
COMMANDBOX-1301arrow-up-right
COMMANDBOX-1300arrow-up-right
COMMANDBOX-1291arrow-up-right
COMMANDBOX-1276arrow-up-right
COMMANDBOX-1275arrow-up-right
COMMANDBOX-1271arrow-up-right
COMMANDBOX-1270arrow-up-right
COMMANDBOX-1268arrow-up-right
COMMANDBOX-1263arrow-up-right
COMMANDBOX-1261arrow-up-right
COMMANDBOX-1259arrow-up-right
COMMANDBOX-1255arrow-up-right
COMMANDBOX-1253arrow-up-right
COMMANDBOX-1250arrow-up-right
COMMANDBOX-1212arrow-up-right
COMMANDBOX-664arrow-up-right
COMMANDBOX-1297arrow-up-right
COMMANDBOX-1296arrow-up-right
COMMANDBOX-1295arrow-up-right
COMMANDBOX-1292arrow-up-right
COMMANDBOX-1290arrow-up-right
COMMANDBOX-1288arrow-up-right
COMMANDBOX-1287arrow-up-right
COMMANDBOX-1285arrow-up-right
COMMANDBOX-1284arrow-up-right
COMMANDBOX-1269arrow-up-right
COMMANDBOX-1267arrow-up-right
COMMANDBOX-1258arrow-up-right
COMMANDBOX-1256arrow-up-right
COMMANDBOX-1252arrow-up-right
COMMANDBOX-1251arrow-up-right
COMMANDBOX-1249arrow-up-right
COMMANDBOX-1248arrow-up-right
COMMANDBOX-1246arrow-up-right
COMMANDBOX-1216arrow-up-right
COMMANDBOX-1169arrow-up-right
COMMANDBOX-1136arrow-up-right
COMMANDBOX-1117arrow-up-right
COMMANDBOX-1108arrow-up-right
COMMANDBOX-1294arrow-up-right
COMMANDBOX-1293arrow-up-right
COMMANDBOX-1289arrow-up-right
COMMANDBOX-1282arrow-up-right
COMMANDBOX-1281arrow-up-right
COMMANDBOX-1280arrow-up-right
COMMANDBOX-1279arrow-up-right
COMMANDBOX-1278arrow-up-right
COMMANDBOX-1277arrow-up-right
COMMANDBOX-1273arrow-up-right
COMMANDBOX-1262arrow-up-right
COMMANDBOX-1260arrow-up-right
COMMANDBOX-1245arrow-up-right
COMMANDBOX-676arrow-up-right
box_server_profile=production

box_server_web_http_port=8080

# JSON which will be parsed
box_server_web_ssl={ "enabled" : true, "port": 443 }

# dot-delimited keys (Windows only)
box_server_web.http.port=8080

# array indexes too (Windows only)
box_server_web_rules[1]=path-suffix(/box.json) -> set-error(404)
box_server_web_rules[2]=disallowed-methods(trace)
server set web.http2.enable=true/false
# Return array of dependency names
package show | jq keys(dependencies)

# Find dependencies with "cb" in their name
package show | jq key_contains(dependencies,'cb')
config show jq:endpoints.forgebox.apiToken
# .. is the same as ...
config show endpoints.forgebox.apiToken

# or you can get fancy...
config show 'jq:keys(modules)'

# Impress your friends
package show "jq:[name,version]"

# Be the life of the party
package show "jq:contributors|split(@,' ')" 
server set web.AJP.secret=mySecret
// Parallel Executions
async().all(
    () => hyper.post( "/somewhere" ),
    () => hyper.post( "/somewhereElse" ),
    () => hyper.post( "/another" )
).then( (results)=> logResults( results ) );
print.table(
	[ 'First Name', 'Last Name' ],
	[
		[ 'Brad', 'Wood' ],
		[ 'Luis', 'Majano' ],
		[ 'Gavin', 'Pickin' ]
	]
);
coldbox create handler --rest
server set runwar.args="--resource-manager-logging=true"
server set runwar.args="--case-sensitive-web-server=true"
server set runwar.args="--case-sensitive-web-server=false"
server set runwar.args="--cache-servlet-paths=true"
server set web.SSL.forceSSLRedirect=true
server set web.SSL.HSTS.enable=true
server set web.SSL.HSTS.maxAge=31536000
server set web.SSL.HSTS.includeSubDomains=true
config set colorInDumbTerminal=true
server start [email protected]+48
server start [email protected]
server set web.host=mySite.localhost
commandbox_home=../customHome
box_server_web_http_port=0
The parameter [name] to function [get] is required but was not passed in.
~/.CommandBox/cfml/modules/commandbox-dotenv
install commandbox-dotenv