[jenkinsci/cctray-xml-plugin] 4f529a: chore(CODEOWNERS): add plugin development team

2023-11-20 Thread 'Rahul Somasunderam' via Jenkins Commits
  Branch: refs/heads/master
  Home:   https://github.com/jenkinsci/cctray-xml-plugin
  Commit: 4f529aee66e333e7e8d0e8d7b11b2e3e7699a6a7
  
https://github.com/jenkinsci/cctray-xml-plugin/commit/4f529aee66e333e7e8d0e8d7b11b2e3e7699a6a7
  Author: Steve Hill 
  Date:   2023-08-23 (Wed, 23 Aug 2023)

  Changed paths:
A .github/CODEOWNERS

  Log Message:
  ---
  chore(CODEOWNERS): add plugin development team

Use this link to re-run the recipe: 
https://app.moderne.io/recipes/org.openrewrite.jenkins.github.AddTeamToCodeowners

Co-authored-by: Moderne 


  Commit: 3d748900eae74a9a4448e23ecbe1fbd4fe235b39
  
https://github.com/jenkinsci/cctray-xml-plugin/commit/3d748900eae74a9a4448e23ecbe1fbd4fe235b39
  Author: Rahul Somasunderam 
  Date:   2023-11-20 (Mon, 20 Nov 2023)

  Changed paths:
A .github/CODEOWNERS

  Log Message:
  ---
  Merge pull request #44 from sghill-rewrite/conventions/codeowners

Add Plugin Development Team to CODEOWNERS


Compare: 
https://github.com/jenkinsci/cctray-xml-plugin/compare/56aa6f860c94...3d748900eae7

-- 
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 jenkinsci-commits+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-commits/jenkinsci/cctray-xml-plugin/push/refs/heads/master/56aa6f-3d7489%40github.com.


[jenkinsci/build-user-vars-plugin] 4da3c6: chore: Parallelize Tests (#108)

2023-10-05 Thread 'Rahul Somasunderam' via Jenkins Commits
  Branch: refs/heads/master
  Home:   https://github.com/jenkinsci/build-user-vars-plugin
  Commit: 4da3c680312f0c18c5777cb77cbfb0f8b6613ca7
  
https://github.com/jenkinsci/build-user-vars-plugin/commit/4da3c680312f0c18c5777cb77cbfb0f8b6613ca7
  Author: Rahul Somasunderam 
  Date:   2023-10-05 (Thu, 05 Oct 2023)

  Changed paths:
M pom.xml

  Log Message:
  ---
  chore: Parallelize Tests (#108)

This will use all available cores to run tests, and parallelize by all - 
suite/class/method.
On machines with multiple cores, this will vastly improve test performance.
These times are on my M1 MBP with 10 (8P + 2E) cores. They were reported by 
maven on running `mvn verify`.

I first ran `mvn verify` and ignored the time.
Then I ran it thrice without this change, and thrice with this change.

All times in seconds.

|| Run 1 | Run 2 | Run 3 | Average |
| -- | : | : | : | --: |
| Before |   119 |   120 |   120 | 120 |
| After  |61 |61 |62 |  61 |
| Savings|   |   |   |  59 |
| %  |   |   |   |  49 |

Co-authored-by: Name From Git-Plugin-Test 



-- 
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 jenkinsci-commits+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-commits/jenkinsci/build-user-vars-plugin/push/refs/heads/master/d55c08-4da3c6%40github.com.


[jenkinsci/configuration-as-code-plugin] 0dc7d1: chore: Parallelize Tests (#2315)

2023-08-20 Thread 'Rahul Somasunderam' via Jenkins Commits
  Branch: refs/heads/master
  Home:   https://github.com/jenkinsci/configuration-as-code-plugin
  Commit: 0dc7d187fe625ca8d08841d8f92d3392cc03a2d3
  
https://github.com/jenkinsci/configuration-as-code-plugin/commit/0dc7d187fe625ca8d08841d8f92d3392cc03a2d3
  Author: Rahul Somasunderam 
  Date:   2023-08-20 (Sun, 20 Aug 2023)

  Changed paths:
M pom.xml

  Log Message:
  ---
  chore: Parallelize Tests (#2315)

Co-authored-by: Name From Git-Plugin-Test 



-- 
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 jenkinsci-commits+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-commits/jenkinsci/configuration-as-code-plugin/push/refs/heads/master/de123f-0dc7d1%40github.com.


[jenkinsci/build-with-parameters-plugin] 05ea1a: chore: Parallelize Tests (#26)

2023-08-20 Thread 'Rahul Somasunderam' via Jenkins Commits
  Branch: refs/heads/master
  Home:   https://github.com/jenkinsci/build-with-parameters-plugin
  Commit: 05ea1a00a1a04afc9ad88c7c8f318b3143d87aeb
  
https://github.com/jenkinsci/build-with-parameters-plugin/commit/05ea1a00a1a04afc9ad88c7c8f318b3143d87aeb
  Author: Rahul Somasunderam 
  Date:   2023-08-20 (Sun, 20 Aug 2023)

  Changed paths:
M pom.xml

  Log Message:
  ---
  chore: Parallelize Tests (#26)

This will use all available cores to run tests, and parallelize by all - 
suite/class/method.
On machines with multiple cores, this will vastly improve test performance.
These times are on my M1 MBP with 10 (8P + 2E) cores. They were reported by 
maven on running `mvn verify`.

I first ran `mvn verify` and ignored the time.
Then I ran it thrice without this change, and thrice with this change.

All times in seconds.

|| Run 1 | Run 2 | Run 3 | Average |
| -- | : | : | : | --: |
| Before |21 |23 |22 |  22 |
| After  |15 |16 |18 |  16 |
| Savings|   |   |   |   6 |
| %  |   |   |   |  27 |

Co-authored-by: Name From Git-Plugin-Test 



-- 
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 jenkinsci-commits+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-commits/jenkinsci/build-with-parameters-plugin/push/refs/heads/master/f087df-05ea1a%40github.com.


[jenkinsci/azure-credentials-plugin] f7d12a: chore: Parallelize Tests (#206)

2023-08-12 Thread 'Rahul Somasunderam' via Jenkins Commits
  Branch: refs/heads/master
  Home:   https://github.com/jenkinsci/azure-credentials-plugin
  Commit: f7d12af1ab79973361ef6006be92b0c0e7eafe5f
  
https://github.com/jenkinsci/azure-credentials-plugin/commit/f7d12af1ab79973361ef6006be92b0c0e7eafe5f
  Author: Rahul Somasunderam 
  Date:   2023-08-12 (Sat, 12 Aug 2023)

  Changed paths:
M pom.xml

  Log Message:
  ---
  chore: Parallelize Tests (#206)

Co-authored-by: Name From Git-Plugin-Test 



-- 
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 jenkinsci-commits+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-commits/jenkinsci/azure-credentials-plugin/push/refs/heads/master/df3ee1-f7d12a%40github.com.


[jenkinsci/conditional-buildstep-plugin] aa8b48: chore: Parallelize Tests (#73)

2023-08-05 Thread 'Rahul Somasunderam' via Jenkins Commits
  Branch: refs/heads/master
  Home:   https://github.com/jenkinsci/conditional-buildstep-plugin
  Commit: aa8b48e8ae93aa602f8b8c319943c0291d3b337e
  
https://github.com/jenkinsci/conditional-buildstep-plugin/commit/aa8b48e8ae93aa602f8b8c319943c0291d3b337e
  Author: Rahul Somasunderam 
  Date:   2023-08-05 (Sat, 05 Aug 2023)

  Changed paths:
M Jenkinsfile

  Log Message:
  ---
  chore: Parallelize Tests (#73)

* chore: Parallelize Tests

This will use all available cores to run tests, and parallelize by all - 
suite/class/method.
On machines with multiple cores, this will vastly improve test performance.
These times are on my M1 MBP with 10 (8P + 2E) cores. They were reported by 
maven on running `mvn verify`.

I first ran `mvn verify` and ignored the time.
Then I ran it thrice without this change, and thrice with this change.

All times in seconds.

|| Run 1 | Run 2 | Run 3 | Average |
| -- | : | : | : | --: |
| Before |21 |21 |22 |  21 |
| After  |16 |16 |16 |  16 |
| Savings|   |   |   |   5 |
| %  |   |   |   |  24 |

* Move the forkCount definition into buildPlugin

Forcing the forkCount setting in the plugin pom will override the
value that a developer might set on their local computer based on the
configuration of that computer.

The configuration on ci.jenkins.io is known to have enough memory for
a JVM per core.  Use JVM per core on ci.jenkins.io for faster testing
and reduced costs.

-

Co-authored-by: Name From Git-Plugin-Test 

Co-authored-by: Mark Waite 


-- 
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 jenkinsci-commits+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-commits/jenkinsci/conditional-buildstep-plugin/push/refs/heads/master/418e35-aa8b48%40github.com.


[jenkinsci/active-choices-plugin] d6247d: fix: When configured using a pipeline, handle null...

2023-08-03 Thread 'Rahul Somasunderam' via Jenkins Commits
  Branch: refs/heads/master
  Home:   https://github.com/jenkinsci/active-choices-plugin
  Commit: d6247d2e80c7b0bd59cc6f3a63bf2519a845b349
  
https://github.com/jenkinsci/active-choices-plugin/commit/d6247d2e80c7b0bd59cc6f3a63bf2519a845b349
  Author: Rahul Somasunderam 
  Date:   2023-08-03 (Thu, 03 Aug 2023)

  Changed paths:
M src/main/java/org/biouno/unochoice/CascadeChoiceParameter.java
M src/main/java/org/biouno/unochoice/ChoiceParameter.java
M src/main/java/org/biouno/unochoice/DynamicReferenceParameter.java
M src/test/java/org/biouno/unochoice/TestCascadeChoiceParameter.java
M src/test/java/org/biouno/unochoice/TestChoiceParameter.java
M src/test/java/org/biouno/unochoice/TestDynamicReferenceParameter.java

  Log Message:
  ---
  fix: When configured using a pipeline, handle null filterable

When using pipelines, people tend to skip `filterable` as a parameter. That 
causes `filterable` to be set to `null`. Stapler would emit an empty string.

The prior behavior used javascript truthiness and treated it as `false`.

Since moving almost all javascript into separate files, the new behavior causes 
an empty string to be printed during the method call.

This change guarantees we emit a primitive `boolean` instead of a boxed 
`Boolean`.

Refs: JENKINS-71724


-- 
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 jenkinsci-commits+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-commits/jenkinsci/active-choices-plugin/push/refs/heads/master/d55f4b-d6247d%40github.com.


[jenkinsci/azure-ad-plugin] d79041: chore: Parallelize Tests (#436)

2023-08-01 Thread 'Rahul Somasunderam' via Jenkins Commits
  Branch: refs/heads/master
  Home:   https://github.com/jenkinsci/azure-ad-plugin
  Commit: d79041e1c4d7d0d781bc582cfc4109807bd644cc
  
https://github.com/jenkinsci/azure-ad-plugin/commit/d79041e1c4d7d0d781bc582cfc4109807bd644cc
  Author: Rahul Somasunderam 
  Date:   2023-08-01 (Tue, 01 Aug 2023)

  Changed paths:
M pom.xml

  Log Message:
  ---
  chore: Parallelize Tests (#436)

Co-authored-by: Name From Git-Plugin-Test 



-- 
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 jenkinsci-commits+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-commits/jenkinsci/azure-ad-plugin/push/refs/heads/master/d6e287-d79041%40github.com.


[jenkinsci/copyartifact-plugin] d68916: chore: Parallelize Tests (#197)

2023-07-31 Thread 'Rahul Somasunderam' via Jenkins Commits
  Branch: refs/heads/master
  Home:   https://github.com/jenkinsci/copyartifact-plugin
  Commit: d689167830db554e1e0a24ce7067aae1794af44d
  
https://github.com/jenkinsci/copyartifact-plugin/commit/d689167830db554e1e0a24ce7067aae1794af44d
  Author: Rahul Somasunderam 
  Date:   2023-07-31 (Mon, 31 Jul 2023)

  Changed paths:
M pom.xml

  Log Message:
  ---
  chore: Parallelize Tests (#197)

This will use all available cores to run tests, and parallelize by all - 
suite/class/method.
On machines with multiple cores, this will vastly improve test performance.
These times are on my M1 MBP with 10 (8P + 2E) cores. They were reported by 
maven on running `mvn verify`.

I first ran `mvn verify` and ignored the time.
Then I ran it thrice without this change, and thrice with this change.

All times in seconds.

|| Run 1 | Run 2 | Run 3 | Average |
| -- | : | : | : | --: |
| Before |   876 |   873 |   878 | 876 |
| After  |   300 |   300 |   301 | 300 |
| Savings|   |   |   | 576 |
| %  |   |   |   |  66 |

Co-authored-by: Name From Git-Plugin-Test 



-- 
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 jenkinsci-commits+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-commits/jenkinsci/copyartifact-plugin/push/refs/heads/master/599809-d68916%40github.com.


[jenkinsci/active-choices-plugin] fdea6b: refactor: Replace synchronous proxy with standard ...

2023-07-22 Thread 'Rahul Somasunderam' via Jenkins Commits
  Branch: refs/heads/master
  Home:   https://github.com/jenkinsci/active-choices-plugin
  Commit: fdea6b4298c100dc0c0519a9e7a0fe591f41535c
  
https://github.com/jenkinsci/active-choices-plugin/commit/fdea6b4298c100dc0c0519a9e7a0fe591f41535c
  Author: Rahul Somasunderam 
  Date:   2023-07-22 (Sat, 22 Jul 2023)

  Changed paths:
M package.json
M pom.xml
M src/main/resources/org/biouno/unochoice/CascadeChoiceParameter/index.jelly
M 
src/main/resources/org/biouno/unochoice/DynamicReferenceParameter/index.jelly
M src/main/resources/org/biouno/unochoice/stapler/unochoice/UnoChoice.es6
M src/test/java/org/biouno/unochoice/UiAcceptanceTest.java
M webpack.config.js
M yarn.lock

  Log Message:
  ---
  refactor: Replace synchronous proxy with standard proxy

The code in `makeStaplerProxy2` used `prototype.js` to create a synchronous 
version of the standard proxy that comes with Jenkins Core.

This code switches back to the standard proxy.
That requires making the code execute in the correct order when there were 
dependencies.
That is achieved by using `async`/`await` in the `.es6` code and transpiling it 
down to use Promises so HtmlUnit tests continue to work.

Refs: JENKINS-71365
Co-authored-by: Basil Crow 


-- 
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 jenkinsci-commits+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-commits/jenkinsci/active-choices-plugin/push/refs/heads/master/8c6de3-fdea6b%40github.com.


[jenkinsci/additional-metrics-plugin] 13f213: chore: Parallelize Tests

2023-07-21 Thread 'Rahul Somasunderam' via Jenkins Commits
  Branch: refs/heads/master
  Home:   https://github.com/jenkinsci/additional-metrics-plugin
  Commit: 13f21311f0ed1d912bfbd50d10989781e30a3fee
  
https://github.com/jenkinsci/additional-metrics-plugin/commit/13f21311f0ed1d912bfbd50d10989781e30a3fee
  Author: Rahul Somasunderam 
  Date:   2023-07-21 (Fri, 21 Jul 2023)

  Changed paths:
M pom.xml

  Log Message:
  ---
  chore: Parallelize Tests

This will use all available cores to run tests, and parallelize by all - 
suite/class/method.
On machines with multiple cores, this will vastly improve test performance.
These times are on my M1 MBP with 10 (8P + 2E) cores. They were reported by 
maven on running `mvn verify`.

I first ran `mvn verify` and ignored the time.
Then I ran it thrice without this change, and thrice with this change.

All times in seconds.

|| Run 1 | Run 2 | Run 3 | Average |
| -- | : | : | : | --: |
| Before |   296 |   294 |   295 | 295 |
| After  |67 |69 |62 |  66 |
| Savings|   |   |   | 229 |
| %  |   |   |   |  78 |


-- 
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 jenkinsci-commits+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-commits/jenkinsci/additional-metrics-plugin/push/refs/heads/master/47c58b-13f213%40github.com.


[jenkinsci/azure-storage-plugin] 1c348d: chore: Parallelize Tests (#263)

2023-07-18 Thread 'Rahul Somasunderam' via Jenkins Commits
  Branch: refs/heads/master
  Home:   https://github.com/jenkinsci/azure-storage-plugin
  Commit: 1c348d88e8396a58c7a69e4521f2ce3bd2ec0609
  
https://github.com/jenkinsci/azure-storage-plugin/commit/1c348d88e8396a58c7a69e4521f2ce3bd2ec0609
  Author: Rahul Somasunderam 
  Date:   2023-07-18 (Tue, 18 Jul 2023)

  Changed paths:
M pom.xml

  Log Message:
  ---
  chore: Parallelize Tests (#263)


-- 
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 jenkinsci-commits+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-commits/jenkinsci/azure-storage-plugin/push/refs/heads/master/bd4ba3-1c348d%40github.com.


[jenkinsci/build-time-blame-plugin] 3ba3ad: chore: Parallelize Tests (#56)

2023-07-17 Thread 'Rahul Somasunderam' via Jenkins Commits
  Branch: refs/heads/master
  Home:   https://github.com/jenkinsci/build-time-blame-plugin
  Commit: 3ba3ad2832b1455397daea904fbd42c9df19b975
  
https://github.com/jenkinsci/build-time-blame-plugin/commit/3ba3ad2832b1455397daea904fbd42c9df19b975
  Author: Rahul Somasunderam 
  Date:   2023-07-17 (Mon, 17 Jul 2023)

  Changed paths:
M pom.xml

  Log Message:
  ---
  chore: Parallelize Tests (#56)

This will use all available cores to run tests, and parallelize by all - 
suite/class/method.
On machines with multiple cores, this will vastly improve test performance.
These times are on my M1 MBP with 10 (8P + 2E) cores. They were reported by 
maven on running `mvn verify`.

I first ran `mvn verify` and ignored the time.
Then I ran it thrice without this change, and thrice with this change.

All times in seconds.

|| Run 1 | Run 2 | Run 3 | Average |
| -- | : | : | : | --: |
| Before |24 |24 |25 |  24 |
| After  |17 |16 |16 |  16 |
| Savings|   |   |   |   8 |
| %  |   |   |   |  33 |

Co-authored-by: Name From Git-Plugin-Test 



-- 
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 jenkinsci-commits+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-commits/jenkinsci/build-time-blame-plugin/push/refs/heads/master/5031de-3ba3ad%40github.com.


[jenkinsci/configurationslicing-plugin] 1b0c83: chore: Parallelize Tests (#215)

2023-07-17 Thread 'Rahul Somasunderam' via Jenkins Commits
  Branch: refs/heads/master
  Home:   https://github.com/jenkinsci/configurationslicing-plugin
  Commit: 1b0c83e7b00e71a3263fcaa27b871aa6e51891a2
  
https://github.com/jenkinsci/configurationslicing-plugin/commit/1b0c83e7b00e71a3263fcaa27b871aa6e51891a2
  Author: Rahul Somasunderam 
  Date:   2023-07-17 (Mon, 17 Jul 2023)

  Changed paths:
M pom.xml

  Log Message:
  ---
  chore: Parallelize Tests (#215)

This will use all available cores to run tests, and parallelize by all - 
suite/class/method.
On machines with multiple cores, this will vastly improve test performance.
These times are on my M1 MBP with 10 (8P + 2E) cores. They were reported by 
maven on running `mvn verify`.

I first ran `mvn verify` and ignored the time.
Then I ran it thrice without this change, and thrice with this change.

All times in seconds.

|| Run 1 | Run 2 | Run 3 | Average |
| -- | : | : | : | --: |
| Before |94 |98 |96 |  96 |
| After  |32 |32 |31 |  32 |
| Savings|   |   |   |  64 |
| %  |   |   |   |  67 |

Co-authored-by: Name From Git-Plugin-Test 



-- 
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 jenkinsci-commits+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-commits/jenkinsci/configurationslicing-plugin/push/refs/heads/master/ed6c59-1b0c83%40github.com.


[jenkinsci/azure-vm-agents-plugin] c720e0: chore: Parallelize Tests (#440)

2023-07-17 Thread 'Rahul Somasunderam' via Jenkins Commits
  Branch: refs/heads/master
  Home:   https://github.com/jenkinsci/azure-vm-agents-plugin
  Commit: c720e014de2f5e0e1607267a85aef4824ecc2ea3
  
https://github.com/jenkinsci/azure-vm-agents-plugin/commit/c720e014de2f5e0e1607267a85aef4824ecc2ea3
  Author: Rahul Somasunderam 
  Date:   2023-07-17 (Mon, 17 Jul 2023)

  Changed paths:
M pom.xml

  Log Message:
  ---
  chore: Parallelize Tests (#440)

Co-authored-by: Name From Git-Plugin-Test 



-- 
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 jenkinsci-commits+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-commits/jenkinsci/azure-vm-agents-plugin/push/refs/heads/master/a5d74e-c720e0%40github.com.


[jenkinsci/claim-plugin] 0d955c: chore: Parallelize Tests (#250)

2023-07-16 Thread 'Rahul Somasunderam' via Jenkins Commits
  Branch: refs/heads/master
  Home:   https://github.com/jenkinsci/claim-plugin
  Commit: 0d955cefc5b459b7e8d822198a48a2a566295bd3
  
https://github.com/jenkinsci/claim-plugin/commit/0d955cefc5b459b7e8d822198a48a2a566295bd3
  Author: Rahul Somasunderam 
  Date:   2023-07-17 (Mon, 17 Jul 2023)

  Changed paths:
M pom.xml

  Log Message:
  ---
  chore: Parallelize Tests (#250)

This will use all available cores to run tests, and parallelize by all - 
suite/class/method.
On machines with multiple cores, this will vastly improve test performance.
These times are on my M1 MBP with 10 (8P + 2E) cores. They were reported by 
maven on running `mvn verify`.

I first ran `mvn verify` and ignored the time.
Then I ran it thrice without this change, and thrice with this change.

All times in seconds.

|| Run 1 | Run 2 | Run 3 | Average |
| -- | : | : | : | --: |
| Before |   203 |   203 |   208 | 205 |
| After  |95 |98 |94 |  96 |
| Savings|   |   |   | 109 |
| %  |   |   |   |  53 |

Co-authored-by: Name From Git-Plugin-Test 



-- 
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 jenkinsci-commits+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-commits/jenkinsci/claim-plugin/push/refs/heads/master/43c45b-0d955c%40github.com.


[jenkinsci/badge-plugin] 38440b: chore: Parallelize Tests (#105)

2023-07-16 Thread 'Rahul Somasunderam' via Jenkins Commits
  Branch: refs/heads/master
  Home:   https://github.com/jenkinsci/badge-plugin
  Commit: 38440b1c22f0fee97ff95e7891122c381894cb14
  
https://github.com/jenkinsci/badge-plugin/commit/38440b1c22f0fee97ff95e7891122c381894cb14
  Author: Rahul Somasunderam 
  Date:   2023-07-16 (Sun, 16 Jul 2023)

  Changed paths:
M pom.xml

  Log Message:
  ---
  chore: Parallelize Tests (#105)

This will use all available cores to run tests, and parallelize by all - 
suite/class/method.
On machines with multiple cores, this will vastly improve test performance.
These times are on my M1 MBP with 10 (8P + 2E) cores. They were reported by 
maven on running `mvn verify`.

I first ran `mvn verify` and ignored the time.
Then I ran it thrice without this change, and thrice with this change.

All times in seconds.

|| Run 1 | Run 2 | Run 3 | Average |
| -- | : | : | : | --: |
| Before |62 |61 |61 |  61 |
| After  |24 |23 |23 |  23 |
| Savings|   |   |   |  38 |
| %  |   |   |   |  62 |

Co-authored-by: Name From Git-Plugin-Test 



-- 
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 jenkinsci-commits+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-commits/jenkinsci/badge-plugin/push/refs/heads/master/6482d3-38440b%40github.com.


[jenkinsci/authorize-project-plugin] 6b71cc: chore: Parallelize Tests (#167)

2023-07-16 Thread 'Rahul Somasunderam' via Jenkins Commits
  Branch: refs/heads/master
  Home:   https://github.com/jenkinsci/authorize-project-plugin
  Commit: 6b71cc155203c53b56c62ea8ec37b64ebeb9a7cf
  
https://github.com/jenkinsci/authorize-project-plugin/commit/6b71cc155203c53b56c62ea8ec37b64ebeb9a7cf
  Author: Rahul Somasunderam 
  Date:   2023-07-16 (Sun, 16 Jul 2023)

  Changed paths:
M pom.xml

  Log Message:
  ---
  chore: Parallelize Tests (#167)

This will use all available cores to run tests, and parallelize by all - 
suite/class/method.
On machines with multiple cores, this will vastly improve test performance.
These times are on my M1 MBP with 10 (8P + 2E) cores. They were reported by 
maven on running `mvn verify`.

I first ran `mvn verify` and ignored the time.
Then I ran it thrice without this change, and thrice with this change.

All times in seconds.

|| Run 1 | Run 2 | Run 3 | Average |
| -- | : | : | : | --: |
| Before |   253 |   253 |   253 | 253 |
| After  |   102 |   101 |   101 | 101 |
| Savings|   |   |   | 152 |
| %  |   |   |   |  60 |


-- 
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 jenkinsci-commits+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-commits/jenkinsci/authorize-project-plugin/push/refs/heads/master/a46b6f-6b71cc%40github.com.


[jenkinsci/ansible-plugin] 0abe7c: chore: Parallelize Tests (#99)

2023-07-16 Thread 'Rahul Somasunderam' via Jenkins Commits
  Branch: refs/heads/main
  Home:   https://github.com/jenkinsci/ansible-plugin
  Commit: 0abe7ca4eaf90c3c017505f217e60d1b2b68a871
  
https://github.com/jenkinsci/ansible-plugin/commit/0abe7ca4eaf90c3c017505f217e60d1b2b68a871
  Author: Rahul Somasunderam 
  Date:   2023-07-16 (Sun, 16 Jul 2023)

  Changed paths:
M pom.xml

  Log Message:
  ---
  chore: Parallelize Tests (#99)

This will use all available cores to run tests, and parallelize by all - 
suite/class/method.
On machines with multiple cores, this will vastly improve test performance.
These times are on my M1 MBP with 10 (8P + 2E) cores. They were reported by 
maven on running `mvn verify`.

I first ran `mvn verify` and ignored the time.
Then I ran it thrice without this change, and thrice with this change.

All times in seconds.

|| Run 1 | Run 2 | Run 3 | Average |
| -- | : | : | : | --: |
| Before |47 |47 |47 |  47 |
| After  |25 |25 |25 |  25 |
| Savings|   |   |   |  22 |
| %  |   |   |   |  47 |


-- 
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 jenkinsci-commits+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-commits/jenkinsci/ansible-plugin/push/refs/heads/main/fd973b-0abe7c%40github.com.


[jenkinsci/job-config-history-plugin] 7a79fc: Clear reason before rendering config page (#303)

2023-07-14 Thread 'Rahul Somasunderam' via Jenkins Commits
  Branch: refs/heads/master
  Home:   https://github.com/jenkinsci/job-config-history-plugin
  Commit: 7a79fc4dc01f62d726025eddfefc1f3770b41c31
  
https://github.com/jenkinsci/job-config-history-plugin/commit/7a79fc4dc01f62d726025eddfefc1f3770b41c31
  Author: Rahul Somasunderam 
  Date:   2023-07-14 (Fri, 14 Jul 2023)

  Changed paths:
M src/main/java/hudson/plugins/jobConfigHistory/JobLocalConfiguration.java

  Log Message:
  ---
  Clear reason before rendering config page (#303)


-- 
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 jenkinsci-commits+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-commits/jenkinsci/job-config-history-plugin/push/refs/heads/master/bd38b1-7a79fc%40github.com.


[jenkinsci/job-config-history-plugin] bd38b1: fix: Make preformatted html less blocky (#302)

2023-07-14 Thread 'Rahul Somasunderam' via Jenkins Commits
  Branch: refs/heads/master
  Home:   https://github.com/jenkinsci/job-config-history-plugin
  Commit: bd38b1296e35aef73dc106ded71c89b93f648f36
  
https://github.com/jenkinsci/job-config-history-plugin/commit/bd38b1296e35aef73dc106ded71c89b93f648f36
  Author: Rahul Somasunderam 
  Date:   2023-07-14 (Fri, 14 Jul 2023)

  Changed paths:
M src/main/webapp/css/style.css

  Log Message:
  ---
  fix: Make preformatted html less blocky (#302)


-- 
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 jenkinsci-commits+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-commits/jenkinsci/job-config-history-plugin/push/refs/heads/master/60bddc-bd38b1%40github.com.


[jenkinsci/job-config-history-plugin] 60bddc: docs: Set param descriptions that were missing (#305)

2023-07-14 Thread 'Rahul Somasunderam' via Jenkins Commits
  Branch: refs/heads/master
  Home:   https://github.com/jenkinsci/job-config-history-plugin
  Commit: 60bddc7c318b27596201f5d107be5359f71304e6
  
https://github.com/jenkinsci/job-config-history-plugin/commit/60bddc7c318b27596201f5d107be5359f71304e6
  Author: Rahul Somasunderam 
  Date:   2023-07-14 (Fri, 14 Jul 2023)

  Changed paths:
M src/main/java/hudson/plugins/jobConfigHistory/ItemListenerHistoryDao.java

  Log Message:
  ---
  docs: Set param descriptions that were missing (#305)


-- 
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 jenkinsci-commits+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-commits/jenkinsci/job-config-history-plugin/push/refs/heads/master/fa4e81-60bddc%40github.com.


[jenkinsci/job-config-history-plugin] fa4e81: chore: Parallelize tests (#304)

2023-07-14 Thread 'Rahul Somasunderam' via Jenkins Commits
  Branch: refs/heads/master
  Home:   https://github.com/jenkinsci/job-config-history-plugin
  Commit: fa4e8196bdf836e23962a1c1f5d4e58d00a52091
  
https://github.com/jenkinsci/job-config-history-plugin/commit/fa4e8196bdf836e23962a1c1f5d4e58d00a52091
  Author: Rahul Somasunderam 
  Date:   2023-07-14 (Fri, 14 Jul 2023)

  Changed paths:
M pom.xml

  Log Message:
  ---
  chore: Parallelize tests (#304)


-- 
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 jenkinsci-commits+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-commits/jenkinsci/job-config-history-plugin/push/refs/heads/master/fd1bdb-fa4e81%40github.com.


[jenkinsci/git-parameter-plugin] ce9bc7: refactor: Do not rely on prototype.js (#98)

2023-07-11 Thread 'Rahul Somasunderam' via Jenkins Commits
  Branch: refs/heads/master
  Home:   https://github.com/jenkinsci/git-parameter-plugin
  Commit: ce9bc7b541657e196494b80edc1b7e6ec42f11dc
  
https://github.com/jenkinsci/git-parameter-plugin/commit/ce9bc7b541657e196494b80edc1b7e6ec42f11dc
  Author: Rahul Somasunderam 
  Date:   2023-07-11 (Tue, 11 Jul 2023)

  Changed paths:
M 
src/main/resources/net/uaznia/lukanus/hudson/plugins/gitparameter/javascript/git-parameter-select.js
M 
src/main/resources/net/uaznia/lukanus/hudson/plugins/gitparameter/javascript/git-parameter.js

  Log Message:
  ---
  refactor: Do not rely on prototype.js (#98)

Co-authored-by: Basil Crow 


-- 
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 jenkinsci-commits+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-commits/jenkinsci/git-parameter-plugin/push/refs/heads/master/935a3d-ce9bc7%40github.com.


[jenkinsci/git-parameter-plugin] 65217a: test: Add UI Acceptance test (#97)

2023-07-11 Thread 'Rahul Somasunderam' via Jenkins Commits
  Branch: refs/heads/master
  Home:   https://github.com/jenkinsci/git-parameter-plugin
  Commit: 65217a4e4c6fd33f72abef3a83c038c31f10629c
  
https://github.com/jenkinsci/git-parameter-plugin/commit/65217a4e4c6fd33f72abef3a83c038c31f10629c
  Author: Rahul Somasunderam 
  Date:   2023-07-11 (Tue, 11 Jul 2023)

  Changed paths:
M pom.xml
A 
src/test/java/net/uaznia/lukanus/hudson/plugins/gitparameter/UiAcceptanceTest.java
A 
src/test/resources/net/uaznia/lukanus/hudson/plugins/gitparameter/UiAcceptanceTest/test/jobs/test/config.xml

  Log Message:
  ---
  test: Add UI Acceptance test (#97)


-- 
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 jenkinsci-commits+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-commits/jenkinsci/git-parameter-plugin/push/refs/heads/master/1d2172-65217a%40github.com.


[jenkinsci/active-choices-plugin] 85324d: refactor: Move (most) javascript out of jelly files

2023-07-04 Thread 'Rahul Somasunderam' via Jenkins Commits
  Branch: refs/heads/master
  Home:   https://github.com/jenkinsci/active-choices-plugin
  Commit: 85324dab29bdee1f9dcfe1e25ec3971b67bde9a7
  
https://github.com/jenkinsci/active-choices-plugin/commit/85324dab29bdee1f9dcfe1e25ec3971b67bde9a7
  Author: Rahul Somasunderam 
  Date:   2023-07-04 (Tue, 04 Jul 2023)

  Changed paths:
M src/main/resources/org/biouno/unochoice/CascadeChoiceParameter/index.jelly
M src/main/resources/org/biouno/unochoice/ChoiceParameter/index.jelly
M 
src/main/resources/org/biouno/unochoice/DynamicReferenceParameter/index.jelly
M src/main/resources/org/biouno/unochoice/stapler/unochoice/UnoChoice.es6

  Log Message:
  ---
  refactor: Move (most) javascript out of jelly files

We're limited in what we can do in jelly files.
There are tests that use HtmlUnit and it does not support enough modern JS 
features.

This change will allow us to use modern JS to write code, and transpile it to 
something that all the older browsers support and HtmlUnit does not error out.


-- 
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 jenkinsci-commits+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-commits/jenkinsci/active-choices-plugin/push/refs/heads/master/83a0e4-85324d%40github.com.


[jenkinsci/active-choices-plugin] 83a0e4: test: Introduce tests for (some) javascript code

2023-07-03 Thread 'Rahul Somasunderam' via Jenkins Commits
  Branch: refs/heads/master
  Home:   https://github.com/jenkinsci/active-choices-plugin
  Commit: 83a0e40a25d714a4f8f9f9b599032bf09f152cf4
  
https://github.com/jenkinsci/active-choices-plugin/commit/83a0e40a25d714a4f8f9f9b599032bf09f152cf4
  Author: Rahul Somasunderam 
  Date:   2023-07-03 (Mon, 03 Jul 2023)

  Changed paths:
A .editorconfig
M .gitignore
A .mvn_exec_yarn
M CHANGES.md
A package.json
M pom.xml
M src/main/resources/org/biouno/unochoice/stapler/unochoice.jelly
A src/main/resources/org/biouno/unochoice/stapler/unochoice/UnoChoice.es6
A src/main/resources/org/biouno/unochoice/stapler/unochoice/Util.ts
R src/main/resources/org/biouno/unochoice/stapler/unochoice/unochoice.js
A src/test/js/Util.test.ts
A tsconfig.json
A webpack.config.js
A yarn.lock

  Log Message:
  ---
  test: Introduce tests for (some) javascript code

This extracts some code out to `Util.ts` and tests it using jest in 
`Util.test.ts`.
`unochoice.js` has been renamed to `UnoChoice.es6` so we can synthesize 
`UnoChoice.js`.


-- 
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 jenkinsci-commits+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-commits/jenkinsci/active-choices-plugin/push/refs/heads/master/1a89c3-83a0e4%40github.com.


[jenkinsci/active-choices-plugin] a88373: chore: Parallelize Unit tests

2023-06-23 Thread 'Rahul Somasunderam' via Jenkins Commits
  Branch: refs/heads/master
  Home:   https://github.com/jenkinsci/active-choices-plugin
  Commit: a883738ccafbdb67e8c2a15d98f788fb89852694
  
https://github.com/jenkinsci/active-choices-plugin/commit/a883738ccafbdb67e8c2a15d98f788fb89852694
  Author: Rahul Somasunderam 
  Date:   2023-06-23 (Fri, 23 Jun 2023)

  Changed paths:
M pom.xml

  Log Message:
  ---
  chore: Parallelize Unit tests

This allows the tests to use all available cores.
On my M1 MBP, the time to run `mvn verify` went from about `3m52s` to about 
`53s`.


-- 
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 jenkinsci-commits+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-commits/jenkinsci/active-choices-plugin/push/refs/heads/master/71e46f-a88373%40github.com.


[jenkinsci/active-choices-plugin] 8e0926: test: Add end-to-end tests for UI behavior

2023-06-19 Thread 'Rahul Somasunderam' via Jenkins Commits
  Branch: refs/heads/master
  Home:   https://github.com/jenkinsci/active-choices-plugin
  Commit: 8e0926628a3073015a77fad4573c79691612f559
  
https://github.com/jenkinsci/active-choices-plugin/commit/8e0926628a3073015a77fad4573c79691612f559
  Author: Rahul Somasunderam 
  Date:   2023-06-19 (Mon, 19 Jun 2023)

  Changed paths:
M pom.xml
A src/test/java/org/biouno/unochoice/UiAcceptanceTest.java
A src/test/resources/test-config.xml

  Log Message:
  ---
  test: Add end-to-end tests for UI behavior

I want to remove the dependency on Prototype so this plugin is compatible with 
Jenkins 2.401 and above.
Before I do that, I want to write an end-to-end test.


-- 
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 jenkinsci-commits+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-commits/jenkinsci/active-choices-plugin/push/refs/heads/master/55afbd-8e0926%40github.com.


[jenkinsci/cctray-xml-plugin] 3c4391: docs: Link to latest release on plugins.jenkins.io

2023-04-01 Thread 'Rahul Somasunderam' via Jenkins Commits
  Branch: refs/heads/master
  Home:   https://github.com/jenkinsci/cctray-xml-plugin
  Commit: 3c4391de18a37ea8e1a625e5ad6472129d7b35e0
  
https://github.com/jenkinsci/cctray-xml-plugin/commit/3c4391de18a37ea8e1a625e5ad6472129d7b35e0
  Author: Rahul Somasunderam 
  Date:   2023-04-01 (Sat, 01 Apr 2023)

  Changed paths:
M README.md

  Log Message:
  ---
  docs: Link to latest release on plugins.jenkins.io


-- 
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 jenkinsci-commits+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-commits/jenkinsci/cctray-xml-plugin/push/refs/heads/master/22fa7b-3c4391%40github.com.


[jenkinsci/cctray-xml-plugin] e073d2: chore: Remove condition for quarterly release

2023-02-25 Thread 'Rahul Somasunderam' via Jenkins Commits
  Branch: refs/heads/remove-condition-for-quarterly-cd
  Home:   https://github.com/jenkinsci/cctray-xml-plugin
  Commit: e073d2c1a2cdd1796dc1d5bbc926790c2960f402
  
https://github.com/jenkinsci/cctray-xml-plugin/commit/e073d2c1a2cdd1796dc1d5bbc926790c2960f402
  Author: Rahul Somasunderam 
  Date:   2023-02-25 (Sat, 25 Feb 2023)

  Changed paths:
M .github/workflows/quarterly-release.yml

  Log Message:
  ---
  chore: Remove condition for quarterly release


-- 
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 jenkinsci-commits+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-commits/jenkinsci/cctray-xml-plugin/push/refs/heads/remove-condition-for-quarterly-cd/00-e073d2%40github.com.


[jenkinsci/cctray-xml-plugin]

2023-02-25 Thread 'Rahul Somasunderam' via Jenkins Commits
  Branch: refs/heads/add-editorconfig
  Home:   https://github.com/jenkinsci/cctray-xml-plugin

-- 
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 jenkinsci-commits+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-commits/jenkinsci/cctray-xml-plugin/push/refs/heads/add-editorconfig/14d865-00%40github.com.


[jenkinsci/cctray-xml-plugin] 14d865: chore: Add editorconfig

2023-02-17 Thread 'Rahul Somasunderam' via Jenkins Commits
  Branch: refs/heads/master
  Home:   https://github.com/jenkinsci/cctray-xml-plugin
  Commit: 14d865b003ad07fcac5a2fc2d87d592b6cd7ee07
  
https://github.com/jenkinsci/cctray-xml-plugin/commit/14d865b003ad07fcac5a2fc2d87d592b6cd7ee07
  Author: Rahul Somasunderam 
  Date:   2023-02-17 (Fri, 17 Feb 2023)

  Changed paths:
A .editorconfig

  Log Message:
  ---
  chore: Add editorconfig


  Commit: 939656b0fd9aab0b7fa74110e0ec19f70e91cabc
  
https://github.com/jenkinsci/cctray-xml-plugin/commit/939656b0fd9aab0b7fa74110e0ec19f70e91cabc
  Author: Rahul Somasunderam 
  Date:   2023-02-17 (Fri, 17 Feb 2023)

  Changed paths:
A .editorconfig

  Log Message:
  ---
  Merge pull request #25 from jenkinsci/add-editorconfig

chore: Add editorconfig


Compare: 
https://github.com/jenkinsci/cctray-xml-plugin/compare/d45e7e380bcf...939656b0fd9a

-- 
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 jenkinsci-commits+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-commits/jenkinsci/cctray-xml-plugin/push/refs/heads/master/d45e7e-939656%40github.com.


[jenkinsci/cctray-xml-plugin] 4390ab: chore: Add labels to renovate prs

2023-02-17 Thread 'Rahul Somasunderam' via Jenkins Commits
  Branch: refs/heads/master
  Home:   https://github.com/jenkinsci/cctray-xml-plugin
  Commit: 4390ab35bdbf256ef504f5e4727a6de270f1dfb6
  
https://github.com/jenkinsci/cctray-xml-plugin/commit/4390ab35bdbf256ef504f5e4727a6de270f1dfb6
  Author: Rahul Somasunderam 
  Date:   2023-02-17 (Fri, 17 Feb 2023)

  Changed paths:
M .github/renovate.json

  Log Message:
  ---
  chore: Add labels to renovate prs


  Commit: d45e7e380bcfd3c12840f59d262f1873d01c0406
  
https://github.com/jenkinsci/cctray-xml-plugin/commit/d45e7e380bcfd3c12840f59d262f1873d01c0406
  Author: Rahul Somasunderam 
  Date:   2023-02-17 (Fri, 17 Feb 2023)

  Changed paths:
M .github/renovate.json

  Log Message:
  ---
  Merge pull request #24 from jenkinsci/add-tags

chore: Add labels to renovate prs


Compare: 
https://github.com/jenkinsci/cctray-xml-plugin/compare/154173b5d98f...d45e7e380bcf

-- 
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 jenkinsci-commits+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-commits/jenkinsci/cctray-xml-plugin/push/refs/heads/master/154173-d45e7e%40github.com.


[jenkinsci/cctray-xml-plugin] 14d865: chore: Add editorconfig

2023-02-17 Thread 'Rahul Somasunderam' via Jenkins Commits
  Branch: refs/heads/add-editorconfig
  Home:   https://github.com/jenkinsci/cctray-xml-plugin
  Commit: 14d865b003ad07fcac5a2fc2d87d592b6cd7ee07
  
https://github.com/jenkinsci/cctray-xml-plugin/commit/14d865b003ad07fcac5a2fc2d87d592b6cd7ee07
  Author: Rahul Somasunderam 
  Date:   2023-02-17 (Fri, 17 Feb 2023)

  Changed paths:
A .editorconfig

  Log Message:
  ---
  chore: Add editorconfig


-- 
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 jenkinsci-commits+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-commits/jenkinsci/cctray-xml-plugin/push/refs/heads/add-editorconfig/00-14d865%40github.com.


[jenkinsci/cctray-xml-plugin] 4390ab: chore: Add labels to renovate prs

2023-02-17 Thread 'Rahul Somasunderam' via Jenkins Commits
  Branch: refs/heads/add-tags
  Home:   https://github.com/jenkinsci/cctray-xml-plugin
  Commit: 4390ab35bdbf256ef504f5e4727a6de270f1dfb6
  
https://github.com/jenkinsci/cctray-xml-plugin/commit/4390ab35bdbf256ef504f5e4727a6de270f1dfb6
  Author: Rahul Somasunderam 
  Date:   2023-02-17 (Fri, 17 Feb 2023)

  Changed paths:
M .github/renovate.json

  Log Message:
  ---
  chore: Add labels to renovate prs


-- 
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 jenkinsci-commits+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-commits/jenkinsci/cctray-xml-plugin/push/refs/heads/add-tags/00-4390ab%40github.com.


[jenkinsci/cctray-xml-plugin]

2023-02-17 Thread 'Rahul Somasunderam' via Jenkins Commits
  Branch: refs/heads/use-cron-to-release
  Home:   https://github.com/jenkinsci/cctray-xml-plugin

-- 
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 jenkinsci-commits+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-commits/jenkinsci/cctray-xml-plugin/push/refs/heads/use-cron-to-release/f41b37-00%40github.com.


[jenkinsci/cctray-xml-plugin]

2023-01-29 Thread 'Rahul Somasunderam' via Jenkins Commits
  Branch: refs/heads/switch-to-renovate
  Home:   https://github.com/jenkinsci/cctray-xml-plugin

-- 
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 jenkinsci-commits+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-commits/jenkinsci/cctray-xml-plugin/push/refs/heads/switch-to-renovate/2fd8af-00%40github.com.


[jenkinsci/cctray-xml-plugin] 2fd8af: chore: Switch to Renovatebot

2023-01-29 Thread 'Rahul Somasunderam' via Jenkins Commits
  Branch: refs/heads/master
  Home:   https://github.com/jenkinsci/cctray-xml-plugin
  Commit: 2fd8af98f25bbe3cc6b01cc94e4f7870cf43cbbb
  
https://github.com/jenkinsci/cctray-xml-plugin/commit/2fd8af98f25bbe3cc6b01cc94e4f7870cf43cbbb
  Author: Rahul Somasunderam 
  Date:   2023-01-29 (Sun, 29 Jan 2023)

  Changed paths:
R .github/dependabot.yml
A .github/renovate.json

  Log Message:
  ---
  chore: Switch to Renovatebot

It allows for automerge


  Commit: 3db8fbc59cd0e56de4a37a4502b637c639793c4b
  
https://github.com/jenkinsci/cctray-xml-plugin/commit/3db8fbc59cd0e56de4a37a4502b637c639793c4b
  Author: Rahul Somasunderam 
  Date:   2023-01-29 (Sun, 29 Jan 2023)

  Changed paths:
R .github/dependabot.yml
A .github/renovate.json

  Log Message:
  ---
  Merge pull request #22 from jenkinsci/switch-to-renovate

chore: Switch to Renovatebot


Compare: 
https://github.com/jenkinsci/cctray-xml-plugin/compare/5779a91ce274...3db8fbc59cd0

-- 
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 jenkinsci-commits+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-commits/jenkinsci/cctray-xml-plugin/push/refs/heads/master/5779a9-3db8fb%40github.com.


[jenkinsci/cctray-xml-plugin] 2fd8af: chore: Switch to Renovatebot

2023-01-29 Thread 'Rahul Somasunderam' via Jenkins Commits
  Branch: refs/heads/switch-to-renovate
  Home:   https://github.com/jenkinsci/cctray-xml-plugin
  Commit: 2fd8af98f25bbe3cc6b01cc94e4f7870cf43cbbb
  
https://github.com/jenkinsci/cctray-xml-plugin/commit/2fd8af98f25bbe3cc6b01cc94e4f7870cf43cbbb
  Author: Rahul Somasunderam 
  Date:   2023-01-29 (Sun, 29 Jan 2023)

  Changed paths:
R .github/dependabot.yml
A .github/renovate.json

  Log Message:
  ---
  chore: Switch to Renovatebot

It allows for automerge


-- 
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 jenkinsci-commits+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-commits/jenkinsci/cctray-xml-plugin/push/refs/heads/switch-to-renovate/00-2fd8af%40github.com.


[jenkinsci/cctray-xml-plugin] f41b37: chore: Release once a quarter

2023-01-28 Thread 'Rahul Somasunderam' via Jenkins Commits
  Branch: refs/heads/master
  Home:   https://github.com/jenkinsci/cctray-xml-plugin
  Commit: f41b377884902b985cf17f6637c539941626a69f
  
https://github.com/jenkinsci/cctray-xml-plugin/commit/f41b377884902b985cf17f6637c539941626a69f
  Author: Rahul Somasunderam 
  Date:   2023-01-28 (Sat, 28 Jan 2023)

  Changed paths:
M .github/workflows/cd.yaml
A .github/workflows/quarterly-release.yml

  Log Message:
  ---
  chore: Release once a quarter


  Commit: 5779a91ce27489621dbf2007e5df870c92d7c14f
  
https://github.com/jenkinsci/cctray-xml-plugin/commit/5779a91ce27489621dbf2007e5df870c92d7c14f
  Author: Rahul Somasunderam 
  Date:   2023-01-28 (Sat, 28 Jan 2023)

  Changed paths:
M .github/workflows/cd.yaml
A .github/workflows/quarterly-release.yml

  Log Message:
  ---
  Merge pull request #21 from jenkinsci/use-cron-to-release

chore: Release once a quarter


Compare: 
https://github.com/jenkinsci/cctray-xml-plugin/compare/3c0bec9b52c3...5779a91ce274

-- 
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 jenkinsci-commits+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-commits/jenkinsci/cctray-xml-plugin/push/refs/heads/master/3c0bec-5779a9%40github.com.


[jenkinsci/cctray-xml-plugin] f41b37: chore: Release once a quarter

2023-01-28 Thread 'Rahul Somasunderam' via Jenkins Commits
  Branch: refs/heads/use-cron-to-release
  Home:   https://github.com/jenkinsci/cctray-xml-plugin
  Commit: f41b377884902b985cf17f6637c539941626a69f
  
https://github.com/jenkinsci/cctray-xml-plugin/commit/f41b377884902b985cf17f6637c539941626a69f
  Author: Rahul Somasunderam 
  Date:   2023-01-28 (Sat, 28 Jan 2023)

  Changed paths:
M .github/workflows/cd.yaml
A .github/workflows/quarterly-release.yml

  Log Message:
  ---
  chore: Release once a quarter


-- 
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 jenkinsci-commits+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-commits/jenkinsci/cctray-xml-plugin/push/refs/heads/use-cron-to-release/00-f41b37%40github.com.


[jenkinsci/cctray-xml-plugin] 0d0d0f: Bump plugin from 4.52 to 4.54

2023-01-28 Thread 'Rahul Somasunderam' via Jenkins Commits
  Branch: refs/heads/master
  Home:   https://github.com/jenkinsci/cctray-xml-plugin
  Commit: 0d0d0f2df4fbf433ad8c767d2561dd2fbf339938
  
https://github.com/jenkinsci/cctray-xml-plugin/commit/0d0d0f2df4fbf433ad8c767d2561dd2fbf339938
  Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  Date:   2023-01-23 (Mon, 23 Jan 2023)

  Changed paths:
M pom.xml

  Log Message:
  ---
  Bump plugin from 4.52 to 4.54

Bumps [plugin](https://github.com/jenkinsci/plugin-pom) from 4.52 to 4.54.
- [Release notes](https://github.com/jenkinsci/plugin-pom/releases)
- [Changelog](https://github.com/jenkinsci/plugin-pom/blob/master/CHANGELOG.md)
- 
[Commits](https://github.com/jenkinsci/plugin-pom/compare/plugin-4.52...plugin-4.54)

---
updated-dependencies:
- dependency-name: org.jenkins-ci.plugins:plugin
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] 


  Commit: 3c0bec9b52c34e9bc359fd100feb1a70042fa5c1
  
https://github.com/jenkinsci/cctray-xml-plugin/commit/3c0bec9b52c34e9bc359fd100feb1a70042fa5c1
  Author: Rahul Somasunderam 
  Date:   2023-01-28 (Sat, 28 Jan 2023)

  Changed paths:
M pom.xml

  Log Message:
  ---
  Merge pull request #19 from 
jenkinsci/dependabot/maven/org.jenkins-ci.plugins-plugin-4.54

Bump plugin from 4.52 to 4.54


Compare: 
https://github.com/jenkinsci/cctray-xml-plugin/compare/d0b20f228647...3c0bec9b52c3

-- 
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 jenkinsci-commits+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-commits/jenkinsci/cctray-xml-plugin/push/refs/heads/master/d0b20f-3c0bec%40github.com.


[jenkinsci/cctray-xml-plugin] d0b20f: chore: Release on merge

2023-01-28 Thread 'Rahul Somasunderam' via Jenkins Commits
  Branch: refs/heads/master
  Home:   https://github.com/jenkinsci/cctray-xml-plugin
  Commit: d0b20f228647e66922a361a50987a3de8b0291c0
  
https://github.com/jenkinsci/cctray-xml-plugin/commit/d0b20f228647e66922a361a50987a3de8b0291c0
  Author: Rahul Somasunderam 
  Date:   2023-01-28 (Sat, 28 Jan 2023)

  Changed paths:
M .github/workflows/cd.yaml

  Log Message:
  ---
  chore: Release on merge


-- 
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 jenkinsci-commits+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-commits/jenkinsci/cctray-xml-plugin/push/refs/heads/master/42a0fd-d0b20f%40github.com.


[jenkinsci/cctray-xml-plugin] 42a0fd: chore: Release on merge

2023-01-28 Thread 'Rahul Somasunderam' via Jenkins Commits
  Branch: refs/heads/master
  Home:   https://github.com/jenkinsci/cctray-xml-plugin
  Commit: 42a0fd1862f38022a46c27022843890cb97df77c
  
https://github.com/jenkinsci/cctray-xml-plugin/commit/42a0fd1862f38022a46c27022843890cb97df77c
  Author: Rahul Somasunderam 
  Date:   2023-01-28 (Sat, 28 Jan 2023)

  Changed paths:
M .github/workflows/cd.yaml

  Log Message:
  ---
  chore: Release on merge


-- 
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 jenkinsci-commits+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-commits/jenkinsci/cctray-xml-plugin/push/refs/heads/master/e34468-42a0fd%40github.com.


[jenkinsci/cctray-xml-plugin] e34468: chore: Release on merge

2023-01-28 Thread 'Rahul Somasunderam' via Jenkins Commits
  Branch: refs/heads/master
  Home:   https://github.com/jenkinsci/cctray-xml-plugin
  Commit: e34468b8b93802e7e1f107d26a64beb084d2a2c8
  
https://github.com/jenkinsci/cctray-xml-plugin/commit/e34468b8b93802e7e1f107d26a64beb084d2a2c8
  Author: Rahul Somasunderam 
  Date:   2023-01-28 (Sat, 28 Jan 2023)

  Changed paths:
M .github/workflows/cd.yaml

  Log Message:
  ---
  chore: Release on merge


-- 
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 jenkinsci-commits+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-commits/jenkinsci/cctray-xml-plugin/push/refs/heads/master/008f79-e34468%40github.com.


[jenkinsci/cctray-xml-plugin] 008f79: chore: Release on merge

2023-01-28 Thread 'Rahul Somasunderam' via Jenkins Commits
  Branch: refs/heads/master
  Home:   https://github.com/jenkinsci/cctray-xml-plugin
  Commit: 008f795be9f08e8674b7eec573e8c750ce359ffb
  
https://github.com/jenkinsci/cctray-xml-plugin/commit/008f795be9f08e8674b7eec573e8c750ce359ffb
  Author: Rahul Somasunderam 
  Date:   2023-01-28 (Sat, 28 Jan 2023)

  Changed paths:
M .github/workflows/cd.yaml

  Log Message:
  ---
  chore: Release on merge


-- 
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 jenkinsci-commits+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-commits/jenkinsci/cctray-xml-plugin/push/refs/heads/master/ffa567-008f79%40github.com.


[jenkinsci/cctray-xml-plugin] ffa567: chore: Release on merge

2023-01-28 Thread 'Rahul Somasunderam' via Jenkins Commits
  Branch: refs/heads/master
  Home:   https://github.com/jenkinsci/cctray-xml-plugin
  Commit: ffa56719c3c7b6a0b1b82135f11369abc43f8a6a
  
https://github.com/jenkinsci/cctray-xml-plugin/commit/ffa56719c3c7b6a0b1b82135f11369abc43f8a6a
  Author: Rahul Somasunderam 
  Date:   2023-01-28 (Sat, 28 Jan 2023)

  Changed paths:
M .github/workflows/cd.yaml

  Log Message:
  ---
  chore: Release on merge


-- 
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 jenkinsci-commits+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-commits/jenkinsci/cctray-xml-plugin/push/refs/heads/master/c92d6e-ffa567%40github.com.


[jenkinsci/cctray-xml-plugin] c92d6e: chore: Release on merge

2023-01-28 Thread 'Rahul Somasunderam' via Jenkins Commits
  Branch: refs/heads/master
  Home:   https://github.com/jenkinsci/cctray-xml-plugin
  Commit: c92d6e5a6e56e8a895333dc089de2e5060ed2060
  
https://github.com/jenkinsci/cctray-xml-plugin/commit/c92d6e5a6e56e8a895333dc089de2e5060ed2060
  Author: Rahul Somasunderam 
  Date:   2023-01-28 (Sat, 28 Jan 2023)

  Changed paths:
M .github/workflows/cd.yaml

  Log Message:
  ---
  chore: Release on merge


-- 
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 jenkinsci-commits+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-commits/jenkinsci/cctray-xml-plugin/push/refs/heads/master/ca1e3d-c92d6e%40github.com.


[jenkinsci/cctray-xml-plugin] ca1e3d: chore: Release on merge

2023-01-28 Thread 'Rahul Somasunderam' via Jenkins Commits
  Branch: refs/heads/master
  Home:   https://github.com/jenkinsci/cctray-xml-plugin
  Commit: ca1e3de111c419435ef189817d75e5c40d34ff32
  
https://github.com/jenkinsci/cctray-xml-plugin/commit/ca1e3de111c419435ef189817d75e5c40d34ff32
  Author: Rahul Somasunderam 
  Date:   2023-01-28 (Sat, 28 Jan 2023)

  Changed paths:
M .github/workflows/cd.yaml

  Log Message:
  ---
  chore: Release on merge

The previous attempt did not run the tasks we wanted.
This should do that.


-- 
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 jenkinsci-commits+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-commits/jenkinsci/cctray-xml-plugin/push/refs/heads/master/b8c3b1-ca1e3d%40github.com.


[jenkinsci/cctray-xml-plugin] b8c3b1: chore: Release on merge

2023-01-28 Thread 'Rahul Somasunderam' via Jenkins Commits
  Branch: refs/heads/master
  Home:   https://github.com/jenkinsci/cctray-xml-plugin
  Commit: b8c3b1bcc059329bdbcc5a50215842f15cae613c
  
https://github.com/jenkinsci/cctray-xml-plugin/commit/b8c3b1bcc059329bdbcc5a50215842f15cae613c
  Author: Rahul Somasunderam 
  Date:   2023-01-28 (Sat, 28 Jan 2023)

  Changed paths:
M .github/workflows/cd.yaml

  Log Message:
  ---
  chore: Release on merge

The previous attempt did not run the tasks we wanted.
This should do that.


-- 
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 jenkinsci-commits+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-commits/jenkinsci/cctray-xml-plugin/push/refs/heads/master/ea4d7d-b8c3b1%40github.com.


[jenkinsci/cctray-xml-plugin] a49839: chore: Release on merge

2023-01-28 Thread 'Rahul Somasunderam' via Jenkins Commits
  Branch: refs/heads/master
  Home:   https://github.com/jenkinsci/cctray-xml-plugin
  Commit: a4983967e708bc9555a6d105b109f00d21ef9187
  
https://github.com/jenkinsci/cctray-xml-plugin/commit/a4983967e708bc9555a6d105b109f00d21ef9187
  Author: Rahul Somasunderam 
  Date:   2023-01-28 (Sat, 28 Jan 2023)

  Changed paths:
M .github/workflows/cd.yaml

  Log Message:
  ---
  chore: Release on merge


  Commit: ea4d7da11b3861148f0ae1b81928624aefadbfa0
  
https://github.com/jenkinsci/cctray-xml-plugin/commit/ea4d7da11b3861148f0ae1b81928624aefadbfa0
  Author: Rahul Somasunderam 
  Date:   2023-01-28 (Sat, 28 Jan 2023)

  Changed paths:
M .github/workflows/cd.yaml

  Log Message:
  ---
  Merge pull request #20 from jenkinsci/release-on-merge

chore: Release on merge


Compare: 
https://github.com/jenkinsci/cctray-xml-plugin/compare/82909bcbe24d...ea4d7da11b38

-- 
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 jenkinsci-commits+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-commits/jenkinsci/cctray-xml-plugin/push/refs/heads/master/82909b-ea4d7d%40github.com.


[jenkinsci/cctray-xml-plugin] a49839: chore: Release on merge

2023-01-28 Thread 'Rahul Somasunderam' via Jenkins Commits
  Branch: refs/heads/release-on-merge
  Home:   https://github.com/jenkinsci/cctray-xml-plugin
  Commit: a4983967e708bc9555a6d105b109f00d21ef9187
  
https://github.com/jenkinsci/cctray-xml-plugin/commit/a4983967e708bc9555a6d105b109f00d21ef9187
  Author: Rahul Somasunderam 
  Date:   2023-01-28 (Sat, 28 Jan 2023)

  Changed paths:
M .github/workflows/cd.yaml

  Log Message:
  ---
  chore: Release on merge


-- 
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 jenkinsci-commits+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-commits/jenkinsci/cctray-xml-plugin/push/refs/heads/release-on-merge/00-a49839%40github.com.


[jenkinsci/cctray-xml-plugin] fdfd07: Bump plugin from 4.48 to 4.52

2022-12-06 Thread 'Rahul Somasunderam' via Jenkins Commits
  Branch: refs/heads/master
  Home:   https://github.com/jenkinsci/cctray-xml-plugin
  Commit: fdfd07ea158738911e024f8636b95a6a173cef44
  
https://github.com/jenkinsci/cctray-xml-plugin/commit/fdfd07ea158738911e024f8636b95a6a173cef44
  Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  Date:   2022-12-05 (Mon, 05 Dec 2022)

  Changed paths:
M pom.xml

  Log Message:
  ---
  Bump plugin from 4.48 to 4.52

Bumps [plugin](https://github.com/jenkinsci/plugin-pom) from 4.48 to 4.52.
- [Release notes](https://github.com/jenkinsci/plugin-pom/releases)
- [Changelog](https://github.com/jenkinsci/plugin-pom/blob/master/CHANGELOG.md)
- 
[Commits](https://github.com/jenkinsci/plugin-pom/compare/plugin-4.48...plugin-4.52)

---
updated-dependencies:
- dependency-name: org.jenkins-ci.plugins:plugin
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] 


  Commit: bc32a52cdbd99dade43760d515e126f2feae9814
  
https://github.com/jenkinsci/cctray-xml-plugin/commit/bc32a52cdbd99dade43760d515e126f2feae9814
  Author: Rahul Somasunderam 
  Date:   2022-12-06 (Tue, 06 Dec 2022)

  Changed paths:
M Jenkinsfile
M pom.xml

  Log Message:
  ---
  chore(deps): Bump Jenkins and java versions to 2.361 and 11


  Commit: 82909bcbe24de9ddb733c47f74d8e1e6625b91a5
  
https://github.com/jenkinsci/cctray-xml-plugin/commit/82909bcbe24de9ddb733c47f74d8e1e6625b91a5
  Author: Rahul Somasunderam 
  Date:   2022-12-06 (Tue, 06 Dec 2022)

  Changed paths:
M Jenkinsfile
M pom.xml

  Log Message:
  ---
  Merge pull request #17 from 
jenkinsci/dependabot/maven/org.jenkins-ci.plugins-plugin-4.52

Bump plugin from 4.48 to 4.52


Compare: 
https://github.com/jenkinsci/cctray-xml-plugin/compare/9f648057ac1f...82909bcbe24d

-- 
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 jenkinsci-commits+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-commits/jenkinsci/cctray-xml-plugin/push/refs/heads/master/9f6480-82909b%40github.com.


[jenkinsci/cctray-xml-plugin] bc32a5: chore(deps): Bump Jenkins and java versions to 2.3...

2022-12-06 Thread 'Rahul Somasunderam' via Jenkins Commits
  Branch: refs/heads/dependabot/maven/org.jenkins-ci.plugins-plugin-4.52
  Home:   https://github.com/jenkinsci/cctray-xml-plugin
  Commit: bc32a52cdbd99dade43760d515e126f2feae9814
  
https://github.com/jenkinsci/cctray-xml-plugin/commit/bc32a52cdbd99dade43760d515e126f2feae9814
  Author: Rahul Somasunderam 
  Date:   2022-12-06 (Tue, 06 Dec 2022)

  Changed paths:
M Jenkinsfile
M pom.xml

  Log Message:
  ---
  chore(deps): Bump Jenkins and java versions to 2.361 and 11


-- 
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 jenkinsci-commits+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-commits/jenkinsci/cctray-xml-plugin/push/refs/heads/dependabot/maven/org.jenkins-ci.plugins-plugin-4.52/0496eb-bc32a5%40github.com.


[jenkinsci/cctray-xml-plugin] 0496eb: chore(deps): Bump Jenkins and java versions to 2.3...

2022-12-06 Thread 'Rahul Somasunderam' via Jenkins Commits
  Branch: refs/heads/dependabot/maven/org.jenkins-ci.plugins-plugin-4.52
  Home:   https://github.com/jenkinsci/cctray-xml-plugin
  Commit: 0496eb690285940aa64207a630f745af3d305d57
  
https://github.com/jenkinsci/cctray-xml-plugin/commit/0496eb690285940aa64207a630f745af3d305d57
  Author: Rahul Somasunderam 
  Date:   2022-12-06 (Tue, 06 Dec 2022)

  Changed paths:
M pom.xml

  Log Message:
  ---
  chore(deps): Bump Jenkins and java versions to 2.361 and 11


-- 
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 jenkinsci-commits+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-commits/jenkinsci/cctray-xml-plugin/push/refs/heads/dependabot/maven/org.jenkins-ci.plugins-plugin-4.52/fdfd07-0496eb%40github.com.


[jenkinsci/cctray-xml-plugin]

2022-10-04 Thread 'Rahul Somasunderam' via Jenkins Commits
  Branch: refs/heads/dependabot/maven/org.jenkins-ci.plugins-plugin-4.48
  Home:   https://github.com/jenkinsci/cctray-xml-plugin

-- 
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 jenkinsci-commits+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-commits/jenkinsci/cctray-xml-plugin/push/refs/heads/dependabot/maven/org.jenkins-ci.plugins-plugin-4.48/86e9cf-00%40github.com.


[jenkinsci/cctray-xml-plugin] 86e9cf: Bump plugin from 4.47 to 4.48

2022-10-04 Thread 'Rahul Somasunderam' via Jenkins Commits
  Branch: refs/heads/master
  Home:   https://github.com/jenkinsci/cctray-xml-plugin
  Commit: 86e9cfd00411e83c382303c43ec5300e48431c4d
  
https://github.com/jenkinsci/cctray-xml-plugin/commit/86e9cfd00411e83c382303c43ec5300e48431c4d
  Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  Date:   2022-10-03 (Mon, 03 Oct 2022)

  Changed paths:
M pom.xml

  Log Message:
  ---
  Bump plugin from 4.47 to 4.48

Bumps [plugin](https://github.com/jenkinsci/plugin-pom) from 4.47 to 4.48.
- [Release notes](https://github.com/jenkinsci/plugin-pom/releases)
- [Changelog](https://github.com/jenkinsci/plugin-pom/blob/master/CHANGELOG.md)
- 
[Commits](https://github.com/jenkinsci/plugin-pom/compare/plugin-4.47...plugin-4.48)

---
updated-dependencies:
- dependency-name: org.jenkins-ci.plugins:plugin
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] 


  Commit: 9f648057ac1f88ae300a1758815ce8ed7232cbfa
  
https://github.com/jenkinsci/cctray-xml-plugin/commit/9f648057ac1f88ae300a1758815ce8ed7232cbfa
  Author: Rahul Somasunderam 
  Date:   2022-10-04 (Tue, 04 Oct 2022)

  Changed paths:
M pom.xml

  Log Message:
  ---
  Merge pull request #13 from 
jenkinsci/dependabot/maven/org.jenkins-ci.plugins-plugin-4.48

Bump plugin from 4.47 to 4.48


Compare: 
https://github.com/jenkinsci/cctray-xml-plugin/compare/5753082573e5...9f648057ac1f

-- 
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 jenkinsci-commits+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-commits/jenkinsci/cctray-xml-plugin/push/refs/heads/master/575308-9f6480%40github.com.


[jenkinsci/cctray-xml-plugin] 38638f: Bump plugin from 4.46 to 4.47

2022-09-15 Thread 'Rahul Somasunderam' via Jenkins Commits
  Branch: refs/heads/master
  Home:   https://github.com/jenkinsci/cctray-xml-plugin
  Commit: 38638f71e32756ccc1b7f0efdbf82f81b28568f9
  
https://github.com/jenkinsci/cctray-xml-plugin/commit/38638f71e32756ccc1b7f0efdbf82f81b28568f9
  Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  Date:   2022-08-22 (Mon, 22 Aug 2022)

  Changed paths:
M pom.xml

  Log Message:
  ---
  Bump plugin from 4.46 to 4.47

Bumps [plugin](https://github.com/jenkinsci/plugin-pom) from 4.46 to 4.47.
- [Release notes](https://github.com/jenkinsci/plugin-pom/releases)
- [Changelog](https://github.com/jenkinsci/plugin-pom/blob/master/CHANGELOG.md)
- 
[Commits](https://github.com/jenkinsci/plugin-pom/compare/plugin-4.46...plugin-4.47)

---
updated-dependencies:
- dependency-name: org.jenkins-ci.plugins:plugin
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] 


  Commit: 5753082573e519f91e424bb0bcba86eaed61437e
  
https://github.com/jenkinsci/cctray-xml-plugin/commit/5753082573e519f91e424bb0bcba86eaed61437e
  Author: Rahul Somasunderam 
  Date:   2022-09-15 (Thu, 15 Sep 2022)

  Changed paths:
M pom.xml

  Log Message:
  ---
  Merge pull request #12 from 
jenkinsci/dependabot/maven/org.jenkins-ci.plugins-plugin-4.47

Bump plugin from 4.46 to 4.47


Compare: 
https://github.com/jenkinsci/cctray-xml-plugin/compare/e4942220f1c1...5753082573e5

-- 
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 jenkinsci-commits+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-commits/jenkinsci/cctray-xml-plugin/push/refs/heads/master/e49422-575308%40github.com.


[jenkinsci/cctray-xml-plugin] a6535b: Bump plugin from 4.45 to 4.46

2022-08-17 Thread 'Rahul Somasunderam' via Jenkins Commits
  Branch: refs/heads/master
  Home:   https://github.com/jenkinsci/cctray-xml-plugin
  Commit: a6535bbf6c77834de6af4eed1745159651a99a0f
  
https://github.com/jenkinsci/cctray-xml-plugin/commit/a6535bbf6c77834de6af4eed1745159651a99a0f
  Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  Date:   2022-08-15 (Mon, 15 Aug 2022)

  Changed paths:
M pom.xml

  Log Message:
  ---
  Bump plugin from 4.45 to 4.46

Bumps [plugin](https://github.com/jenkinsci/plugin-pom) from 4.45 to 4.46.
- [Release notes](https://github.com/jenkinsci/plugin-pom/releases)
- [Changelog](https://github.com/jenkinsci/plugin-pom/blob/master/CHANGELOG.md)
- 
[Commits](https://github.com/jenkinsci/plugin-pom/compare/plugin-4.45...plugin-4.46)

---
updated-dependencies:
- dependency-name: org.jenkins-ci.plugins:plugin
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] 


  Commit: e4942220f1c1f979b1b44e84e124c35caf50f865
  
https://github.com/jenkinsci/cctray-xml-plugin/commit/e4942220f1c1f979b1b44e84e124c35caf50f865
  Author: Rahul Somasunderam 
  Date:   2022-08-17 (Wed, 17 Aug 2022)

  Changed paths:
M pom.xml

  Log Message:
  ---
  Merge pull request #11 from 
jenkinsci/dependabot/maven/org.jenkins-ci.plugins-plugin-4.46

Bump plugin from 4.45 to 4.46


Compare: 
https://github.com/jenkinsci/cctray-xml-plugin/compare/7d2577083dda...e4942220f1c1

-- 
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 jenkinsci-commits+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-commits/jenkinsci/cctray-xml-plugin/push/refs/heads/master/7d2577-e49422%40github.com.


[jenkinsci/cctray-xml-plugin] 84e98e: chore(deps): Tell Dependabot to nudge maintainer

2022-08-04 Thread 'Rahul Somasunderam' via Jenkins Commits
  Branch: refs/heads/master
  Home:   https://github.com/jenkinsci/cctray-xml-plugin
  Commit: 84e98e44407589d110927675f38c2b22a11fdaa0
  
https://github.com/jenkinsci/cctray-xml-plugin/commit/84e98e44407589d110927675f38c2b22a11fdaa0
  Author: Rahul Somasunderam 
  Date:   2022-08-04 (Thu, 04 Aug 2022)

  Changed paths:
M .github/dependabot.yml

  Log Message:
  ---
  chore(deps): Tell Dependabot to nudge maintainer


  Commit: 7d2577083dda56d6c37688a49ed106429cd83c8f
  
https://github.com/jenkinsci/cctray-xml-plugin/commit/7d2577083dda56d6c37688a49ed106429cd83c8f
  Author: Rahul Somasunderam 
  Date:   2022-08-04 (Thu, 04 Aug 2022)

  Changed paths:
M .github/dependabot.yml

  Log Message:
  ---
  Merge pull request #10 from rahulsom/tell-dependabot-to-nudge-maintainer

chore(deps): Tell Dependabot to nudge maintainer


Compare: 
https://github.com/jenkinsci/cctray-xml-plugin/compare/57c317101d2d...7d2577083dda

-- 
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 jenkinsci-commits+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-commits/jenkinsci/cctray-xml-plugin/push/refs/heads/master/57c317-7d2577%40github.com.


[jenkinsci/cctray-xml-plugin] 300176: Bump plugin from 4.44 to 4.45

2022-08-03 Thread 'Rahul Somasunderam' via Jenkins Commits
  Branch: refs/heads/master
  Home:   https://github.com/jenkinsci/cctray-xml-plugin
  Commit: 3001761e2830a4fd205ed2aa13cedd0e7ed07b7e
  
https://github.com/jenkinsci/cctray-xml-plugin/commit/3001761e2830a4fd205ed2aa13cedd0e7ed07b7e
  Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  Date:   2022-08-01 (Mon, 01 Aug 2022)

  Changed paths:
M pom.xml

  Log Message:
  ---
  Bump plugin from 4.44 to 4.45

Bumps [plugin](https://github.com/jenkinsci/plugin-pom) from 4.44 to 4.45.
- [Release notes](https://github.com/jenkinsci/plugin-pom/releases)
- [Changelog](https://github.com/jenkinsci/plugin-pom/blob/master/CHANGELOG.md)
- 
[Commits](https://github.com/jenkinsci/plugin-pom/compare/plugin-4.44...plugin-4.45)

---
updated-dependencies:
- dependency-name: org.jenkins-ci.plugins:plugin
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] 


  Commit: 57c317101d2d9a75cb9fb822bfaa32e05574c5d0
  
https://github.com/jenkinsci/cctray-xml-plugin/commit/57c317101d2d9a75cb9fb822bfaa32e05574c5d0
  Author: Rahul Somasunderam 
  Date:   2022-08-03 (Wed, 03 Aug 2022)

  Changed paths:
M pom.xml

  Log Message:
  ---
  Merge pull request #9 from 
jenkinsci/dependabot/maven/org.jenkins-ci.plugins-plugin-4.45

Bump plugin from 4.44 to 4.45


Compare: 
https://github.com/jenkinsci/cctray-xml-plugin/compare/a6684edebe3b...57c317101d2d

-- 
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 jenkinsci-commits+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-commits/jenkinsci/cctray-xml-plugin/push/refs/heads/master/a6684e-57c317%40github.com.


[jenkinsci/cctray-xml-plugin] 22e82b: Bump plugin from 4.38 to 4.44

2022-07-27 Thread 'Rahul Somasunderam' via Jenkins Commits
  Branch: refs/heads/master
  Home:   https://github.com/jenkinsci/cctray-xml-plugin
  Commit: 22e82b3413a47b4dbce6114f35bcde997560ff37
  
https://github.com/jenkinsci/cctray-xml-plugin/commit/22e82b3413a47b4dbce6114f35bcde997560ff37
  Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  Date:   2022-07-27 (Wed, 27 Jul 2022)

  Changed paths:
M pom.xml

  Log Message:
  ---
  Bump plugin from 4.38 to 4.44

Bumps [plugin](https://github.com/jenkinsci/plugin-pom) from 4.38 to 4.44.
- [Release notes](https://github.com/jenkinsci/plugin-pom/releases)
- [Changelog](https://github.com/jenkinsci/plugin-pom/blob/master/CHANGELOG.md)
- 
[Commits](https://github.com/jenkinsci/plugin-pom/compare/plugin-4.38...plugin-4.44)

---
updated-dependencies:
- dependency-name: org.jenkins-ci.plugins:plugin
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] 


  Commit: a6684edebe3b9050cf9ee57542e7a3afc8ee7e33
  
https://github.com/jenkinsci/cctray-xml-plugin/commit/a6684edebe3b9050cf9ee57542e7a3afc8ee7e33
  Author: Rahul Somasunderam 
  Date:   2022-07-27 (Wed, 27 Jul 2022)

  Changed paths:
M pom.xml

  Log Message:
  ---
  Merge pull request #7 from 
jenkinsci/dependabot/maven/org.jenkins-ci.plugins-plugin-4.44

Bump plugin from 4.38 to 4.44


Compare: 
https://github.com/jenkinsci/cctray-xml-plugin/compare/7ac70b50e8eb...a6684edebe3b

-- 
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 jenkinsci-commits+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-commits/jenkinsci/cctray-xml-plugin/push/refs/heads/master/7ac70b-a6684e%40github.com.


[jenkinsci/cctray-xml-plugin] fcf75f: Bump git-changelist-maven-extension from 1.0-beta-...

2022-07-26 Thread 'Rahul Somasunderam' via Jenkins Commits
  Branch: refs/heads/master
  Home:   https://github.com/jenkinsci/cctray-xml-plugin
  Commit: fcf75f4843f48b415f6bf1c76e627b61c62b1a6b
  
https://github.com/jenkinsci/cctray-xml-plugin/commit/fcf75f4843f48b415f6bf1c76e627b61c62b1a6b
  Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  Date:   2022-07-27 (Wed, 27 Jul 2022)

  Changed paths:
M .mvn/extensions.xml

  Log Message:
  ---
  Bump git-changelist-maven-extension from 1.0-beta-7 to 1.4

Bumps 
[git-changelist-maven-extension](https://github.com/jenkinsci/incrementals-tools)
 from 1.0-beta-7 to 1.4.
- [Release notes](https://github.com/jenkinsci/incrementals-tools/releases)
- [Commits](https://github.com/jenkinsci/incrementals-tools/commits/parent-1.4)

---
updated-dependencies:
- dependency-name: io.jenkins.tools.incrementals:git-changelist-maven-extension
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] 


  Commit: 7ac70b50e8eb0a2f76b3ed65885edfaf3c91946d
  
https://github.com/jenkinsci/cctray-xml-plugin/commit/7ac70b50e8eb0a2f76b3ed65885edfaf3c91946d
  Author: Rahul Somasunderam 
  Date:   2022-07-26 (Tue, 26 Jul 2022)

  Changed paths:
M .mvn/extensions.xml

  Log Message:
  ---
  Merge pull request #8 from 
jenkinsci/dependabot/maven/io.jenkins.tools.incrementals-git-changelist-maven-extension-1.4

Bump git-changelist-maven-extension from 1.0-beta-7 to 1.4


Compare: 
https://github.com/jenkinsci/cctray-xml-plugin/compare/47a8c6264c6d...7ac70b50e8eb

-- 
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 jenkinsci-commits+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-commits/jenkinsci/cctray-xml-plugin/push/refs/heads/master/47a8c6-7ac70b%40github.com.


[jenkinsci/cctray-xml-plugin] 1f6d8f: chore(cd): Enable Continuous Deployment from Github

2022-07-26 Thread 'Rahul Somasunderam' via Jenkins Commits
  Branch: refs/heads/master
  Home:   https://github.com/jenkinsci/cctray-xml-plugin
  Commit: 1f6d8f8cec27a12f4ce4b0b27f71e00b91a8ce83
  
https://github.com/jenkinsci/cctray-xml-plugin/commit/1f6d8f8cec27a12f4ce4b0b27f71e00b91a8ce83
  Author: Rahul Somasunderam 
  Date:   2022-07-26 (Tue, 26 Jul 2022)

  Changed paths:
A .github/dependabot.yml
A .github/workflows/cd.yaml
M .mvn/maven.config
M pom.xml

  Log Message:
  ---
  chore(cd): Enable Continuous Deployment from Github


  Commit: 47a8c6264c6dd4360c0ecf1d77e0c6fba889a33b
  
https://github.com/jenkinsci/cctray-xml-plugin/commit/47a8c6264c6dd4360c0ecf1d77e0c6fba889a33b
  Author: Rahul Somasunderam 
  Date:   2022-07-26 (Tue, 26 Jul 2022)

  Changed paths:
A .github/dependabot.yml
A .github/workflows/cd.yaml
M .mvn/maven.config
M pom.xml

  Log Message:
  ---
  Merge pull request #6 from rahulsom/enable-releases-from-github

Enable Continuous Deployment from Github


Compare: 
https://github.com/jenkinsci/cctray-xml-plugin/compare/0bee33b1b178...47a8c6264c6d

-- 
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 jenkinsci-commits+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-commits/jenkinsci/cctray-xml-plugin/push/refs/heads/master/0bee33-47a8c6%40github.com.


[jenkinsci/cctray-xml-plugin] dc4a0c: fix: Use SVG Icon

2022-07-26 Thread 'Rahul Somasunderam' via Jenkins Commits
  Branch: refs/heads/master
  Home:   https://github.com/jenkinsci/cctray-xml-plugin
  Commit: dc4a0cc39f2fc62cb4c75cc0cd93aabfed4339f9
  
https://github.com/jenkinsci/cctray-xml-plugin/commit/dc4a0cc39f2fc62cb4c75cc0cd93aabfed4339f9
  Author: Rahul Somasunderam 
  Date:   2022-07-26 (Tue, 26 Jul 2022)

  Changed paths:
M pom.xml
M 
src/main/resources/org/jenkinsci/plugins/cctrayxml/CCTrayXmlPageDecorator/footer.jelly
A src/main/webapp/images/svgs/Icon-txt.svg

  Log Message:
  ---
  fix: Use SVG Icon

As of LTS 2.346.x, the old icons are no longer present.

This change brings in a similar looking icon as SVG.


  Commit: 0bee33b1b1785c63cfece5bf5d78bdb666be769d
  
https://github.com/jenkinsci/cctray-xml-plugin/commit/0bee33b1b1785c63cfece5bf5d78bdb666be769d
  Author: Rahul Somasunderam 
  Date:   2022-07-26 (Tue, 26 Jul 2022)

  Changed paths:
M pom.xml
M 
src/main/resources/org/jenkinsci/plugins/cctrayxml/CCTrayXmlPageDecorator/footer.jelly
A src/main/webapp/images/svgs/Icon-txt.svg

  Log Message:
  ---
  Merge pull request #5 from rahulsom/fix-icon

Use SVG Icon


Compare: 
https://github.com/jenkinsci/cctray-xml-plugin/compare/d5fbaf438737...0bee33b1b178

-- 
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 jenkinsci-commits+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-commits/jenkinsci/cctray-xml-plugin/push/refs/heads/master/d5fbaf-0bee33%40github.com.