Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
5c20d5e
[JENKINS-38381] Calling Controller.watch API.
jglick Feb 9, 2018
b4ff3a5
Merge branch 'UTF-8-JENKINS-31096' into watch-plus-UTF-8-JENKINS-31096
jglick Feb 13, 2018
cb05308
Merge branch 'master' into watch-JENKINS-38381
jglick Jun 8, 2018
13885df
Matching https://github.com/jenkinsci/durable-task-plugin/pull/60/com…
jglick Jun 8, 2018
af31da4
Merge branch 'UTF-8-JENKINS-31096' into watch-plus-UTF-8-JENKINS-31096
jglick Jun 9, 2018
bd27dc6
Merge branch 'watch-JENKINS-38381' into watch-plus-UTF-8-JENKINS-31096
jglick Jun 9, 2018
5eccfbb
Review comments from @oleg-nenashev.
jglick Jun 9, 2018
756a87d
Merge branch 'UTF-8-JENKINS-31096' into watch-plus-UTF-8-JENKINS-31096
jglick Jun 9, 2018
6c424e0
Merge branch 'watch-JENKINS-38381' into watch-plus-UTF-8-JENKINS-31096
jglick Jun 9, 2018
0dcfd8e
Merge branch 'master' into watch-plus-UTF-8-JENKINS-31096
jglick Aug 7, 2018
12667dd
https://github.com/jenkinsci/workflow-job-plugin/pull/89 has already …
jglick Aug 7, 2018
e2536cc
Using a production value for WATCHING_RECURRENCE_PERIOD by default in…
jglick Aug 7, 2018
458d5ee
Added a feature flag for watching mode in case it needs to be disable…
jglick Aug 7, 2018
8440d04
FindBugs
jglick Aug 8, 2018
335d00f
Introduced awaitingAsynchExit flag to handle a possible corner case.
jglick Aug 8, 2018
9a094f0
Process.destroyForcibly should make for more colorful tests!
jglick Aug 8, 2018
38e5a73
Merge branch 'master' into watch-JENKINS-38381
jglick Aug 8, 2018
86d8074
Added ExecutorStepTest.shellOutputAcrossRestart to see what happens t…
jglick Aug 10, 2018
705b254
Merge branch 'jnlpProc' into watch-JENKINS-38381
jglick Aug 10, 2018
6722cdb
Noting a way to reproduce a loss of a small amount of output during r…
jglick Aug 10, 2018
62aeb45
Work around exception suppression from PrintStream.
jglick Aug 10, 2018
ed4551a
Verifying https://github.com/jenkinsci/durable-task-plugin/pull/60/co…
jglick Aug 10, 2018
c41f3ec
Comments.
jglick Aug 10, 2018
c859378
After discussion with @dwnusbaum, attempting to proceed after errors …
jglick Aug 10, 2018
3673025
Richer Javadoc.
jglick Aug 13, 2018
43b6d27
When writing directly to PrintStream.out, synchronize on it like Prin…
jglick Aug 14, 2018
24ee12b
Synchronization should be on the PrintStream, not its underlying Outp…
jglick Aug 14, 2018
3f8ced4
Fail with a more informative exception in case the PrintStream is clo…
jglick Aug 14, 2018
d54b065
Merge branch 'master' into watch-JENKINS-38381
jglick Aug 22, 2018
efb481c
Merge branch 'master' into watch-JENKINS-38381
jglick Sep 4, 2018
77b81c3
Bump.
jglick Sep 4, 2018
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>durable-task</artifactId>
<version>1.24</version>
<version>1.26-rc366.c1ee6607c693</version> <!-- TODO https://github.com/jenkinsci/durable-task-plugin/pull/60 -->
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins.workflow</groupId>
Expand Down
Loading