Re: Jenkins CI Windows Attempting Failsafe Tests

2019-04-18 Thread Ullrich Hafner
This happens quite often and indicates an infrastructure problem. Normally it disappears after a while... > Am 18.04.2019 um 22:55 schrieb 'Craig Barber' via Jenkins Developers > : > > We're running into an issue where the Jenkins CI is trying to run failsafe > tests and failing: >

Re: Plugin idea: publish the analysis result (reading from the jxlint xml format)

2019-04-18 Thread Ullrich Hafner
> Am 18.04.2019 um 08:41 schrieb Jérémie Bresson : > > I know this thread is old, but I took time to work again on this idea. > > Since then, the code was reorganized into: > * Jenkins' warnings next generation plug-in > . > * Analysis Parsers

Re: Migrate a token stored in plain text to one that uses Secret

2019-04-18 Thread Mez Pahlan
> The plain text tokens are already potentially compromised and need to > be regenerated and stored encrypted anyways. This is specific to each > plugin on how to go about regenerating keys and whatnot. > Yes, when you put it like that it makes more sense not to worry about migration. Thank you

Re: Migrate a token stored in plain text to one that uses Secret

2019-04-18 Thread Matt Sicker
On Thu, Apr 18, 2019 at 8:57 AM Mez Pahlan wrote: > I could ignore it, for sure. But that was the reason I received a security > bug that I'm looking to fix. That the tokens in my plugin were being stored > in plain text. If I leave them in plain text what am I actually fixing? I'm > fixing

Re: Migrate a token stored in plain text to one that uses Secret

2019-04-18 Thread Daniel Beck
> On 18. Apr 2019, at 15:50, Jesse Glick wrote: > > On Thu, Apr 18, 2019 at 2:53 AM Mez Pahlan wrote: >> What's the best way to migrate those over without asking the user to go into >> each of their jobs updating it? > > There is not any good way that I know of. I would just ignore it.

Re: Migrate a token stored in plain text to one that uses Secret

2019-04-18 Thread Mez Pahlan
> > There is not any good way that I know of. I would just ignore it. > I could ignore it, for sure. But that was the reason I received a security bug that I'm looking to fix. That the tokens in my plugin were being stored in plain text. If I leave them in plain text what am I actually fixing?

Re: Migrate a token stored in plain text to one that uses Secret

2019-04-18 Thread Jesse Glick
On Thu, Apr 18, 2019 at 2:53 AM Mez Pahlan wrote: > What's the best way to migrate those over without asking the user to go into > each of their jobs updating it? There is not any good way that I know of. I would just ignore it. -- You received this message because you are subscribed to the

Re: Any idea what could cause Jenkins console output to be mixed like this in a pipeline job?

2019-04-18 Thread Jesse Glick
On Wed, Apr 17, 2019 at 3:53 PM Martin Weber wrote: > Could this cause JENKINS-55215? Unlikely. That is just using the normal `ProcStarter.stdout(TaskListener)` which should not need any special `flush` call, either before or after https://github.com/jenkinsci/jenkins/pull/3961 -- You

Re: Migrate a token stored in plain text to one that uses Secret

2019-04-18 Thread Robert Sandell
Maybe you can try and report the job to the old data monitor somehow? That way an admin can batch save the affected jobs, I think :) /B Den tors 18 apr. 2019 kl 12:44 skrev Slide : > Did you mark the old field as transient in your code? If you mark it as > transient and have a readResolve, it

Re: Migrate a token stored in plain text to one that uses Secret

2019-04-18 Thread Slide
Did you mark the old field as transient in your code? If you mark it as transient and have a readResolve, it shouldn't get resaved once the upgrade happens. On Wed, Apr 17, 2019 at 11:53 PM Mez Pahlan wrote: > Morning > > I'm trying to migrate a plugin that used to use plain text for handling >

Migrate a token stored in plain text to one that uses Secret

2019-04-18 Thread Mez Pahlan
Morning I'm trying to migrate a plugin that used to use plain text for handling tokens to one that uses Secret. I am following https://wiki.jenkins.io/display/JENKINS/Hint+on+retaining+backward+compatibility and have converted all my field types to Secret from String for the token in

Re: Plugin idea: publish the analysis result (reading from the jxlint xml format)

2019-04-18 Thread Jérémie Bresson
I know this thread is old, but I took time to work again on this idea. Since then, the code was reorganized into: * Jenkins' warnings next generation plug-in . * Analysis Parsers Library . I would