Skip to content

Commit ddf3566

Browse files
authored
Merge branch 'main' into docker
2 parents 10e1adb + a79a664 commit ddf3566

File tree

3 files changed

+15
-2
lines changed

3 files changed

+15
-2
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,19 @@ 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.37.0](https://github.com/buildkite/elastic-ci-stack-for-aws/compare/v6.36.0...v6.37.0) (2025-04-30)
8+
9+
### Added
10+
* Option to recursively copy AWS SSM parameters to an env file by @wolfeidau in https://github.com/buildkite/elastic-ci-stack-for-aws/pull/1455
11+
* More instance types by @ivannalisetska in https://github.com/buildkite/elastic-ci-stack-for-aws/pull/1465
12+
* `BuildkiteAgentSignalGracePeriod` parameter by @mcncl in https://github.com/buildkite/elastic-ci-stack-for-aws/pull/1468
13+
14+
### Changed
15+
* Buildkite Agent v3.97.0, was v3.93.1 by @pda & @PriyaSudip in https://github.com/buildkite/elastic-ci-stack-for-aws/pull/1473 & https://github.com/buildkite/elastic-ci-stack-for-aws/pull/1453
16+
* Go 1.23 by @mcncl in https://github.com/buildkite/elastic-ci-stack-for-aws/pull/1467
17+
* Go 1.23.6 (just fixes) by @mcncl in https://github.com/buildkite/elastic-ci-stack-for-aws/pull/1469
18+
* Bump golang.org/x/sys from 0.30.0 to 0.32.0 by @dependabot in https://github.com/buildkite/elastic-ci-stack-for-aws/pull/1464
19+
720
## [v6.36.0](https://github.com/buildkite/elastic-ci-stack-for-aws/compare/v6.35.0...v6.36.0) (2025-03-10)
821

922
### Changed

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.94.0
18+
AGENT_VERSION=3.97.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.94.0"
4+
$AGENT_VERSION = "3.97.0"
55

66
Write-Output "Creating bin dir..."
77
New-Item -ItemType directory -Path C:\buildkite-agent\bin

0 commit comments

Comments
 (0)