0.36.6 released
- Date
Orbital 0.36.6 introduces enhanced authentication capabilities for complex service integration scenarios.
New Features
- Added support for multiple authentication tokens per service (ORB-1065)
- Services can now use multiple authentication mechanisms simultaneously (e.g., API key header + query param)
- Define an array of auth schemes instead of a single object in
auth.conf - Fully backwards compatible with existing single-scheme configurations
Example
authenticationTokens {
"com.foo.service.*" [
{ type: HttpHeader, value: ${API_KEY}, headerName: X-API-KEY },
{ type: QueryParam, parameterName: apiKey, value: ${API_SECRET} }
]
}
There are no other functional changes in this release.