Branch: refs/heads/master
Home: https://github.com/jenkinsci/pipeline-model-definition-plugin
Commit: 5a06b265938fcf49030336a0ce7bdbaa39c100ea
https://github.com/jenkinsci/pipeline-model-definition-plugin/commit/5a06b265938fcf49030336a0ce7bdbaa39c100ea
Author: Andrew Bayer <[email protected]>
Date: 2017-11-20 (Mon, 20 Nov 2017)
Changed paths:
M pipeline-model-definition/pom.xml
M
pipeline-model-definition/src/main/groovy/org/jenkinsci/plugins/pipeline/modeldefinition/parser/ASTParserUtils.groovy
M
pipeline-model-definition/src/test/java/org/jenkinsci/plugins/pipeline/modeldefinition/OptionsTest.java
A
pipeline-model-definition/src/test/resources/disableConcurrentBuilds.groovy
M pom.xml
Log Message:
-----------
[FIXED JENKINS-48115] Work around badly configured metasteps
jira-steps has `isMetaStep()` returning true for all its step
descriptors, which is...wrong. As a result, literally every symbol has
at least one erstwhile metastep, breaking our logic for determining
whether we're looking at a function or a describable. Sigh. While this
should be fixed in jira-steps too, we should definitely be working
around the super-broad cases like this.
Commit: 5aedf530395d99226ac1654d9b49603f617e0740
https://github.com/jenkinsci/pipeline-model-definition-plugin/commit/5aedf530395d99226ac1654d9b49603f617e0740
Author: Andrew Bayer <[email protected]>
Date: 2017-11-20 (Mon, 20 Nov 2017)
Changed paths:
M pom.xml
Log Message:
-----------
Ah, bounds.
Commit: bab2438e8bdf9d2592098c33ff9489c66d4d31aa
https://github.com/jenkinsci/pipeline-model-definition-plugin/commit/bab2438e8bdf9d2592098c33ff9489c66d4d31aa
Author: Andrew Bayer <[email protected]>
Date: 2017-11-20 (Mon, 20 Nov 2017)
Changed paths:
M pom.xml
Log Message:
-----------
Use workflow-step-api SNAPSHOT that fixes things more thoroughly
Commit: 09f66c7dc3d3a573eb5d5b060ed264386ce33cb0
https://github.com/jenkinsci/pipeline-model-definition-plugin/commit/09f66c7dc3d3a573eb5d5b060ed264386ce33cb0
Author: Andrew Bayer <[email protected]>
Date: 2017-11-20 (Mon, 20 Nov 2017)
Changed paths:
M
pipeline-model-definition/src/main/groovy/org/jenkinsci/plugins/pipeline/modeldefinition/parser/ASTParserUtils.groovy
Log Message:
-----------
Whoops, forgot to roll that back
Commit: c55bfa6bd3aaaca3c6f41f3045eb88e7d64040d1
https://github.com/jenkinsci/pipeline-model-definition-plugin/commit/c55bfa6bd3aaaca3c6f41f3045eb88e7d64040d1
Author: Andrew Bayer <[email protected]>
Date: 2017-11-21 (Tue, 21 Nov 2017)
Changed paths:
M pom.xml
Log Message:
-----------
Adding note to make sure we don't change jira-steps version.
Commit: 39c45d29ecf2d822949fbdb80e495c228adb1f1f
https://github.com/jenkinsci/pipeline-model-definition-plugin/commit/39c45d29ecf2d822949fbdb80e495c228adb1f1f
Author: Andrew Bayer <[email protected]>
Date: 2017-11-21 (Tue, 21 Nov 2017)
Changed paths:
M pom.xml
Log Message:
-----------
Use workflow-step-api 2.14 release
Commit: e8c6804683e9ea550b0591d1e6f47a70798293a2
https://github.com/jenkinsci/pipeline-model-definition-plugin/commit/e8c6804683e9ea550b0591d1e6f47a70798293a2
Author: Andrew Bayer <[email protected]>
Date: 2017-11-21 (Tue, 21 Nov 2017)
Changed paths:
M pipeline-model-definition/pom.xml
M
pipeline-model-definition/src/main/groovy/org/jenkinsci/plugins/pipeline/modeldefinition/Utils.groovy
M
pipeline-model-definition/src/main/groovy/org/jenkinsci/plugins/pipeline/modeldefinition/model/conditions/Aborted.groovy
M
pipeline-model-definition/src/main/groovy/org/jenkinsci/plugins/pipeline/modeldefinition/model/conditions/Changed.groovy
M
pipeline-model-definition/src/main/groovy/org/jenkinsci/plugins/pipeline/modeldefinition/model/conditions/Failure.groovy
M
pipeline-model-definition/src/main/groovy/org/jenkinsci/plugins/pipeline/modeldefinition/model/conditions/NotBuilt.groovy
M
pipeline-model-definition/src/main/groovy/org/jenkinsci/plugins/pipeline/modeldefinition/model/conditions/Success.groovy
M
pipeline-model-definition/src/main/groovy/org/jenkinsci/plugins/pipeline/modeldefinition/model/conditions/Unstable.groovy
A
pipeline-model-definition/src/main/java/org/jenkinsci/plugins/pipeline/modeldefinition/actions/DeclarativeJobAction.java
M
pipeline-model-definition/src/main/resources/org/jenkinsci/plugins/pipeline/modeldefinition/ModelInterpreter.groovy
M
pipeline-model-definition/src/test/java/org/jenkinsci/plugins/pipeline/modeldefinition/BasicModelDefTest.java
M
pipeline-model-definition/src/test/java/org/jenkinsci/plugins/pipeline/modeldefinition/BuildConditionResponderTest.java
A
pipeline-model-definition/src/test/resources/contextResultOverridesRunResult.groovy
A pipeline-model-definition/src/test/resources/junitResult.xml
M
pipeline-model-extensions/src/main/java/org/jenkinsci/plugins/pipeline/modeldefinition/model/BuildCondition.java
M pom.xml
Log Message:
-----------
Merge remote-tracking branch 'origin/master' into jenkins-48115
Conflicts:
pom.xml
Commit: 2b7501557a883478dfd802ec6de1a54959ba5461
https://github.com/jenkinsci/pipeline-model-definition-plugin/commit/2b7501557a883478dfd802ec6de1a54959ba5461
Author: Andrew Bayer <[email protected]>
Date: 2017-11-21 (Tue, 21 Nov 2017)
Changed paths:
M pipeline-model-definition/pom.xml
M
pipeline-model-definition/src/main/groovy/org/jenkinsci/plugins/pipeline/modeldefinition/parser/ASTParserUtils.groovy
M
pipeline-model-definition/src/test/java/org/jenkinsci/plugins/pipeline/modeldefinition/OptionsTest.java
A
pipeline-model-definition/src/test/resources/disableConcurrentBuilds.groovy
M pom.xml
Log Message:
-----------
Merge pull request #221 from abayer/jenkins-48115
[FIXED JENKINS-48115] Work around badly configured metasteps
Compare:
https://github.com/jenkinsci/pipeline-model-definition-plugin/compare/0b91c41246e7...2b7501557a88
--
You received this message because you are subscribed to the Google Groups
"Jenkins Commits" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.