RELEASED: Public: February 8, 2023
New features
- The non-block-scoped mode of the
stage
step was deprecated in 2016, but support for this mode, specifically itsconcurrency
parameter, continued to add complexity to various Pipeline-related plugins. (BEE-29598) -
The form of the
stage
step that takes a block (andname
) is now supported.The`stage` step without a block (only a
name
) will continue to print a warning and proceed as before; butstage
with theconcurrency
parameter (andname
and no block) now returns a build error. The previous functionality of theconcurrency
parameter can now be implemented using a combination of thelock
andmilestone
steps.