Skip to content

Commit a14d852

Browse files
author
Himani Deshpande
committed
Upgrade Mysql to 8.0.39
1 parent 2ecfabc commit a14d852

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ This file is used to list changes made in each version of the AWS ParallelCluste
77
------
88

99
**CHANGES**
10+
- Upgrade mysql-community-client to version 8.0.39.
1011

1112
**BUG FIXES**
1213
- Fix an issue in the way we get region when manage volumes so that it can correctly handle local zone.

cookbooks/aws-parallelcluster-slurm/resources/mysql_client/partial/_common.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@
3535

3636
action_class do
3737
def package_version
38-
"8.0.36-1"
38+
"8.0.39-1"
3939
end
4040

4141
def package_source_version
42-
"8.0.36"
42+
"8.0.39"
4343
end
4444

4545
def package_filename

cookbooks/aws-parallelcluster-slurm/spec/unit/resources/mysql_client_spec.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ def self.validate(chef_run)
2323
%w(x86_64 aarch64).each do |architecture|
2424
context "on #{platform}#{version} #{architecture}" do
2525
cached(:source_dir) { 'SOURCE_DIR' }
26-
cached(:package_source_version) { '8.0.36' }
27-
cached(:package_version) { '8.0.36-1' }
26+
cached(:package_source_version) { '8.0.39' }
27+
cached(:package_version) { '8.0.39-1' }
2828
cached(:package_filename) { "mysql-community-client-#{package_version}.tar.gz" }
2929
cached(:s3_url) { 's3://url' }
3030
cached(:package_platform) do

cookbooks/aws-parallelcluster-slurm/test/controls/mysql_client_spec.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
mysql_packages.each do |pkg|
3333
describe package(pkg) do
3434
it { should be_installed }
35-
its('version') { should match /^8.0.36-/ } unless ubuntu
35+
its('version') { should match /^8.0.39-/ } unless ubuntu
3636
end
3737
end
3838
end
@@ -48,7 +48,7 @@
4848
its('content') do
4949
should eq %(You can get MySQL source code here:
5050
51-
https://#{node['cluster']['region']}-aws-parallelcluster.s3.#{node['cluster']['region']}.amazonaws.com/archives/source/mysql-8.0.36.tar.gz
51+
https://#{node['cluster']['region']}-aws-parallelcluster.s3.#{node['cluster']['region']}.amazonaws.com/archives/source/mysql-8.0.39.tar.gz
5252
)
5353
end
5454
end

0 commit comments

Comments
 (0)