dependabot[bot]
5200591ad8
Bump softprops/action-gh-release from 2.0.5 to 2.0.6 ( #9406 )
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-06-20 08:55:02 -07:00
renovate[bot]
7d5b8ec036
Update dependency globals to v15.5.0 ( #9402 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-06-19 09:11:06 +01:00
dependabot[bot]
c674d94e29
Bump org.springframework.security:spring-security-bom from 5.8.12 to 5.8.13 ( #9398 )
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-06-18 09:05:16 -07:00
Jenkins Release Bot
61a8c3656e
[maven-release-plugin] prepare for next development iteration
2024-06-18 13:25:19 +00:00
Jenkins Release Bot
713aa9a163
[maven-release-plugin] prepare release jenkins-2.463
2024-06-18 13:25:00 +00:00
Zbynek Konecny
d041c43958
Replace usages of YUI framework by simple JS/CSS ( #9395 )
2024-06-18 07:34:31 +01:00
Basil Crow
500169be57
Delegate compression to servlet container ( #9379 )
...
* Delegate compression to servlet container
* Update incrementals
* Use released versions
2024-06-18 07:34:19 +01:00
Markus Winter
92ac1d8837
remove idle executors from widget ( #9177 )
...
* remove idle executors from widget
showing idle executors brings no value. They only blow up the widget.
Instead the busy/total number of executors are added behind the agent
name when the agent is online.
The executor name is kept intentionally to distinguish regular executors
from oneoffexecutors
* feedback
use an icon for oneoffexecutors (FlyweightTask), instead of using a
number for normal executors (which is also not really interesting).
When there are no agents and no builds running use the same text as when
collapsed to show that nothing is running.
* busy in widget header
* fine tuning styling
* icon-xs symbols
* show offline
* show collapsed with no executors
* fix css
* append tooltip to parent
---------
Co-authored-by: Daniel Beck <1831569+daniel-beck@users.noreply.github.com>
2024-06-18 07:34:05 +01:00
Jakob Ackermann
16b5d21052
[JENKINS-14789] Configurable interval for computer retention check ( #7037 )
...
* [JENKINS-14789] Configurable interval for computer retention check
Also update the lower bound delay as returned by each RetentionStrategy
from 1min to 0min. This is enabling check intervals of <1min to trigger
a re-check in the next cycle (previously, the nextCheck tracking would
defer the next re-check into the 2nd cycle -- one for the timer loop
and once for the nextCheck timestamp).
Includes a bug fix:
`CloudSlaveRetentionStrategy` tracks the agent timeout in milliseconds
internally and returned the nextCheck delay as a tenth of that.
The nextCheck delay is consumed in minutes, leading to the max delay
of one hour being used.
Fix: Convert the delay from milliseconds to minutes.
Signed-off-by: Jakob Ackermann <das7pad@outlook.com>
* [JENKINS-14789] Allow a check interval of one second
Signed-off-by: Jakob Ackermann <das7pad@outlook.com>
* [JENKINS-14789] Apply review feedback
- Double down on JavaDoc
- Migrate UI to jelly
Co-Authored-By: Alexander Brandes <mc.cache@web.de>
Signed-off-by: Jakob Ackermann <das7pad@outlook.com>
* [JENKINS-14789] Store computerRetentionCheckInterval in model instance
Signed-off-by: Jakob Ackermann <das7pad@outlook.com>
* [JENKINS-14789] Add missing javadoc comment
Signed-off-by: Jakob Ackermann <das7pad@outlook.com>
* [JENKINS-14789] Add tests for model
Signed-off-by: Jakob Ackermann <das7pad@outlook.com>
* [JENKINS-14789] Use AperiodicWork for ComputerRetentionWork
Signed-off-by: Jakob Ackermann <das7pad@outlook.com>
* [JENKINS-14789] limit computer retention check interval to 60s
Signed-off-by: Jakob Ackermann <das7pad@outlook.com>
* [JENKINS-14789] apply review feedback
Co-authored-by: Tim Jacomb <21194782+timja@users.noreply.github.com>
Signed-off-by: Jakob Ackermann <das7pad@outlook.com>
---------
Signed-off-by: Jakob Ackermann <das7pad@outlook.com>
Co-authored-by: Alexander Brandes <mc.cache@web.de>
Co-authored-by: Tim Jacomb <21194782+timja@users.noreply.github.com>
2024-06-18 07:33:46 +01:00
renovate[bot]
04874323c8
Update eslint monorepo to v9.5.0 ( #9399 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-06-18 07:33:03 +01:00
renovate[bot]
cbb12f2cdc
Update dependency org.apache.maven:maven-core to v3.9.8 ( #9397 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-06-17 06:13:34 -06:00
Mark Waite
d99b83b127
Update javadoc and other docs with dates of API changes ( #9396 )
...
Several of the changes are not detected by the Python script but were
detected by `git grep TODO | grep since` with review of the output.
The cases that are not detected by the Python script seem obscure enough
to not bother with additions to the script. If they become common
practice, then we can extend the Python script.
2024-06-17 06:12:55 -06:00
Munawar
82a37a7f1e
Add a null check for a method return result that may return null ( #9354 )
...
* Add a null check for a method return result that may return null.
In file PluginManager.java the parsePluginManifest method may return null. In other parts of the code (7aad678324/core/src/main/java/hudson/PluginManager.java (L868) ), the return value was checked for null. But the null check is missing in this part of the code.
The fix just adds the missing null check in the code.
**Sponsorship and Support:**
This work is done by the security researchers from OpenRefactory and is supported by the Open Source Security Foundation (OpenSSF): Project Alpha-Omega. Alpha-Omega is a project partnering with open source software project maintainers to systematically find new, as-yet-undiscovered vulnerabilities in open source code - and get them fixed - to improve global software supply chain security.
The bug is found by running the iCR tool by OpenRefactory, Inc. and then manually triaging the results.
* Comment: Applied mvn spotless to clean up formating issues.
---------
Co-authored-by: Munawar Hafiz <munawar@munawars-mbp.lan>
2024-06-15 17:11:59 -06:00
Mark Waite
3015251174
[JENKINS-73129] Remove Windows path traversal escape hatch from SECURITY-2481 ( #9387 )
...
Remove SECURITY-2481 escape hatch
https://www.jenkins.io/security/advisory/2021-10-06/#SECURITY-2481 was
published in October 2021 with an escape hatch that allows users to
enable the path traversal vulnerability on Windows. Jetty 12 detects
the vulernability even before the request reaches Jenkins and returns
an HTTP error, as required by the Servlet API specification.
Remove the escape hatch because the escape hatch is intended to be
temporary and we don't want to reimplement the escape hatch within
Jetty configuration.
https://issues.jenkins.io/browse/JENKINS-73129 includes further discussion
of the alternatives.
2024-06-15 06:27:53 -06:00
Jan Faracik
0e54478663
Refine radio inputs ( #9380 )
...
Init
2024-06-15 06:27:35 -06:00
Basil Crow
8793619682
Miscellaneous code cleanup ( #9384 )
2024-06-15 06:27:17 -06:00
renovate[bot]
307ec7e2c7
Update dependency webpack to v5.92.0 ( #9391 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-06-14 22:36:32 -06:00
renovate[bot]
a88b1f4305
Update dependency sass to v1.77.5 ( #9394 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-06-14 22:36:05 -06:00
renovate[bot]
923957d045
Update dependency prettier to v3.3.2 ( #9390 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-06-14 07:23:00 -06:00
renovate[bot]
0f25980ac3
Update Yarn to v4.3.0 ( #9389 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-06-14 07:22:38 -06:00
Basil Crow
1381726b2f
Use `isEmpty()` where possible ( #9383 )
2024-06-14 07:21:57 -06:00
Daniel Beck
df0a13d8fb
Fix web references in comment on obtaining process info on Mac OS ( #9378 )
...
Co-authored-by: Daniel Beck <daniel-beck@users.noreply.github.com>
2024-06-14 07:21:40 -06:00
Jan Faracik
0419465f4d
Rewrite the build history widget ( #9148 )
...
* Squashed commit of the following:
commit 1ce4cb39c7df313ad000225f1f06c21d9d55d7d8
Author: Jan Faracik <43062514+janfaracik@users.noreply.github.com>
Date: Tue Apr 9 09:22:36 2024 +0100
Rename classes
commit 107d7947874a974fc16df00dcdef46a4d55ed0bc
Author: Jan Faracik <43062514+janfaracik@users.noreply.github.com>
Date: Tue Apr 9 08:59:54 2024 +0100
Update HistoryWidget.java
commit 13575bc27caaf902c6685e8dfdb8ecd2ffc6e64a
Author: Jan Faracik <43062514+janfaracik@users.noreply.github.com>
Date: Tue Apr 9 08:59:29 2024 +0100
Hide buttons
commit e5de5465814c810f9bb09722a00727f73b1158b9
Author: Jan Faracik <43062514+janfaracik@users.noreply.github.com>
Date: Tue Apr 9 08:39:04 2024 +0100
Rename classes
commit 47c84afcd1c4e45f1e202a1a38fc68ef9ec8c702
Author: Jan Faracik <43062514+janfaracik@users.noreply.github.com>
Date: Mon Apr 8 23:21:36 2024 +0100
Add animation
commit e7432b693357b800b91bf355a610fbd3ab62223e
Author: Jan Faracik <43062514+janfaracik@users.noreply.github.com>
Date: Mon Apr 8 23:03:19 2024 +0100
Add navigation buttons
commit 448a09419a0706bd83fb73b555ef55c54916da13
Author: Jan Faracik <43062514+janfaracik@users.noreply.github.com>
Date: Mon Apr 8 22:29:32 2024 +0100
Update _dashboard.scss
commit bb85734be0884e7cb244b13267970722db2f8c05
Merge: c451a7223c 27433f19f3
Author: Jan Faracik <43062514+janfaracik@users.noreply.github.com>
Date: Mon Apr 8 22:23:38 2024 +0100
Merge branch 'master' into new-build-history-2
commit c451a7223cfc68651d11c8f83134c0ee000db363
Author: Jan Faracik <43062514+janfaracik@users.noreply.github.com>
Date: Mon Apr 8 13:17:05 2024 +0100
Update _job.scss
commit 960b162dcd95715f6d1567f57d53fcf79591966d
Merge: d020eb66e5 af655e3fdc
Author: Jan Faracik <43062514+janfaracik@users.noreply.github.com>
Date: Mon Apr 8 13:16:54 2024 +0100
Merge branch 'remove-table-usage' into new-build-history-2
commit af655e3fdc
Author: Jan Faracik <43062514+janfaracik@users.noreply.github.com>
Date: Mon Apr 8 13:13:38 2024 +0100
Init
commit d020eb66e54a63c880dc3c335485aff92c86aaad
Author: Jan Faracik <43062514+janfaracik@users.noreply.github.com>
Date: Mon Apr 8 13:09:57 2024 +0100
Update card.jelly
commit 81bc1d45f17adb021d67c15531d51b8421f78132
Author: Jan Faracik <43062514+janfaracik@users.noreply.github.com>
Date: Mon Apr 8 13:07:41 2024 +0100
Update _buttons.scss
commit 4023460b9aa9243f45870e98ca2299a91263bcce
Merge: 875fb8fb4b da5f593fb0
Author: Jan Faracik <43062514+janfaracik@users.noreply.github.com>
Date: Mon Apr 8 13:03:18 2024 +0100
Merge branch 'master' into new-build-history-2
commit 875fb8fb4baa86c45284d71ee6f5a2a39af68aa0
Merge: 2dc9964871 fe60facf91
Author: Jan Faracik <43062514+janfaracik@users.noreply.github.com>
Date: Sat Apr 6 19:29:20 2024 +0100
Merge branch 'master' into new-build-history-2
commit 2dc9964871734a6e8386392d32a13366bc3752e9
Author: Jan Faracik <43062514+janfaracik@users.noreply.github.com>
Date: Fri Apr 5 22:17:08 2024 +0100
Reset files
commit 2da1e14f046e518bc9c22050ddf9f394d65bbc31
Merge: dce466a846 b9fac75ac8
Author: Jan Faracik <43062514+janfaracik@users.noreply.github.com>
Date: Fri Apr 5 22:14:46 2024 +0100
Merge branch 'master' into new-build-history-2
commit dce466a846b5e7bcad40625c8c5bcbd6c6477cf8
Merge: 935c16e1c1 0eed048866
Author: Jan Faracik <43062514+janfaracik@users.noreply.github.com>
Date: Wed Feb 28 13:55:35 2024 +0000
Merge branch 'master' into new-build-history-2
commit 935c16e1c1033c8e33fff49b0e47f9a47615f540
Author: Jan Faracik <43062514+janfaracik@users.noreply.github.com>
Date: Sun Feb 18 17:54:32 2024 +0000
Update entry.jelly
commit 2a19a045970d65e446e4ce894d769fb27bdfd921
Author: Jan Faracik <43062514+janfaracik@users.noreply.github.com>
Date: Sun Feb 18 17:51:58 2024 +0000
Rename classes
commit 3ef46abe52ba75573bb4e634ad3baad95c2b07ba
Author: Jan Faracik <43062514+janfaracik@users.noreply.github.com>
Date: Sun Feb 18 17:29:25 2024 +0000
Update index.jelly
commit da0b2126cdc5f959905ae7eba514a68f891f6620
Merge: 281fac04c0 9d9e2ab467
Author: Jan Faracik <43062514+janfaracik@users.noreply.github.com>
Date: Sun Feb 18 17:27:12 2024 +0000
Merge branch 'revamp-dropdowns' into new-build-history-2
commit 281fac04c00e25ab05ff21c71ab30b263d0e3b9b
Merge: 9c69bd02be a6423541f0
Author: Jan Faracik <43062514+janfaracik@users.noreply.github.com>
Date: Sun Feb 18 17:19:14 2024 +0000
Merge branch 'master' into new-build-history-2
commit 9d9e2ab467
Author: Jan Faracik <43062514+janfaracik@users.noreply.github.com>
Date: Sat Feb 10 19:39:24 2024 +0000
Update templates.js
commit 1c19e431ce
Author: Jan Faracik <43062514+janfaracik@users.noreply.github.com>
Date: Sat Feb 10 19:38:13 2024 +0000
Add clazz
commit 8b944e9e3f
Author: Jan Faracik <43062514+janfaracik@users.noreply.github.com>
Date: Sat Feb 10 15:19:30 2024 +0000
Update utils.js
commit 069fefbe36
Author: Jan Faracik <43062514+janfaracik@users.noreply.github.com>
Date: Sat Feb 10 13:23:16 2024 +0000
Linting
commit 7270712249
Merge: 9865811d38 a6423541f0
Author: Jan Faracik <43062514+janfaracik@users.noreply.github.com>
Date: Sat Feb 10 12:20:02 2024 +0000
Merge branch 'master' into revamp-dropdowns
commit 9865811d38
Merge: 1e22c34016 86d39dd23b
Author: Mark Waite <mark.earl.waite@gmail.com>
Date: Thu Jan 18 05:39:13 2024 -0700
Merge branch 'master' into revamp-dropdowns
commit 9c69bd02bebcc13b695f112952a0ec97b297a8bb
Author: Jan Faracik <43062514+janfaracik@users.noreply.github.com>
Date: Sun Jan 14 13:56:49 2024 +0000
Push
commit 347e966aebbe013f171329c4fb00dee4acd27b33
Author: Jan Faracik <43062514+janfaracik@users.noreply.github.com>
Date: Sun Jan 14 13:53:52 2024 +0000
Update filter-build-history.js
commit 0b4a5dd5f4834824d70324b0698f9194a2ffb64b
Author: Jan Faracik <43062514+janfaracik@users.noreply.github.com>
Date: Sun Jan 14 13:49:54 2024 +0000
Renam
commit a8277bf932fc3ff5c99ec9f3496c05ed977e7990
Author: Jan Faracik <43062514+janfaracik@users.noreply.github.com>
Date: Sun Jan 14 13:46:53 2024 +0000
Fix
commit 855bf1317e8d7187cf4b2016f8571379c841ba91
Merge: 61b0a87e6c 1eb29a8792
Author: Jan Faracik <43062514+janfaracik@users.noreply.github.com>
Date: Sun Jan 14 13:38:51 2024 +0000
Merge branch 'master' into new-build-history-2
commit 1e22c34016
Merge: 44981c2a66 48661db9d1
Author: Jan Faracik <43062514+janfaracik@users.noreply.github.com>
Date: Sun Jan 14 13:33:14 2024 +0000
Merge branch 'master' into revamp-dropdowns
commit 44981c2a66
Merge: 0075375c9a 1eb29a8792
Author: Jan Faracik <43062514+janfaracik@users.noreply.github.com>
Date: Mon Jan 8 21:14:51 2024 +0000
Merge branch 'master' into revamp-dropdowns
commit 0075375c9a
Merge: 2dd9e32fab 78cdaa9f29
Author: Jan Faracik <43062514+janfaracik@users.noreply.github.com>
Date: Thu Jan 4 13:26:24 2024 +0000
Merge branch 'master' into revamp-dropdowns
commit 2dd9e32fab
Author: Jan Faracik <43062514+janfaracik@users.noreply.github.com>
Date: Thu Jan 4 13:24:53 2024 +0000
Remove translations
commit 6800c8886a
Author: Jan Faracik <43062514+janfaracik@users.noreply.github.com>
Date: Thu Jan 4 13:16:19 2024 +0000
Update header.jelly
commit 1c3961bb64
Author: Jan Faracik <43062514+janfaracik@users.noreply.github.com>
Date: Thu Jan 4 13:15:49 2024 +0000
Add additional docs
commit 163be529e7
Merge: 4cc43e47f9 444f2de993
Author: Jan Faracik <43062514+janfaracik@users.noreply.github.com>
Date: Wed Jan 3 21:22:20 2024 +0000
Merge branch 'master' into revamp-dropdowns
commit 61b0a87e6c3412496e65269e20055d6123d9adb8
Author: Jan Faracik <43062514+janfaracik@users.noreply.github.com>
Date: Thu Dec 14 19:38:45 2023 +0000
More
commit dcd6aaa54576bd1524d071b4cbe75d51aa4244f8
Merge: 0c40b9f3fc edce488000
Author: Jan Faracik <43062514+janfaracik@users.noreply.github.com>
Date: Thu Dec 14 19:38:25 2023 +0000
Merge branch 'stop-button' into new-build-history-2
commit edce488000
Author: Jan Faracik <43062514+janfaracik@users.noreply.github.com>
Date: Thu Dec 14 16:06:00 2023 +0000
Tidy up
commit 157ba0b5bc
Author: Jan Faracik <43062514+janfaracik@users.noreply.github.com>
Date: Thu Dec 14 16:04:46 2023 +0000
Fix i18n
commit a112bd90c1
Author: Jan Faracik <43062514+janfaracik@users.noreply.github.com>
Date: Wed Dec 13 22:57:17 2023 +0000
Update _buttons.scss
commit 91751cf650
Author: Jan Faracik <43062514+janfaracik@users.noreply.github.com>
Date: Wed Dec 13 22:39:18 2023 +0000
Update executors.jelly
commit cd89aeabf4
Author: Jan Faracik <43062514+janfaracik@users.noreply.github.com>
Date: Wed Dec 13 22:31:06 2023 +0000
Fixes
commit 1384091663
Author: Jan Faracik <43062514+janfaracik@users.noreply.github.com>
Date: Wed Dec 13 22:28:54 2023 +0000
Init
commit 0c40b9f3fcb4f12fba2f0e0d45bffd94bb1e196b
Author: Jan Faracik <43062514+janfaracik@users.noreply.github.com>
Date: Wed Dec 13 16:50:53 2023 +0000
Update _buttons.scss
commit 50fe8fc74312296ba6ae1b4a43f6a67680846970
Author: Jan Faracik <43062514+janfaracik@users.noreply.github.com>
Date: Wed Dec 13 13:13:10 2023 +0000
add view transitions
commit d1fd7a9a93b241e93b18ed97af696bd32997d8b7
Author: Jan Faracik <43062514+janfaracik@users.noreply.github.com>
Date: Tue Dec 12 20:25:44 2023 +0000
Tidy up
commit 512b9a1baaa8482aa597785a92e6183316f60030
Author: Jan Faracik <43062514+janfaracik@users.noreply.github.com>
Date: Tue Dec 12 19:29:16 2023 +0000
Push
commit 4f1569079c353c0eddd5f665867d4239a35d8797
Author: Jan Faracik <43062514+janfaracik@users.noreply.github.com>
Date: Mon Dec 11 23:30:09 2023 +0000
push
commit ad75b0f10f5afae5b61e2ac97d44b51ede5801a4
Author: Jan Faracik <43062514+janfaracik@users.noreply.github.com>
Date: Mon Dec 11 23:24:11 2023 +0000
Update _buttons.scss
commit cec222e3bdd9104095abfaa82f07e953fa69d097
Author: Jan Faracik <43062514+janfaracik@users.noreply.github.com>
Date: Mon Dec 11 23:23:52 2023 +0000
Update _buttons.scss
commit 4cc43e47f9
Author: Jan Faracik <43062514+janfaracik@users.noreply.github.com>
Date: Sun Dec 10 16:04:28 2023 +0000
Add docs
commit a4c7f4f28c
Author: Jan Faracik <43062514+janfaracik@users.noreply.github.com>
Date: Sun Dec 10 16:00:23 2023 +0000
Update taglib
commit c01db44de3
Author: Jan Faracik <43062514+janfaracik@users.noreply.github.com>
Date: Sun Dec 10 15:56:50 2023 +0000
Init
commit 21bb3f4262cf65d30c48b76dc43b16a424d357ca
Merge: d3e2920434 428d0e560a
Author: Jan Faracik <43062514+janfaracik@users.noreply.github.com>
Date: Sun Dec 10 13:22:00 2023 +0000
Merge branch 'restyle-cards' into new-build-history-2
commit 428d0e560a
Author: Jan Faracik <43062514+janfaracik@users.noreply.github.com>
Date: Thu Dec 7 20:17:10 2023 +0000
Lower weight
commit ac5c255530
Author: Jan Faracik <43062514+janfaracik@users.noreply.github.com>
Date: Thu Dec 7 20:15:28 2023 +0000
Remove more bold weights
commit 2922a690bb
Author: Jan Faracik <43062514+janfaracik@users.noreply.github.com>
Date: Thu Dec 7 20:11:33 2023 +0000
Update _style.scss
commit 9657d460ac
Author: Jan Faracik <43062514+janfaracik@users.noreply.github.com>
Date: Thu Dec 7 20:06:16 2023 +0000
Init
commit d3e2920434d44a45e968392c7617ad1ba140a062
Merge: a2bd9a08b2 cabc8f67b9
Author: Jan Faracik <43062514+janfaracik@users.noreply.github.com>
Date: Thu Dec 7 19:50:43 2023 +0000
Merge branch 'master' into new-build-history-2
commit a2bd9a08b2679cc706f89cd12908197bf0244b13
Author: Jan Faracik <43062514+janfaracik@users.noreply.github.com>
Date: Sun Nov 26 11:58:22 2023 +0000
Fixes
commit 7cda5049b75bc7e7d7dcc8516ac6b3983d17b3b0
Author: Jan Faracik <43062514+janfaracik@users.noreply.github.com>
Date: Sat Nov 25 12:28:04 2023 +0000
Working build
commit abd994ebe9680f846e13029faa44a2119c861345
Author: Jan Faracik <43062514+janfaracik@users.noreply.github.com>
Date: Sat Nov 25 11:58:42 2023 +0000
Working build
commit 9b6defbf444b35127a81bb4cfd298f7648704e49
Merge: 29fcb64a74 7a0e57e35c
Author: Jan Faracik <43062514+janfaracik@users.noreply.github.com>
Date: Sat Nov 25 11:51:24 2023 +0000
Merge branch 'progress-bar-new' into new-build-history-2
commit 29fcb64a74e37b445cde8b1847a6be988ad3b85c
Author: Jan Faracik <43062514+janfaracik@users.noreply.github.com>
Date: Sat Nov 25 11:51:10 2023 +0000
More
commit 2f946d3f6494223351fc9da3a98654b9a666f766
Author: Jan Faracik <43062514+janfaracik@users.noreply.github.com>
Date: Sat Nov 25 09:17:06 2023 +0000
Update _buttons.scss
commit f5474b33429ff8615c74e7be0cf622904c177a65
Merge: 00c3879a27 982bc48fa0
Author: Jan Faracik <43062514+janfaracik@users.noreply.github.com>
Date: Sat Nov 25 09:16:14 2023 +0000
Merge branch 'use-symbols-for-build-status-new' into new-build-history-2
commit 982bc48fa0
Author: Jan Faracik <43062514+janfaracik@users.noreply.github.com>
Date: Sat Nov 25 09:15:56 2023 +0000
Fix app bar build status icon being incorrect
commit 00c3879a2740e40d81d65463028c82f32782fecf
Author: Jan Faracik <43062514+janfaracik@users.noreply.github.com>
Date: Sat Nov 25 09:12:10 2023 +0000
Fixes
commit a4960e9f2c9b9c17ec6f85fd24ef98ca7362455e
Merge: d28aada2e1 c6f5db0be7
Author: Jan Faracik <43062514+janfaracik@users.noreply.github.com>
Date: Sat Nov 25 08:56:01 2023 +0000
Merge branch 'use-symbols-for-build-status-new' into new-build-history-2
commit d28aada2e1d5434a542d95afadc4c582a691319a
Author: Jan Faracik <43062514+janfaracik@users.noreply.github.com>
Date: Sat Nov 25 08:55:18 2023 +0000
Update _buttons.scss
commit 1d24a19982838f50a6aa6b4510c0fe1090eef364
Author: Jan Faracik <43062514+janfaracik@users.noreply.github.com>
Date: Sat Nov 25 08:52:58 2023 +0000
Init
commit 7a0e57e35c71073258a5635ebba1a87d5456aeda
Author: Jan Faracik <43062514+janfaracik@users.noreply.github.com>
Date: Fri Nov 24 21:19:23 2023 +0000
More
commit 67d4264da9a9ff8539ea74f7462b111d7da46f82
Author: Jan Faracik <43062514+janfaracik@users.noreply.github.com>
Date: Fri Nov 24 21:17:09 2023 +0000
Update _spinner.scss
commit 9befc76209eede89b3e3fd9d124c6ac92ee75c81
Author: Jan Faracik <43062514+janfaracik@users.noreply.github.com>
Date: Fri Nov 24 21:07:55 2023 +0000
Update _spinner.scss
commit 528b46acb3be57f43cf18f09a46cd7caa4ba2120
Author: Jan Faracik <43062514+janfaracik@users.noreply.github.com>
Date: Fri Nov 24 21:01:06 2023 +0000
More
commit ea0c4878137141193ece81a1970007f34e603478
Author: Jan Faracik <43062514+janfaracik@users.noreply.github.com>
Date: Fri Nov 24 20:36:53 2023 +0000
Init
commit c6f5db0be7
Author: Jan Faracik <43062514+janfaracik@users.noreply.github.com>
Date: Fri Nov 24 17:52:28 2023 +0000
Fix icon position
commit 18a84076b5
Merge: aea4d9786e a9c34d7393
Author: Jan Faracik <43062514+janfaracik@users.noreply.github.com>
Date: Fri Nov 24 09:58:54 2023 +0000
Merge branch 'master' into use-symbols-for-build-status-new
commit aea4d9786e
Author: Jan Faracik <43062514+janfaracik@users.noreply.github.com>
Date: Fri Nov 24 09:58:29 2023 +0000
Rename ID
commit 5f76f3840c
Author: Jan Faracik <43062514+janfaracik@users.noreply.github.com>
Date: Mon Nov 20 16:00:14 2023 +0000
Init
* Update _job.scss
* Lint
* Update filter-build-history.js
* Hide controls if not navigable
* Update RunTest.java
* Add basic JSDoc
* Use dataset rather than attributes
* Update filter-build-history.js
* Rename JS
* Update RunTest.java
* Update jenkins-test-harness version (thanks again Tim!)
* Update _job.scss
* Remove unused SCSS
* Update AbstractScmTagActionTest.java
* Update builds-card.js
* Update builds-card.js
* Rewrite SCSS/Jelly to handle more complex scenarios
* Lint
* Tidy up
* Update _side-panel-widgets.scss
* Add background to card
* Fix lint
* Update queue-items.jelly
* Fix cancel button
* Update queue-items.jelly
* Use debounce properly and adjust time to make it smoother
* Use jenkins-hidden
* Replace TODOs with comments, fix card controls showing when there are no builds
* Add hidden text for previous/next buttons
* Update builds-card.js
* Add data-tooltip-append-to-parent="true" to tooltips
* Wrap badges
* Fix relative expandable link
* Use chevron-down rather than menu icon
---------
Co-authored-by: Daniel Beck <1831569+daniel-beck@users.noreply.github.com>
Co-authored-by: Tim Jacomb <21194782+timja@users.noreply.github.com>
Co-authored-by: Tim Jacomb <timjacomb1@gmail.com>
2024-06-14 07:21:23 -06:00
dependabot[bot]
9459e1e061
Bump stapler.version from 1872.ve203fa_6b_b_98d to 1880.vb_6d94a_3b_05db_ ( #9388 )
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-06-13 14:56:09 -07:00
dependabot[bot]
f983c8ac6a
Bump io.jenkins.plugins:commons-text-api from 1.11.0-109.vfe16c66636eb_ to 1.12.0-119.v73ef73f2345d ( #9386 )
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-06-13 10:54:00 -07:00
dependabot[bot]
3081a5cb5a
Bump org.springframework:spring-framework-bom from 5.3.36 to 5.3.37 ( #9385 )
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-06-13 10:53:35 -07:00
Jan Faracik
2077112c4c
Fix badge color in dropdowns ( #9381 )
...
Init
2024-06-13 09:44:43 -06:00
KevinRealAlcalde
975b55aeea
Fix description of View/Read permission ( #9375 )
...
Update Messages.properties
2024-06-13 09:43:46 -06:00
Basil Crow
d2d1d0d20f
Use pattern matching for `instanceof` ( #9382 )
2024-06-13 06:04:42 +01:00
Daniel Beck
a2a852b0ba
Needs Java 17 for development now ( #9376 )
...
Co-authored-by: Daniel Beck <daniel-beck@users.noreply.github.com>
2024-06-11 14:49:39 -06:00
Jan Faracik
e7f3e23342
Refine form controls appearance ( #9365 )
2024-06-11 15:52:44 +01:00
Basil Crow
75f6c56c77
Require Java 17 or newer ( #9358 )
2024-06-11 15:52:23 +01:00
Damien Duportal
d4e970faee
[JENKINS-72577] Revert "Increase MavenTest#sensitiveParameters() timeout to 500s" ( #9374 )
...
Co-authored-by: Tim Jacomb <21194782+timja@users.noreply.github.com>
2024-06-11 15:52:11 +01:00
Jenkins Release Bot
624270f58d
[maven-release-plugin] prepare for next development iteration
2024-06-11 13:30:17 +00:00
Jenkins Release Bot
7edc099b67
[maven-release-plugin] prepare release jenkins-2.462
2024-06-11 13:29:40 +00:00
dependabot[bot]
cfdc7a5949
Bump org.jenkins-ci.main:jenkins-test-harness from 2223.v062296742946 to 2225.v04fa_3929c9b_5 ( #9373 )
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-06-10 19:14:48 -07:00
Jan Faracik
73de53a7b6
Refine button appearances in sidebars, menus, pages and breadcrumbs ( #9367 )
...
* Push
* Push
* Update _buttons.scss
2024-06-10 19:08:08 -06:00
Jan Faracik
a6542b98a9
Adjust heading weights and sizes ( #9366 )
...
* Init
* Update _app-bar.scss
2024-06-10 19:03:54 -06:00
Bob Du
0ad66571bf
[JENKINS-73246] Fix text shown in unexpected locale ( #9370 )
...
Signed-off-by: Bob Du <i@bobdu.cc>
2024-06-10 19:02:09 -06:00
dependabot[bot]
386e04c4e5
Bump org.jenkins-ci.main:jenkins-test-harness from 2216.v8f497401120d to 2223.v062296742946 ( #9371 )
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-06-10 12:17:51 -07:00
dependabot[bot]
967db8566c
Bump org.jenkins-ci.modules:sshd from 3.328.v659088899699 to 3.330.vc866a_8389b_58 ( #9372 )
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-06-10 12:17:27 -07:00
renovate[bot]
9f4d116b8e
Update dependency globals to v15.4.0 ( #9369 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-06-10 10:24:19 -07:00
renovate[bot]
14dad30b9d
Update babel monorepo to v7.24.7 ( #9364 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-06-08 22:13:47 +02:00
renovate[bot]
c6ceb1051d
Update dependency prettier to v3.3.1 ( #9363 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-06-08 16:07:19 +01:00
renovate[bot]
a6665f89eb
Update dependency lit to v3.1.4 ( #9360 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-06-08 09:28:31 +02:00
dependabot[bot]
f8e55c78f8
Bump io.jenkins.plugins:commons-lang3-api from 3.13.0-62.v7d18e55f51e2 to 3.14.0-76.vda_5591261cfe ( #9356 )
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-06-06 13:06:26 -07:00
dependabot[bot]
9a30fa3d00
Bump org.jenkins-ci.modules:sshd from 3.322.v159e91f6a_550 to 3.328.v659088899699 ( #9351 )
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-06-06 13:05:08 -07:00
Markus Winter
5978ebe594
[JENKINS-73243] quote replacement string in symbol tooltips ( #9347 )
2024-06-06 13:20:38 +01:00
Dmitry Platonov
8088382929
[JENKINS-72854] fix the enum jelly to take readOnlyMode into account ( #9336 )
2024-06-06 13:20:27 +01:00
renovate[bot]
7aad678324
Update dependency prettier to v3.3.0 ( #9350 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-06-04 15:44:46 -07:00