Skip to content

Commit 861f7ef

Browse files
authored
Merge branch 'main' into cf_template_wording_SUP-4542
2 parents e5c4608 + bd07f94 commit 861f7ef

File tree

3 files changed

+33
-2
lines changed

3 files changed

+33
-2
lines changed

CHANGELOG.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,37 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

7+
## [v6.41.1](https://github.com/buildkite/elastic-ci-stack-for-aws/compare/v6.41.0...v6.41.1) (2025-09-08)
8+
9+
* Update agent version to 3.104.0 [#1570](https://github.com/buildkite/elastic-ci-stack-for-aws/pull/1570) ([matthewborden](https://github.com/matthewborden))
10+
* Add build purge option on disk full for Buildkite agents [#1567](https://github.com/buildkite/elastic-ci-stack-for-aws/pull/1567) ([JoeColeman95](https://github.com/JoeColeman95))
11+
12+
<details>
13+
<summary><h3>Agent Changelog</h3></summary>
14+
15+
## [v3.104.0](https://github.com/buildkite/agent/tree/v3.104.0) (2025-09-05)
16+
[Full Changelog](https://github.com/buildkite/agent/compare/v3.103.1...v3.104.0)
17+
18+
### Security
19+
- Automatically redact OIDC tokens in logs [#3450](https://github.com/buildkite/agent/pull/3450) (@matthewborden)
20+
21+
### Added
22+
- Allow multiple pipeline files for upload [#3431](https://github.com/buildkite/agent/pull/3431) (@DrJosh9000)
23+
24+
### Changed
25+
- Promote use-zzglob experiment to default [#3428](https://github.com/buildkite/agent/pull/3428) (@DrJosh9000)
26+
27+
### Fixed
28+
- Ensure bootstrap waits for signal propagation before exiting [#3443](https://github.com/buildkite/agent/pull/3443) (@moskyb)
29+
- Fix experiment promotion message [#3432](https://github.com/buildkite/agent/pull/3432) (@DrJosh9000)
30+
31+
### Internal
32+
- Add disclosures/credits to PR template [#3433](https://github.com/buildkite/agent/pull/3433) (@DrJosh9000)
33+
- Fix code owners [#3422](https://github.com/buildkite/agent/pull/3422) (@zhming0)
34+
- Dependency updates [#3437](https://github.com/buildkite/agent/pull/3437), [#3438](https://github.com/buildkite/agent/pull/3438), [#3442](https://github.com/buildkite/agent/pull/3442), [#3441](https://github.com/buildkite/agent/pull/3441), [#3435](https://github.com/buildkite/agent/pull/3435), [#3425](https://github.com/buildkite/agent/pull/3425), [#3423](https://github.com/buildkite/agent/pull/3423), [#3426](https://github.com/buildkite/agent/pull/3426), [#3427](https://github.com/buildkite/agent/pull/3427), [#3424](https://github.com/buildkite/agent/pull/3424) (@dependabot[bot])
35+
</details>
36+
37+
738
## [v6.41.0](https://github.com/buildkite/elastic-ci-stack-for-aws/tree/v6.41.0) (2025-08-29)
839
[Full Changelog](https://github.com/buildkite/elastic-ci-stack-for-aws/compare/v6.40.10...v6.41.0)
940

packer/linux/scripts/install-buildkite-agent.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ sudo mkdir -p /var/lib/buildkite-agent/.aws
1515
sudo cp /tmp/conf/aws/config /var/lib/buildkite-agent/.aws/config
1616
sudo chown -R buildkite-agent:buildkite-agent /var/lib/buildkite-agent/.aws
1717

18-
AGENT_VERSION=3.103.1
18+
AGENT_VERSION=3.104.0
1919
echo "Downloading buildkite-agent v${AGENT_VERSION} stable..."
2020
sudo curl -Lsf -o /usr/bin/buildkite-agent-stable \
2121
"https://download.buildkite.com/agent/stable/${AGENT_VERSION}/buildkite-agent-linux-${ARCH}"

packer/windows/scripts/install-buildkite-agent.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Stop script execution when a non-terminating error occurs
22
$ErrorActionPreference = "Stop"
33

4-
$AGENT_VERSION = "3.103.1"
4+
$AGENT_VERSION = "3.104.0"
55

66
Write-Output "Creating bin dir..."
77
if (-not (Test-Path C:\buildkite-agent\bin)) { New-Item -ItemType Directory -Path C:\buildkite-agent\bin -Force }

0 commit comments

Comments
 (0)