Skip to content

Commit

Permalink
Upgrade Mysql to 8.0.39 (#2837)
Browse files Browse the repository at this point in the history
Co-authored-by: Himani Deshpande <[email protected]>
  • Loading branch information
himani2411 and Himani Deshpande authored Nov 19, 2024
1 parent 2ecfabc commit f0a4ebe
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ This file is used to list changes made in each version of the AWS ParallelCluste
------

**CHANGES**
- Upgrade mysql-community-client to version 8.0.39.

**BUG FIXES**
- Fix an issue in the way we get region when manage volumes so that it can correctly handle local zone.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,11 @@

action_class do
def package_version
"8.0.36-1"
"8.0.39-1"
end

def package_source_version
"8.0.36"
"8.0.39"
end

def package_filename
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ def self.validate(chef_run)
%w(x86_64 aarch64).each do |architecture|
context "on #{platform}#{version} #{architecture}" do
cached(:source_dir) { 'SOURCE_DIR' }
cached(:package_source_version) { '8.0.36' }
cached(:package_version) { '8.0.36-1' }
cached(:package_source_version) { '8.0.39' }
cached(:package_version) { '8.0.39-1' }
cached(:package_filename) { "mysql-community-client-#{package_version}.tar.gz" }
cached(:s3_url) { 's3://url' }
cached(:package_platform) do
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
mysql_packages.each do |pkg|
describe package(pkg) do
it { should be_installed }
its('version') { should match /^8.0.36-/ } unless ubuntu
its('version') { should match /^8.0.39-/ } unless ubuntu
end
end
end
Expand All @@ -48,7 +48,7 @@
its('content') do
should eq %(You can get MySQL source code here:
https://#{node['cluster']['region']}-aws-parallelcluster.s3.#{node['cluster']['region']}.amazonaws.com/archives/source/mysql-8.0.36.tar.gz
https://#{node['cluster']['region']}-aws-parallelcluster.s3.#{node['cluster']['region']}.amazonaws.com/archives/source/mysql-8.0.39.tar.gz
)
end
end
Expand Down

0 comments on commit f0a4ebe

Please sign in to comment.