Skip to content
Alex Jackson edited this page Sep 2, 2014 · 7 revisions

Release Notes

The cf-release v182 was released on September 2nd 2014.

Release Highlights

  • Work on Feature Flags completed. API Docs

  • Work on Environment Variable Groups completed. API Docs, Proposal Doc

  • Removed log/env.log 1, 2

  • Fix for encoding reserved characters in URLs

  • Fixed issue with syslog drains stopping

  • Changed syslog config to log all logs sent to syslog from the VM, old config only send logs tagged with vcap.*

What's changing? Previously the router would re-encode certain URLs so that the backend would receive a version of the URL which was slightly different from the request the client actually made. For example if a client requested /a%24url we would actually request /a$url. If a client requested /a^url we would send a request for /a%5Eurl to the backend. Only a small subset of valid URLs acted this way. We're now going to send the exact same request the client made to the backend, with the same encoding (apart from the hostname).

Why are we changing this? We consider the current router behaviour a bug, so we're changing it so that the router always sends exactly the request it receives to the backend (apart from changing the host) rather than re-encoding it. The previous behaviour was lossy -- both /a$url and /a%24url reached the backend application as /a$url, the backend app therefore had no way to know which one the client actually sent. Application's shouldn't need to rely on the router modifying the incoming request to work, and if an application needs to know whether a symbol was sent encoded or un-encoded, we don't want the router to prevent that.

What's affected? A very small set of applications will be affected by this change if they relied on the router changing the request the client actually made. In all these cases the application would only have worked when deployed inside Cloud Foundry. These applications should either encourage their clients to send the correct values, or accept both values on the server-side (many frameworks will already silently decode both values to the same thing making this quite easy).

Config

Deployed with

  • BOSH Version:

  • Stemcell Version:

  • CC Api Version:

Diff file

cf-182-whats-in-the-deploy

Contents

Community Advisory Board, PMC Schedules

Developing CF

Latest CF Releases

Roadmap and Trackers

See CFF official project list.

Roadmaps are reflected in pivotal trackers. Tracker Instructions and steps to watch stories. Here is a flat list of all trackers:

CIs

Maybe other CIs hosted on cf-app.com are mentioned in slack ?

Using CF

Running CF

Tools

Clone this wiki locally