Skip to content

Commit

Permalink
Merge branch 'master' into renovate/faraday-2.x
Browse files Browse the repository at this point in the history
  • Loading branch information
krisstern authored Dec 13, 2024
2 parents 29cafc8 + 1b93b9c commit 5be6f1c
Show file tree
Hide file tree
Showing 89 changed files with 104 additions and 15 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/compress-images.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
github.event.pull_request.head.repo.full_name == github.repository)
steps:
- name: Checkout Branch
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Compress Images
id: calibre
uses: calibreapp/image-actions@main
Expand All @@ -48,7 +48,7 @@ jobs:
if: |
github.event_name != 'pull_request' &&
steps.calibre.outputs.markdown != ''
uses: peter-evans/create-pull-request@v4
uses: peter-evans/create-pull-request@v7
with:
title: Auto Compress Images
branch-suffix: timestamp
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/updatecli.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
uses: actions/checkout@v4

- name: Install Updatecli in the runner
uses: updatecli/updatecli-action@v2.71.0
uses: updatecli/updatecli-action@v2.72.0

- name: Run Updatecli in Dry Run mode
run: updatecli diff --config ./updatecli/updatecli.d --values ./updatecli/values.github-action.yaml
Expand Down
2 changes: 1 addition & 1 deletion STYLEGUIDE.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ node {
// Declarative //
pipeline {
agent { docker { image 'node:22.12.0-alpine3.20' } }
agent { docker { image 'node:22.12.0-alpine3.21' } }
stages {
stage('Build') {
sh 'npm install'
Expand Down
81 changes: 81 additions & 0 deletions content/_data/changelogs/weekly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25420,6 +25420,87 @@
# pull: 10018 (PR title: Update dependency stylelint to v16.11.0)
# pull: 10020 (PR title: Update eslint monorepo to v9.16.0)

- version: '2.489'
date: 2024-12-09
changes:
- type: rfe
category: rfe
pull: 7569
authors:
- janfaracik
- timja
- NotMyFault
pr_title: Overhaul search with a Command Palette
message: |-
Add Command Palette as a replacement for the search bar.
- type: rfe
category: rfe
pull: 9995
issue: 74858
authors:
- tejasdrolia
pr_title: "[JENKINS-74858] Added validation for Password length in FIPS mode"
message: |-
Added password validation to ensure that existing users cannot create a password of less than 14 characters in length when in FIPS mode.
- type: bug
category: regression
pull: 7078
issue: 69549
authors:
- frankie139506
- NotMyFault
- timja
pr_title: "[JENKINS-69549] Margins for headers and paragraphs make descriptions
…"
message: |-
Reduce spacing in help files.
- type: bug
category: regression
pull: 10022
authors:
- daniel-beck
pr_title: Revert "Fixed spotbugs `PATH_TRAVERSAL_IN` issue in `FileBoolean`"
message: |-
Restore the original behavior of <code>FileBoolean(Class, String)</code> (regression in 2.488).
- type: rfe
category: developer
pull: 9958
issue: 73355
authors:
- jonesbusy
pr_title: JENKINS-73355 Removal of commons-compress from core
message: |-
Developer: The <code>commons-compress</code> library is no longer provided by Jenkins core, use the <a href="https://plugins.jenkins.io/commons-compress-api/">Commons Compress API plugin</a> instead.
- type: rfe
category: developer
pull: 10019
authors:
- slide
pr_title: Allow subclasses of UpdateSite to call updateData
message: |-
Developer: Allow <code>UpdateSite</code> subclasses to call <code>updateData</code> method in <code>UpdateSite</code> to write out JSON.
- type: rfe
category: developer
pull: 9959
issue: 37241
authors:
- timja
pr_title: "[JENKINS-37241] Support for query parameters in autocomplete"
message: |-
Developer: Add support for <code>@QueryParameter</code> to the autocomplete component.
Change autocomplete component to use <code>POST</code> for sending requests.
# pull: 8435 (PR title: Update appearance of keyboard shortcut tooltips)
# pull: 10021 (PR title: Update dependency org.jenkins-ci.main:jenkins-test-harness to v2364)
# pull: 10027 (PR title: Update dependency globals to v15.13.0)
# pull: 10029 (PR title: Update dependency org.jenkins-ci.plugins:junit to v1311)
# pull: 10030 (PR title: Update dependency sass to v1.82.0)
# pull: 10031 (PR title: Update dependency webpack to v5.97.0)
# pull: 10033 (PR title: Update dependency prettier to v3.4.2)
# pull: 10034 (PR title: Update dependency sass-loader to v16.0.4)
# pull: 10035 (PR title: Fix attributes leaking in the toggle switch component)
# pull: 10037 (PR title: Update dependency webpack to v5.97.1)
# pull: 10038 (PR title: Update dependency @babel/cli to v7.26.4)

# DO NOT EDIT THIS FILE DIRECTLY ON GITHUB IF YOU HAVE COMMIT ACCESS
# ALL CHANGES MUST GO THROUGH PULL REQUESTS
# MALFORMED FILE CONTENTS WILL BREAK THE SITE BUILD
3 changes: 3 additions & 0 deletions content/doc/book/managing/groovy-hook-scripts.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,9 @@ Jenkins.instance.doQuietDown();
Output is logged to the Jenkins log file. For Debian based users, this
is /var/log/jenkins/jenkins.log

NOTE: If you are using the Jenkins Docker image, `$JENKINS_HOME/init.groovy.d/` does not exist.
Instead, you should place the Groovy script files in `/usr/share/jenkins/ref/init.groovy.d/`, as this directory is copied when the Docker container starts.
For more details, refer to the link:https://github.com/jenkinsci/docker?tab=readme-ov-file#installing-more-tools[Installing more tools documentation].

== Boot failure hook
When Jenkins encounters a fatal problem during boot, it'll invoke
Expand Down
14 changes: 9 additions & 5 deletions content/doc/book/pipeline/docker.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Any tool that can be link:https://hub.docker.com[packaged in a Docker container]
// Declarative //
pipeline {
agent {
docker { image 'node:22.12.0-alpine3.20' }
docker { image 'node:22.12.0-alpine3.21' }
}
stages {
stage('Test') {
Expand All @@ -45,7 +45,7 @@ pipeline {
// Script //
node {
/* Requires the Docker Pipeline plugin to be installed */
docker.image('node:22.12.0-alpine3.20').inside {
docker.image('node:22.12.0-alpine3.21').inside {
stage('Test') {
sh 'node --eval "console.log(process.platform,process.env.CI)"'
}
Expand All @@ -68,6 +68,10 @@ linux true
[Pipeline] }
----

=== Additional arguments

Additional arguments, such as the `registryUrl`, are described in the link:../syntax/#agent-parameters[agent parameters] syntax documentation.

=== Workspace synchronization

If it is important to keep the workspace synchronized with other stages, use `reuseNode true`.
Expand Down Expand Up @@ -173,7 +177,7 @@ pipeline {
}
stage('Front-end') {
agent {
docker { image 'node:22.12.0-alpine3.20' }
docker { image 'node:22.12.0-alpine3.21' }
}
steps {
sh 'node --version'
Expand All @@ -192,7 +196,7 @@ node {
}
stage('Front-end') {
docker.image('node:22.12.0-alpine3.20').inside {
docker.image('node:22.12.0-alpine3.21').inside {
sh 'node --version'
}
}
Expand All @@ -210,7 +214,7 @@ Reusing an example from above, with a more custom `Dockerfile`:
.Dockerfile
[source]
----
FROM node:22.12.0-alpine3.20
FROM node:22.12.0-alpine3.21
RUN apk add -U subversion
----
Expand Down
4 changes: 2 additions & 2 deletions content/doc/pipeline/tour/agents.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ link:/doc/book/pipeline/syntax#agent[syntax reference].
// Declarative //
pipeline {
agent {
docker { image 'node:22.12.0-alpine3.20' }
docker { image 'node:22.12.0-alpine3.21' }
}
stages {
stage('Test') {
Expand All @@ -61,7 +61,7 @@ pipeline {
// Script //
node {
/* Requires the Docker Pipeline plugin to be installed */
docker.image('node:22.12.0-alpine3.20').inside {
docker.image('node:22.12.0-alpine3.21').inside {
stage('Test') {
sh 'node --eval "console.log(process.arch,process.platform)"'
}
Expand Down
8 changes: 4 additions & 4 deletions content/doc/pipeline/tour/hello-world.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ node {
// Declarative //
/* Requires the Docker Pipeline plugin */
pipeline {
agent { docker { image 'node:22.12.0-alpine3.20' } }
agent { docker { image 'node:22.12.0-alpine3.21' } }
stages {
stage('build') {
steps {
Expand All @@ -96,7 +96,7 @@ pipeline {
/* Requires the Docker Pipeline plugin */
node {
stage('Build') {
docker.image('node:22.12.0-alpine3.20').inside {
docker.image('node:22.12.0-alpine3.21').inside {
sh 'node --version'
}
}
Expand Down Expand Up @@ -137,7 +137,7 @@ node {
// Declarative //
/* Requires the Docker Pipeline plugin */
pipeline {
agent { docker { image 'python:3.13.0-alpine3.20' } }
agent { docker { image 'python:3.13.1-alpine3.21' } }
stages {
stage('build') {
steps {
Expand All @@ -150,7 +150,7 @@ pipeline {
/* Requires the Docker Pipeline plugin */
node {
stage('Build') {
docker.image('python:3.13.0-alpine3.20').inside {
docker.image('python:3.13.1-alpine3.21').inside {
sh 'python --version'
}
}
Expand Down
Binary file modified content/images/adopters/Alauda.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified content/images/avatars/Alaurant.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified content/images/avatars/HrushikeshRao.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified content/images/avatars/KunalSin9h.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified content/images/avatars/Yaniv-git.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified content/images/avatars/afalko.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified content/images/avatars/ajard.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified content/images/avatars/aki-7.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified content/images/avatars/alecharp.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified content/images/avatars/alyssat.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified content/images/avatars/andreachiera.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified content/images/avatars/asavanchuk.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified content/images/avatars/ash-sxn.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified content/images/avatars/batmat.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified content/images/avatars/baymac.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified content/images/avatars/berviantoleo.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified content/images/avatars/bicschneider.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified content/images/avatars/brentlaster.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified content/images/avatars/cdfoundation.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified content/images/avatars/darinpope.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified content/images/avatars/dduportal.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified content/images/avatars/dernDren161.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified content/images/avatars/dheerajodha.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified content/images/avatars/dkjellin.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified content/images/avatars/ewelinawilkosz.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified content/images/avatars/freyam.jpg
Binary file modified content/images/avatars/fwilhe.jpg
Binary file modified content/images/avatars/glenduca.jpg
Binary file modified content/images/avatars/iamrajiv.jpg
Binary file modified content/images/avatars/ignacio_fernandez.jpg
Binary file modified content/images/avatars/imskr.jpg
Binary file modified content/images/avatars/jagruti.jpg
Binary file modified content/images/avatars/janfaracik.jpg
Binary file modified content/images/avatars/janjoerke.jpg
Binary file modified content/images/avatars/jd.jpg
Binary file modified content/images/avatars/jeffret-b.jpg
Binary file modified content/images/avatars/jleon.jpg
Binary file modified content/images/avatars/jmMeessen.jpg
Binary file modified content/images/avatars/jshen.jpg
Binary file modified content/images/avatars/jstrachan.jpeg
Binary file modified content/images/avatars/justinharringa.jpeg
Binary file modified content/images/avatars/keshawilliams.jpg
Binary file modified content/images/avatars/kguerroudj.jpg
Binary file modified content/images/avatars/kohsuke.jpeg
Binary file modified content/images/avatars/koushartasneem.jpg
Binary file modified content/images/avatars/kursonsk.jpg
Binary file modified content/images/avatars/linuxsuren.jpg
Binary file modified content/images/avatars/lnewman.jpeg
Binary file modified content/images/avatars/loghijiaha.jpeg
Binary file modified content/images/avatars/marckk.jpg
Binary file modified content/images/avatars/markewaite.jpg
Binary file modified content/images/avatars/michaelhuettermann.jpg
Binary file modified content/images/avatars/michaelneale.jpg
Binary file modified content/images/avatars/mostafaashraf.jpg
Binary file modified content/images/avatars/mwp565733.jpg
Binary file modified content/images/avatars/notmyfault.jpeg
Binary file modified content/images/avatars/nouralmulhem.jpg
Binary file modified content/images/avatars/omkar_dsd.jpg
Binary file modified content/images/avatars/pvtuan10.jpeg
Binary file modified content/images/avatars/ravisharma.jpg
Binary file modified content/images/avatars/rishabhbudhouliya.jpg
Binary file modified content/images/avatars/romenrg.jpg
Binary file modified content/images/avatars/runzexia.jpg
Binary file modified content/images/avatars/ryansmith303.jpg
Binary file modified content/images/avatars/sharmapulkit04.jpg
Binary file modified content/images/avatars/shashankawasthi88.jpg
Binary file modified content/images/avatars/slide_o_mix.jpg
Binary file modified content/images/avatars/sridamul.jpg
Binary file modified content/images/avatars/stackscribe.jpg
Binary file modified content/images/avatars/stellargo.jpeg
Binary file modified content/images/avatars/timja.jpg
Binary file modified content/images/avatars/tracymiranda.jpg
Binary file modified content/images/avatars/tslmy.png
Binary file modified content/images/avatars/uhafner.jpg
Binary file modified content/images/avatars/vihaanthora.jpg
Binary file modified content/images/avatars/vsilverman.jpg
Binary file modified content/images/avatars/wadeck.jpg
Binary file modified content/images/avatars/zaycodes.jpg
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ skills:
mentors:
- "krisstern"
- "gounthar"
- "kmartens27"
links:
meetings: /projects/gsoc/#office-hours
---
Expand Down
Binary file modified content/sites/default/files/images/cph2015.thumbnail.jpeg

0 comments on commit 5be6f1c

Please sign in to comment.