Schedule for WildFly 23
by Brian Stansberry
We're coming to the end of development on WildFly 23 so I wanted to let you
know the key dates:
WildFly Core code freeze for WF 23 Beta: Fri Feb 19
WildFly code freeze for WF 23 Beta: Wed Feb 24
WF 23 Beta on wildfly.org: Thu Feb 25
WildFly Core code freeze for WF 23 Final: Fri Mar 5
WildFly code freeze for WF 23 Final: Wed Mar 10
WF 23 Final on wildfly.org: Thu Mar 11
As usual, new Features need to get into the beta.
By the code freeze dates, PRs for any changes meant for the WF 23 Beta or
Final should be up, with an approved review and acceptable CI results.
Best regards,
Brian
3 years, 9 months
Plugging in Credential Store backed ExpressionResolver
by Darran Lofthouse
Presently working on WFCORE-4360 adding support for expression resolution
backed by a credential store - the main barrier is going to be the solution
to bridge expression resolution with a subsystem provided component.
I am wondering if the following is going to be viable to support a
configurable expression resolver from a subsystem.
I see the RuntimeExpressionResolver is created very early in the boot
process, however at the time it is created the CapabilityRegistry is also
available. This is making me think if the CapabilityRegistry can be passed
in to the RuntimeExpressionResolver.
I would then imagine the resource handling expression resolution would
register a non-dynamic capability which exposes an expression resolver
runtime API. This in turn may also need to cross reference a credential
store which would also need to be accessible using the runtime API of a
capability.
At the time of expression resolution the RuntimeExpressionResolver would
then check the CapabilityRegistry to see if an expression resolver has been
registered and attempt to use it falling back to vault then default
ModelNode resolution if it does not resolve the expression.
Using a runtime API I suspect I would likely need to trigger the
initialisation of these APIs at the start of Stage.RUNTIME - that looks
feasible by adding a stage to Stage.RUNTIME with addFirst test to true -
maybe to be safe these should also start on demand based on first access.
Regards,
Darran Lofthouse.
3 years, 9 months