Branch: refs/heads/master
Home: https://github.com/jenkinsci/workflow-cps-plugin
Commit: 011007294fdef7aa3ee63052dff36b207dfc2045
https://github.com/jenkinsci/workflow-cps-plugin/commit/011007294fdef7aa3ee63052dff36b207dfc2045
Author: René Scheibe <[email protected]>
Date: 2018-11-30 (Fri, 30 Nov 2018)
Changed paths:
M src/main/java/org/jenkinsci/plugins/workflow/cps/CpsFlowExecution.java
M
src/main/java/org/jenkinsci/plugins/workflow/cps/CpsGroovyShellFactory.java
M src/main/java/org/jenkinsci/plugins/workflow/cps/CpsScmFlowDefinition.java
M src/main/java/org/jenkinsci/plugins/workflow/cps/CpsStepContext.java
M src/main/java/org/jenkinsci/plugins/workflow/cps/CpsThreadGroup.java
M src/main/java/org/jenkinsci/plugins/workflow/cps/CpsWhitelist.java
M src/main/java/org/jenkinsci/plugins/workflow/cps/DSL.java
M src/main/java/org/jenkinsci/plugins/workflow/cps/SandboxContinuable.java
M src/main/java/org/jenkinsci/plugins/workflow/cps/Snippetizer.java
M src/main/java/org/jenkinsci/plugins/workflow/cps/nodes/StepAtomNode.java
M
src/main/java/org/jenkinsci/plugins/workflow/cps/nodes/StepDescriptorCache.java
M src/main/java/org/jenkinsci/plugins/workflow/cps/replay/ReplayAction.java
M
src/main/resources/org/jenkinsci/plugins/workflow/cps/Snippetizer/dsld.groovy
M
src/main/resources/org/jenkinsci/plugins/workflow/cps/Snippetizer/gdsl.groovy
M src/test/java/org/jenkinsci/plugins/workflow/cps/FlowDurabilityTest.java
Log Message:
-----------
Avoid deprecated method usage - class Jenkins
default replacements (as proposed by the Jenkins Javadoc)
- getActiveInstance() -> get()
- getInstance() -> getInstanceOrNull()
Occurrences of getInstance() where it was used without a null check,
were replaced with get() instead of getInstanceOrNull().
This is because a NullPointerException may have been thrown so far
and now a IllegalStateException would been thrown.
Commit: d2cb175256127d6951109dfbd8f3b58dcf468e21
https://github.com/jenkinsci/workflow-cps-plugin/commit/d2cb175256127d6951109dfbd8f3b58dcf468e21
Author: René Scheibe <[email protected]>
Date: 2018-11-30 (Fri, 30 Nov 2018)
Changed paths:
M src/main/java/org/jenkinsci/plugins/workflow/cps/Snippetizer.java
Log Message:
-----------
Avoid deprecated method usage - class HttpResponses
Commit: fe352946a143e8447acfc32e4be556516684e3c7
https://github.com/jenkinsci/workflow-cps-plugin/commit/fe352946a143e8447acfc32e4be556516684e3c7
Author: René Scheibe <[email protected]>
Date: 2018-12-03 (Mon, 03 Dec 2018)
Changed paths:
M src/main/java/org/jenkinsci/plugins/workflow/cps/CpsFlowExecution.java
M src/test/java/org/jenkinsci/plugins/workflow/WorkflowTest.java
M
src/test/java/org/jenkinsci/plugins/workflow/cps/replay/ReplayActionTest.java
Log Message:
-----------
Avoid deprecated method usage - class User
Commit: 5367cfcf45a3e5ca044114712e7268fc8596422f
https://github.com/jenkinsci/workflow-cps-plugin/commit/5367cfcf45a3e5ca044114712e7268fc8596422f
Author: René Scheibe <[email protected]>
Date: 2018-12-03 (Mon, 03 Dec 2018)
Changed paths:
M src/test/java/org/jenkinsci/plugins/workflow/cps/CpsThreadTest.java
M
src/test/java/org/jenkinsci/plugins/workflow/cps/replay/ReplayActionTest.java
Log Message:
-----------
Avoid deprecated method usage - class ACL
CpsVmExecutorService still uses the deprecated ACL.impersonate() because
I am not sure how to handle this. Currently the authentication is not
even reset. If the CpsThreadGroup's Authenation is not changing,
a ImpersonatingExecutorService could be used.
Commit: 4ac4d406781a66662e802294ef738534736b3dc6
https://github.com/jenkinsci/workflow-cps-plugin/commit/4ac4d406781a66662e802294ef738534736b3dc6
Author: René Scheibe <[email protected]>
Date: 2018-12-03 (Mon, 03 Dec 2018)
Changed paths:
M src/main/java/org/jenkinsci/plugins/workflow/cps/CpsStepContext.java
M src/main/java/org/jenkinsci/plugins/workflow/cps/CpsThreadGroup.java
Log Message:
-----------
Avoid deprecated class SuppressWarnings from FindBugs
Commit: 3666baf80e2d711a2db41c9c35b066fd74193be7
https://github.com/jenkinsci/workflow-cps-plugin/commit/3666baf80e2d711a2db41c9c35b066fd74193be7
Author: René Scheibe <[email protected]>
Date: 2018-12-03 (Mon, 03 Dec 2018)
Changed paths:
M
src/test/groovy/org/jenkinsci/plugins/workflow/cps/CpsFlowDefinitionTest.groovy
M src/test/java/org/jenkinsci/plugins/workflow/SerializationTest.java
M src/test/java/org/jenkinsci/plugins/workflow/SubtypeInjectingStepTest.java
M src/test/java/org/jenkinsci/plugins/workflow/WorkflowTest.java
M
src/test/java/org/jenkinsci/plugins/workflow/cps/CpsFlowDefinition2Test.java
M src/test/java/org/jenkinsci/plugins/workflow/cps/CpsScriptTest.java
M src/test/java/org/jenkinsci/plugins/workflow/cps/CpsThreadDumpTest.java
M src/test/java/org/jenkinsci/plugins/workflow/cps/FlowDurabilityTest.java
M
src/test/java/org/jenkinsci/plugins/workflow/cps/actions/ArgumentsActionImplTest.java
M src/test/java/org/jenkinsci/plugins/workflow/cps/steps/LoadStepTest.java
M
src/test/java/org/jenkinsci/plugins/workflow/cps/steps/ParallelStepTest.java
M
src/test/java/org/jenkinsci/plugins/workflow/cps/steps/RestartingLoadStepTest.java
Log Message:
-----------
Avoid deprecated constructor usage - class CpsFlowDefinition
Commit: 4026d1fb6f50e3e773edafe558a0dffab204760d
https://github.com/jenkinsci/workflow-cps-plugin/commit/4026d1fb6f50e3e773edafe558a0dffab204760d
Author: René Scheibe <[email protected]>
Date: 2018-12-03 (Mon, 03 Dec 2018)
Changed paths:
M src/test/java/org/jenkinsci/plugins/workflow/WorkflowTest.java
Log Message:
-----------
Avoid deprecated constructor usage - class Slave
Commit: 2ab89b5d56c92740b78a80eb66993ffaf6336273
https://github.com/jenkinsci/workflow-cps-plugin/commit/2ab89b5d56c92740b78a80eb66993ffaf6336273
Author: Devin Nusbaum <[email protected]>
Date: 2018-12-18 (Tue, 18 Dec 2018)
Changed paths:
M src/main/java/org/jenkinsci/plugins/workflow/cps/CpsFlowExecution.java
M
src/main/java/org/jenkinsci/plugins/workflow/cps/CpsGroovyShellFactory.java
M src/main/java/org/jenkinsci/plugins/workflow/cps/CpsScmFlowDefinition.java
M src/main/java/org/jenkinsci/plugins/workflow/cps/CpsStepContext.java
M src/main/java/org/jenkinsci/plugins/workflow/cps/CpsThreadGroup.java
M src/main/java/org/jenkinsci/plugins/workflow/cps/CpsWhitelist.java
M src/main/java/org/jenkinsci/plugins/workflow/cps/DSL.java
M src/main/java/org/jenkinsci/plugins/workflow/cps/SandboxContinuable.java
M src/main/java/org/jenkinsci/plugins/workflow/cps/Snippetizer.java
M src/main/java/org/jenkinsci/plugins/workflow/cps/nodes/StepAtomNode.java
M
src/main/java/org/jenkinsci/plugins/workflow/cps/nodes/StepDescriptorCache.java
M src/main/java/org/jenkinsci/plugins/workflow/cps/replay/ReplayAction.java
M
src/main/resources/org/jenkinsci/plugins/workflow/cps/Snippetizer/dsld.groovy
M
src/main/resources/org/jenkinsci/plugins/workflow/cps/Snippetizer/gdsl.groovy
M
src/test/groovy/org/jenkinsci/plugins/workflow/cps/CpsFlowDefinitionTest.groovy
M src/test/java/org/jenkinsci/plugins/workflow/SerializationTest.java
M src/test/java/org/jenkinsci/plugins/workflow/SubtypeInjectingStepTest.java
M src/test/java/org/jenkinsci/plugins/workflow/WorkflowTest.java
M
src/test/java/org/jenkinsci/plugins/workflow/cps/CpsFlowDefinition2Test.java
M src/test/java/org/jenkinsci/plugins/workflow/cps/CpsScriptTest.java
M src/test/java/org/jenkinsci/plugins/workflow/cps/CpsThreadDumpTest.java
M src/test/java/org/jenkinsci/plugins/workflow/cps/CpsThreadTest.java
M src/test/java/org/jenkinsci/plugins/workflow/cps/FlowDurabilityTest.java
M
src/test/java/org/jenkinsci/plugins/workflow/cps/actions/ArgumentsActionImplTest.java
M
src/test/java/org/jenkinsci/plugins/workflow/cps/replay/ReplayActionTest.java
M src/test/java/org/jenkinsci/plugins/workflow/cps/steps/LoadStepTest.java
M
src/test/java/org/jenkinsci/plugins/workflow/cps/steps/ParallelStepTest.java
M
src/test/java/org/jenkinsci/plugins/workflow/cps/steps/RestartingLoadStepTest.java
Log Message:
-----------
Merge pull request #256 from darxriggs/avoid-deprecated-api-usage
Avoid deprecated api usage
Compare:
https://github.com/jenkinsci/workflow-cps-plugin/compare/99e53df804f0...2ab89b5d56c9
**NOTE:** This service has been marked for deprecation:
https://developer.github.com/changes/2018-04-25-github-services-deprecation/
Functionality will be removed from GitHub.com on January 31st, 2019.
--
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.