Installers
- Debian 32 bit
- Debian 64 bit
- Redhat 32 bit
- Redhat 64 bit
- Mac OS X 64 bit
- Windows 32 bit
- Windows 64 bit
Binaries
- Linux 32 bit binary
- Linux 64 bit binary
- Mac OS X 64 bit binary
- Windows 32 bit binary
- Windows 64 bit binary
Change Log
App Manifest Support for Routes with Paths, TCP Routes
The app manifest now supports a new, more concise way to express routes. It allows mixing HTTP routes with hosts and paths, as well as TCP routes, and prepares for future route specific configurations such as mapping to app ports.
Example:
---
applications:
- name: myapp
routes:
- route: example.com
- route: www.example.com/foo
- route: tcp-example.com:1234
The app manifests that cf create-app-manifest
generates use the new format, but cf push
will remain accepting app manifests using the format as well.
For details refer to the documentation, which should be updated in a day or so.
Updated translations
IBM has contributed updated translations of CLI messages again.
Fixed Regressions
- Stack "Unknown"
cf push
andcf app
were displayingUnknown
for the stack name. (#799) - Unreadable text when using light background terminal
When introducing a color library to support ansi coloring on Windows in cf CLI 6.17.1, one color was wrongly mapped causing headers inhelp
and other commands to be unreadable when using light background terminals. This color has been restored. (#873) - Closing connections
New connections were created for each API call that were not closed properly, which could lead to a "too many open files" socket error. (#878)
Updated Commands
api
now no longer falls back to insecurehttp
when a URL without a URL scheme is specified and the API endpoint is not accessible on port 443.