[JIRA] (JENKINS-62231) ec2 downgrade from 1.50 fails removing the configured cloud

2020-05-10 Thread 'db...@cloudbees.com (JIRA)' via Jenkins Issues
Title: Message Title


 
 
 
 

 
 
 

 
   
 Daniel Beck commented on  JENKINS-62231  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: ec2 downgrade from 1.50 fails removing the configured cloud   
 

  
 
 
 
 

 
 How can this be reproduced? Specific, detailed and complete steps to do that please.    
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.13.12#713012-sha1:6e07c38)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-issues/JIRA.206170.158974000.24171.1589118420167%40Atlassian.JIRA.


[JIRA] (JENKINS-61937) hpi:run fails on Java 8 when the plugin depends on 2.230+

2020-05-08 Thread 'db...@cloudbees.com (JIRA)' via Jenkins Issues
Title: Message Title


 
 
 
 

 
 
 

 
   
 Daniel Beck commented on  JENKINS-61937  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: hpi:run fails on Java 8 when the plugin depends on 2.230+   
 

  
 
 
 
 

 
 https://github.com/jenkinsci/maven-hpi-plugin/pull/181 proposed the change from above.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.13.12#713012-sha1:6e07c38)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-issues/JIRA.205817.1587074062000.23941.1588986480132%40Atlassian.JIRA.


[JIRA] (JENKINS-61937) hpi:run fails on Java 8 when the plugin depends on 2.230+

2020-05-08 Thread 'db...@cloudbees.com (JIRA)' via Jenkins Issues
Title: Message Title


 
 
 
 

 
 
 

 
   
 Daniel Beck commented on  JENKINS-61937  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: hpi:run fails on Java 8 when the plugin depends on 2.230+   
 

  
 
 
 
 

 
 It seems like it (hpi:run starts with 3.15-SNAPSHOT in the plugin pom.xml despite 2.230), but no idea how to even write a test for it without keeping https://repo.jenkins-ci.org/JENKINS-61937 around indefinitely.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.13.12#713012-sha1:6e07c38)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-issues/JIRA.205817.1587074062000.23938.1588986180143%40Atlassian.JIRA.


[JIRA] (JENKINS-61937) hpi:run fails on Java 8 when the plugin depends on 2.230+

2020-05-08 Thread 'db...@cloudbees.com (JIRA)' via Jenkins Issues
Title: Message Title


 
 
 
 

 
 
 

 
   
 Daniel Beck commented on  JENKINS-61937  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: hpi:run fails on Java 8 when the plugin depends on 2.230+   
 

  
 
 
 
 

 
 Tentative fix idea, WDYT? 

 
$ git diff
diff --git a/src/main/java/org/jenkinsci/maven/plugins/hpi/MavenArtifact.java b/src/main/java/org/jenkinsci/maven/plugins/hpi/MavenArtifact.java
index e5b4c0c..bffa23e 100644
--- a/src/main/java/org/jenkinsci/maven/plugins/hpi/MavenArtifact.java
+++ b/src/main/java/org/jenkinsci/maven/plugins/hpi/MavenArtifact.java
@@ -55,6 +55,9 @@ public class MavenArtifact implements Comparable {
  * Is this a Jenkins plugin?
  */
 public boolean isPlugin() throws IOException {
+if ("system".equals(getScope())) {
+return false;
+}
 String type = getResolvedType();
 return type.equals("hpi") || type.equals("jpi");
 }
 

  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.13.12#713012-sha1:6e07c38)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-issues/JIRA.205817.1587074062000.23890.1588968480185%40Atlassian.JIRA.


[JIRA] (JENKINS-61937) hpi:run fails on Java 8 when the plugin depends on 2.230+

2020-05-08 Thread 'db...@cloudbees.com (JIRA)' via Jenkins Issues
Title: Message Title


 
 
 
 

 
 
 

 
   
 Daniel Beck reopened an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-61937  
 
 
  hpi:run fails on Java 8 when the plugin depends on 2.230+   
 

  
 
 
 
 

 
Change By: 
 Daniel Beck  
 
 
Resolution: 
 Not A Defect  
 
 
Status: 
 Closed Reopened  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.13.12#713012-sha1:6e07c38)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-issues/JIRA.205817.1587074062000.23823.1588961881217%40Atlassian.JIRA.


[JIRA] (JENKINS-61937) hpi:run fails on Java 8 when the plugin depends on 2.230+

2020-05-08 Thread 'db...@cloudbees.com (JIRA)' via Jenkins Issues
Title: Message Title


 
 
 
 

 
 
 

 
   
 Daniel Beck updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-61937  
 
 
  hpi:run fails on Java 8 when the plugin depends on 2.230+   
 

  
 
 
 
 

 
Change By: 
 Daniel Beck  
 
 
Component/s: 
 core  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.13.12#713012-sha1:6e07c38)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-issues/JIRA.205817.1587074062000.23817.1588961881009%40Atlassian.JIRA.


[JIRA] (JENKINS-61937) hpi:run fails on Java 8 when the plugin depends on 2.230+

2020-05-08 Thread 'db...@cloudbees.com (JIRA)' via Jenkins Issues
Title: Message Title


 
 
 
 

 
 
 

 
   
 Daniel Beck updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-61937  
 
 
  hpi:run fails on Java 8 when the plugin depends on 2.230+   
 

  
 
 
 
 

 
Change By: 
 Daniel Beck  
 
 
Priority: 
 Blocker Minor  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.13.12#713012-sha1:6e07c38)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-issues/JIRA.205817.1587074062000.23820.1588961881127%40Atlassian.JIRA.


[JIRA] (JENKINS-61937) hpi:run fails on Java 8 when the plugin depends on 2.230+

2020-05-08 Thread 'db...@cloudbees.com (JIRA)' via Jenkins Issues
Title: Message Title


 
 
 
 

 
 
 

 
   
 Daniel Beck assigned an issue to Unassigned  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-61937  
 
 
  hpi:run fails on Java 8 when the plugin depends on 2.230+   
 

  
 
 
 
 

 
Change By: 
 Daniel Beck  
 
 
Assignee: 
 Daniel Beck  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.13.12#713012-sha1:6e07c38)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-issues/JIRA.205817.1587074062000.23814.1588961880946%40Atlassian.JIRA.


[JIRA] (JENKINS-61937) hpi:run fails on Java 8 when the plugin depends on 2.230+

2020-05-08 Thread 'db...@cloudbees.com (JIRA)' via Jenkins Issues
Title: Message Title


 
 
 
 

 
 
 

 
   
 Daniel Beck updated  JENKINS-61937  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-61937  
 
 
  hpi:run fails on Java 8 when the plugin depends on 2.230+   
 

  
 
 
 
 

 
Change By: 
 Daniel Beck  
 
 
Status: 
 Reopened Open  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.13.12#713012-sha1:6e07c38)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-issues/JIRA.205817.1587074062000.23825.1588961881250%40Atlassian.JIRA.


[JIRA] (JENKINS-61937) hpi:run fails on Java 8 when the plugin depends on 2.230+

2020-05-08 Thread 'db...@cloudbees.com (JIRA)' via Jenkins Issues
Title: Message Title


 
 
 
 

 
 
 

 
   
 Daniel Beck updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-61937  
 
 
  hpi:run fails on Java 8 when the plugin depends on 2.230+   
 

  
 
 
 
 

 
Change By: 
 Daniel Beck  
 

  
 
 
 
 

 
 [https://github.com/jenkinsci/jenkins/pull/3947/files#r408456990] Steps to reproduce:Use the following {{~/.m2/settings.xml}}:{noformat} xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">   cert-snapshots  trueJENKINS-61937 https://repo.jenkins-ci.org/JENKINS-61937/  true   true {noformat}The specified repository is configured to always return 401 or 403 for all resolutions due to referencing a repository no non-admin user has access to.Result when building current matrix-auth-plugin with a patched 2.230 core dependency:{noformat}[INFO] --- maven-hpi-plugin:3.12:run (default-cli) @ matrix-auth ---[INFO] Logging initialized @7418ms to org.eclipse.jetty.util.log.Slf4jLog[INFO] Generating /Users/danielbeck/Repositories/github.com/daniel-beck/matrix-auth-plugin/work/plugins/matrix-auth.hplDownloading from JENKINS-61937: https://repo.jenkins-ci.org/JENKINS-61937/com/sun/tools/1.8.0/tools-1.8.0.pom[WARNING] Error resolving project artifact: Could not transfer artifact com.sun:tools:pom:1.8.0 from/to JENKINS-61937 (https://repo.jenkins-ci.org/JENKINS-61937/): Not authorized for project com.sun:tools:jar:1.8.0[INFO] Copying dependency Jenkins plugin /Users/danielbeck/.m2/repository/org/jenkins-ci/plugins/structs/1.19/structs-1.19.hpi[INFO] Copying dependency Jenkins plugin /Users/danielbeck/.m2/repository/org/jenkins-ci/plugins/workflow/workflow-multibranch/2.10/workflow-multibranch-2.10.hpi[INFO] Copying dependency Jenkins plugin /Users/danielbeck/.m2/repository/org/jenkins-ci/plugins/workflow/workflow-job/2.7/workflow-job-2.7.hpi[INFO] Copying dependency Jenkins plugin /Users/danielbeck/.m2/repository/org/jenkins-ci/plugins/job-dsl/1.76/job-dsl-1.76.hpi[INFO] Copying dependency Jenkins plugin /Users/danielbeck/.m2/repository/org/jenkins-ci/plugins/branch-api/2.0.0/branch-api-2.0.0.hpi[INFO] [INFO] BUILD FAILURE[INFO] [INFO] Total time:  7.945 s[INFO] Finished at: 2020-05-08T20:07:00+02:00[INFO] [ERROR] Failed to execute goal org.jenkins-ci.tools:maven-hpi-plugin:3.12:run (default-cli) on project matrix-auth: Unable to copy dependency plugin: Failed to open artifact com.sun:tools:jar:1.8.0:system at /Library/Java/JavaVirtualMachines/adoptopenjdk-8.jdk/Contents/Home/jre/../lib/tools.jar: org.apache.maven.project.ProjectBuildingException: Error resolving project artifact: Failure to transfer com.sun:tools:pom:1.8.0 from https://repo.jenkins-ci.org/JENKINS-61937/ was cached in the local repository, resolution will not be reattempted until the update interval of JENKINS-61937 has elapsed or updates are forced. Original 

[JIRA] (JENKINS-62202) Users without Overall/Administer can no longer configure permissions of jobs etc.

2020-05-08 Thread 'db...@cloudbees.com (JIRA)' via Jenkins Issues
Title: Message Title


 
 
 
 

 
 
 

 
   
 Daniel Beck updated  JENKINS-62202  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Fixed in 2.6.1 which should be available shortly.  
 

  
 
 
 
 

 
 Jenkins /  JENKINS-62202  
 
 
  Users without Overall/Administer can no longer configure permissions of jobs etc.   
 

  
 
 
 
 

 
Change By: 
 Daniel Beck  
 
 
Status: 
 In Review Closed  
 
 
Resolution: 
 Fixed  
 
 
Released As: 
 matrix-auth-2.6.1  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.13.12#713012-sha1:6e07c38)  
 
 

 
   
 

  
 

  
 

   





-- 
You 

[JIRA] (JENKINS-62195) ec2-1.50.2 doesn't work with SSH <7.5

2020-05-08 Thread 'db...@cloudbees.com (JIRA)' via Jenkins Issues
Title: Message Title


 
 
 
 

 
 
 

 
   
 Daniel Beck commented on  JENKINS-62195  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: ec2-1.50.2 doesn't work with SSH <7.5   
 

  
 
 
 
 

 
 Oleg Nenashev As this problem seems to occur because of very outdated base images, it's reasonable to inform the SIG about the consequences of that.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.13.12#713012-sha1:6e07c38)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-issues/JIRA.206127.1588831961000.23644.1588945140348%40Atlassian.JIRA.


[JIRA] (JENKINS-61779) Regression: Job stuck in queue waiting forever after upgrade

2020-05-08 Thread 'db...@cloudbees.com (JIRA)' via Jenkins Issues
Title: Message Title


 
 
 
 

 
 
 

 
   
 Daniel Beck commented on  JENKINS-61779  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Regression: Job stuck in queue waiting forever after upgrade   
 

  
 
 
 
 

 
 Alain Campeau Thanks for these steps, I'll try to reproduce them when I have some time. About 

 
Configure this job's "Restrict where this project can run" setting so its "Label _expression_" value is the one specified for master, so DISPATCH 
 
 What happens when you don't check that box, or specify "master" here? Would that be a viable workaround for this problem, and if not, why not?  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.13.12#713012-sha1:6e07c38)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-issues/JIRA.205618.158582599.23545.1588928940171%40Atlassian.JIRA.


[JIRA] (JENKINS-62202) Users without Overall/Administer can no longer configure permissions of jobs etc.

2020-05-07 Thread 'db...@cloudbees.com (JIRA)' via Jenkins Issues
Title: Message Title


 
 
 
 

 
 
 

 
   
 Daniel Beck updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-62202  
 
 
  Users without Overall/Administer can no longer configure permissions of jobs etc.   
 

  
 
 
 
 

 
Change By: 
 Daniel Beck  
 
 
Comment: 
 Please be more specific about your configuration, what you attempt to do, what you expect to happen, and what (doesn't) happen(s) instead.For example, I'm not aware of a "Add/Remove button".  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.13.12#713012-sha1:6e07c38)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-issues/JIRA.206134.1588854661000.23372.155920363%40Atlassian.JIRA.


[JIRA] (JENKINS-62202) Users without Overall/Administer can no longer configure permissions of jobs etc.

2020-05-07 Thread 'db...@cloudbees.com (JIRA)' via Jenkins Issues
Title: Message Title


 
 
 
 

 
 
 

 
   
 Daniel Beck started work on  JENKINS-62202  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
Change By: 
 Daniel Beck  
 
 
Status: 
 Open In Progress  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.13.12#713012-sha1:6e07c38)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-issues/JIRA.206134.1588854661000.23366.155680420%40Atlassian.JIRA.


[JIRA] (JENKINS-62202) Users without Overall/Administer can no longer configure permissions of jobs etc.

2020-05-07 Thread 'db...@cloudbees.com (JIRA)' via Jenkins Issues
Title: Message Title


 
 
 
 

 
 
 

 
   
 Daniel Beck updated  JENKINS-62202  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-62202  
 
 
  Users without Overall/Administer can no longer configure permissions of jobs etc.   
 

  
 
 
 
 

 
Change By: 
 Daniel Beck  
 
 
Status: 
 In  Progress  Review  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.13.12#713012-sha1:6e07c38)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-issues/JIRA.206134.1588854661000.23369.155680461%40Atlassian.JIRA.


[JIRA] (JENKINS-62202) Users without Overall/Administer can no longer configure permissions of jobs etc.

2020-05-07 Thread 'db...@cloudbees.com (JIRA)' via Jenkins Issues
Title: Message Title


 
 
 
 

 
 
 

 
   
 Daniel Beck updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-62202  
 
 
  Users without Overall/Administer can no longer configure permissions of jobs etc.   
 

  
 
 
 
 

 
Change By: 
 Daniel Beck  
 
 
Summary: 
 Latest plugin update (v2.6) removes ability for authorized personnel to add Users without Overall / remove users in Security Matrix Administer can no longer configure permissions  of  Folders and Jobs  jobs etc.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.13.12#713012-sha1:6e07c38)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-issues/JIRA.206134.1588854661000.23358.154600229%40Atlassian.JIRA.


[JIRA] (JENKINS-62202) Latest plugin update (v2.6) removes ability for authorized personnel to add/remove users in Security Matrix of Folders and Jobs

2020-05-07 Thread 'db...@cloudbees.com (JIRA)' via Jenkins Issues
Title: Message Title


 
 
 
 

 
 
 

 
   
 Daniel Beck updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-62202  
 
 
  Latest plugin update (v2.6) removes ability for authorized personnel to add/remove users in Security Matrix of Folders and Jobs   
 

  
 
 
 
 

 
Change By: 
 Daniel Beck  
 

  
 
 
 
 

 
 This affects project-based matrix authorization strategy:Users without Overall/Administer  (details tbd?)  do not see any UI controls except the table (no select/deselect all, no 'Add group/user', no 'remove' button); but checkboxes are enabled.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.13.12#713012-sha1:6e07c38)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-issues/JIRA.206134.1588854661000.23350.153460237%40Atlassian.JIRA.


[JIRA] (JENKINS-62202) Latest plugin update (v2.6) removes ability for authorized personnel to add/remove users in Security Matrix of Folders and Jobs

2020-05-07 Thread 'db...@cloudbees.com (JIRA)' via Jenkins Issues
Title: Message Title


 
 
 
 

 
 
 

 
   
 Daniel Beck commented on  JENKINS-62202  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Latest plugin update (v2.6) removes ability for authorized personnel to add/remove users in Security Matrix of Folders and Jobs   
 

  
 
 
 
 

 
 Caused by https://github.com/jenkinsci/matrix-auth-plugin/pull/78  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.13.12#713012-sha1:6e07c38)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-issues/JIRA.206134.1588854661000.23347.153400384%40Atlassian.JIRA.


[JIRA] (JENKINS-62202) Latest plugin update (v2.6) removes ability for authorized personnel to add/remove users in Security Matrix of Folders and Jobs

2020-05-07 Thread 'db...@cloudbees.com (JIRA)' via Jenkins Issues
Title: Message Title


 
 
 
 

 
 
 

 
   
 Daniel Beck updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-62202  
 
 
  Latest plugin update (v2.6) removes ability for authorized personnel to add/remove users in Security Matrix of Folders and Jobs   
 

  
 
 
 
 

 
Change By: 
 Daniel Beck  
 

  
 
 
 
 

 
 Steps to reproduce This affects project-based matrix authorization strategy : 1 Users without Overall/Administer (details tbd? )  Update Plugin from v2.5 to v2.6 and users that had  do not see any UI controls except  the  privileges to Add  table (no select / Remove users and groups to the security matrix in Folders and Jobs deselect all ,  lose the ability to change security within Folders and Jobs they already had access to do so, and the  no '  Add  group / Remove user', no 'remove'  button  disappears.Steps to fix:1 )  Revert back to v2 ; but checkboxes are enabled . 5 and the ability is restored.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.13.12#713012-sha1:6e07c38)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To 

[JIRA] (JENKINS-62202) Latest plugin update (v2.6) removes ability for authorized personnel to add/remove users in Security Matrix of Folders and Jobs

2020-05-07 Thread 'db...@cloudbees.com (JIRA)' via Jenkins Issues
Title: Message Title


 
 
 
 

 
 
 

 
   
 Daniel Beck updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-62202  
 
 
  Latest plugin update (v2.6) removes ability for authorized personnel to add/remove users in Security Matrix of Folders and Jobs   
 

  
 
 
 
 

 
Change By: 
 Daniel Beck  
 
 
Labels: 
 matrix matrix-auth security regression  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.13.12#713012-sha1:6e07c38)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-issues/JIRA.206134.1588854661000.23341.152740319%40Atlassian.JIRA.


[JIRA] (JENKINS-61779) Regression: Job stuck in queue waiting forever after upgrade

2020-05-07 Thread 'db...@cloudbees.com (JIRA)' via Jenkins Issues
Title: Message Title


 
 
 
 

 
 
 

 
   
 Daniel Beck updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-61779  
 
 
  Regression: Job stuck in queue waiting forever after upgrade   
 

  
 
 
 
 

 
Change By: 
 Daniel Beck  
 
 
Labels: 
 lts-candidate regression throttle  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.13.12#713012-sha1:6e07c38)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-issues/JIRA.205618.158582599.23330.152200299%40Atlassian.JIRA.


[JIRA] (JENKINS-61920) java.lang.ClassNotFoundException: javax.annotation.CheckForNull

2020-05-07 Thread 'db...@cloudbees.com (JIRA)' via Jenkins Issues
Title: Message Title


 
 
 
 

 
 
 

 
   
 Daniel Beck updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-61920  
 
 
  java.lang.ClassNotFoundException: javax.annotation.CheckForNull   
 

  
 
 
 
 

 
Change By: 
 Daniel Beck  
 
 
Labels: 
 java11 java11-compatibility  lts-candidate  regression  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.13.12#713012-sha1:6e07c38)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-issues/JIRA.205795.1586974471000.23319.152140470%40Atlassian.JIRA.


[JIRA] (JENKINS-62195) ec2-1.50.2 doesn't work with SSH <7.5

2020-05-07 Thread 'db...@cloudbees.com (JIRA)' via Jenkins Issues
Title: Message Title


 
 
 
 

 
 
 

 
   
 Daniel Beck commented on  JENKINS-62195  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: ec2-1.50.2 doesn't work with SSH <7.5   
 

  
 
 
 
 

 
 Oleg Nenashev FYA (platform SIG)  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.13.12#713012-sha1:6e07c38)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-issues/JIRA.206127.1588831961000.23313.152080323%40Atlassian.JIRA.


[JIRA] (JENKINS-62165) Space character at end of parameter name prevents dereferencing this parameter

2020-05-07 Thread 'db...@cloudbees.com (JIRA)' via Jenkins Issues
Title: Message Title


 
 
 
 

 
 
 

 
   
 Daniel Beck updated  JENKINS-62165  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-62165  
 
 
  Space character at end of parameter name prevents dereferencing this parameter   
 

  
 
 
 
 

 
Change By: 
 Daniel Beck  
 
 
Status: 
 Reopened Open  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.13.12#713012-sha1:6e07c38)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-issues/JIRA.206095.1588690989000.23308.152020284%40Atlassian.JIRA.


[JIRA] (JENKINS-62202) Latest plugin update (v2.6) removes ability for authorized personnel to add/remove users in Security Matrix of Folders and Jobs

2020-05-07 Thread 'db...@cloudbees.com (JIRA)' via Jenkins Issues
Title: Message Title


 
 
 
 

 
 
 

 
   
 Daniel Beck commented on  JENKINS-62202  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Latest plugin update (v2.6) removes ability for authorized personnel to add/remove users in Security Matrix of Folders and Jobs   
 

  
 
 
 
 

 
 Please be more specific about your configuration, what you attempt to do, what you expect to happen, and what (doesn't) happen(s) instead. For example, I'm not aware of a "Add/Remove button".  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.13.12#713012-sha1:6e07c38)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-issues/JIRA.206134.1588854661000.23163.1588857180379%40Atlassian.JIRA.


[JIRA] (JENKINS-62181) Remoting deadlock when launching remote agent

2020-05-07 Thread 'db...@cloudbees.com (JIRA)' via Jenkins Issues
Title: Message Title


 
 
 
 

 
 
 

 
   
 Daniel Beck commented on  JENKINS-62181  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Remoting deadlock when launching remote agent
 

  
 
 
 
 

 
 FYI Jesse Glick since your change is mentioned.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.13.12#713012-sha1:6e07c38)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-issues/JIRA.206113.1588790553000.23111.1588840740184%40Atlassian.JIRA.


[JIRA] (JENKINS-62178) Manage Jenkins- New version of Jenkins (xxx) is available for download (changelog). changelog link is not the same whth download link in lts-realse

2020-05-07 Thread 'db...@cloudbees.com (JIRA)' via Jenkins Issues
Title: Message Title


 
 
 
 

 
 
 

 
   
 Daniel Beck closed an issue as Not A Defect  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 You've defined a custom update site URL in the plugin manager, so you get non-LTS versioned offered. On the other hand, the changelog URL we link to is integrated in Jenkins and matches the current release line. Update sites do not advertise changelog URLs with updates, so this is the best possible. There's certainly not a critical bug here.  
 

  
 
 
 
 

 
 Jenkins /  JENKINS-62178  
 
 
  Manage Jenkins- New version of Jenkins (xxx) is available for download (changelog). changelog link is not the same whth download link in lts-realse   
 

  
 
 
 
 

 
Change By: 
 Daniel Beck  
 
 
Status: 
 Open Closed  
 
 
Resolution: 
 Not A Defect  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.13.12#713012-sha1:6e07c38)  
 
 

 
   
 

  
  

[JIRA] (JENKINS-62163) 'Available' plugin manager tab keeps showing "Plugin list is loading..." in IE11

2020-05-06 Thread 'db...@cloudbees.com (JIRA)' via Jenkins Issues
Title: Message Title


 
 
 
 

 
 
 

 
   
 Daniel Beck updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-62163  
 
 
  'Available' plugin manager tab keeps showing "Plugin list is loading..." in IE11   
 

  
 
 
 
 

 
Change By: 
 Daniel Beck  
 
 
Summary: 
 ' Available '  plugin  manager tab  keeps showing "Plugin list is loading..." in IE11  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.13.12#713012-sha1:6e07c38)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-issues/JIRA.206092.158868000.22991.1588800780276%40Atlassian.JIRA.


[JIRA] (JENKINS-62163) Available plugin keeps showing "Plugin list is loading..." in IE11

2020-05-06 Thread 'db...@cloudbees.com (JIRA)' via Jenkins Issues
Title: Message Title


 
 
 
 

 
 
 

 
   
 Daniel Beck updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-62163  
 
 
  Available plugin keeps showing "Plugin list is loading..." in IE11   
 

  
 
 
 
 

 
Change By: 
 Daniel Beck  
 
 
Summary: 
 Jenkins 2.235|| Available plugin keeps  loading as  showing  "Plugin list is loading..."  in IE11  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.13.12#713012-sha1:6e07c38)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-issues/JIRA.206092.158868000.22987.1588800721568%40Atlassian.JIRA.


[JIRA] (JENKINS-62163) Jenkins 2.235||Available plugin keeps loading as "Plugin list is loading..."

2020-05-06 Thread 'db...@cloudbees.com (JIRA)' via Jenkins Issues
Title: Message Title


 
 
 
 

 
 
 

 
   
 Daniel Beck updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-62163  
 
 
  Jenkins 2.235||Available plugin keeps loading as "Plugin list is loading..."   
 

  
 
 
 
 

 
Change By: 
 Daniel Beck  
 
 
Labels: 
 lts-candidate regression  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.13.12#713012-sha1:6e07c38)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-issues/JIRA.206092.158868000.22979.1588800720828%40Atlassian.JIRA.


[JIRA] (JENKINS-62163) Jenkins 2.235||Available plugin keeps loading as "Plugin list is loading..."

2020-05-06 Thread 'db...@cloudbees.com (JIRA)' via Jenkins Issues
Title: Message Title


 
 
 
 

 
 
 

 
   
 Daniel Beck updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-62163  
 
 
  Jenkins 2.235||Available plugin keeps loading as "Plugin list is loading..."   
 

  
 
 
 
 

 
Change By: 
 Daniel Beck  
 
 
Priority: 
 Blocker Major  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.13.12#713012-sha1:6e07c38)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-issues/JIRA.206092.158868000.22983.1588800721091%40Atlassian.JIRA.


[JIRA] (JENKINS-62163) Jenkins 2.235||Available plugin keeps loading as "Plugin list is loading..."

2020-05-06 Thread 'db...@cloudbees.com (JIRA)' via Jenkins Issues
Title: Message Title


 
 
 
 

 
 
 

 
   
 Daniel Beck updated  JENKINS-62163  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-62163  
 
 
  Jenkins 2.235||Available plugin keeps loading as "Plugin list is loading..."   
 

  
 
 
 
 

 
Change By: 
 Daniel Beck  
 
 
Status: 
 In  Progress  Review  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.13.12#713012-sha1:6e07c38)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-issues/JIRA.206092.158868000.22975.1588800660342%40Atlassian.JIRA.


[JIRA] (JENKINS-62163) Jenkins 2.235||Available plugin keeps loading as "Plugin list is loading..."

2020-05-06 Thread 'db...@cloudbees.com (JIRA)' via Jenkins Issues
Title: Message Title


 
 
 
 

 
 
 

 
   
 Daniel Beck assigned an issue to Daniel Beck  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-62163  
 
 
  Jenkins 2.235||Available plugin keeps loading as "Plugin list is loading..."   
 

  
 
 
 
 

 
Change By: 
 Daniel Beck  
 
 
Assignee: 
 Daniel Beck  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.13.12#713012-sha1:6e07c38)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-issues/JIRA.206092.158868000.22957.158880407%40Atlassian.JIRA.


[JIRA] (JENKINS-62163) Jenkins 2.235||Available plugin keeps loading as "Plugin list is loading..."

2020-05-06 Thread 'db...@cloudbees.com (JIRA)' via Jenkins Issues
Title: Message Title


 
 
 
 

 
 
 

 
   
 Daniel Beck started work on  JENKINS-62163  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
Change By: 
 Daniel Beck  
 
 
Status: 
 Open In Progress  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.13.12#713012-sha1:6e07c38)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-issues/JIRA.206092.158868000.22961.158880458%40Atlassian.JIRA.