From 7dcff3fe8789473ed0716aea37abe49bd7ea99e9 Mon Sep 17 00:00:00 2001 From: Ed Reel Date: Tue, 15 Oct 2024 13:29:12 -0500 Subject: [PATCH] Mysql 9.0.1 => 9.1.0 (#10612) --- manifest/x86_64/m/mysql.filelist | 4 +++- packages/mysql.rb | 6 +++--- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/manifest/x86_64/m/mysql.filelist b/manifest/x86_64/m/mysql.filelist index 4d47838ab..56f72f33b 100644 --- a/manifest/x86_64/m/mysql.filelist +++ b/manifest/x86_64/m/mysql.filelist @@ -90,6 +90,8 @@ /usr/local/lib/mysql/plugin/component_test_pfs_notification.so /usr/local/lib/mysql/plugin/component_test_pfs_resource_group.so /usr/local/lib/mysql/plugin/component_test_sensitive_system_variables.so +/usr/local/lib/mysql/plugin/component_test_server_telemetry_logs_client.so +/usr/local/lib/mysql/plugin/component_test_server_telemetry_logs_export.so /usr/local/lib/mysql/plugin/component_test_server_telemetry_metrics.so /usr/local/lib/mysql/plugin/component_test_server_telemetry_traces.so /usr/local/lib/mysql/plugin/component_test_session_var_service.so @@ -180,7 +182,7 @@ /usr/local/lib64/libmysqlclient.a /usr/local/lib64/libmysqlclient.so /usr/local/lib64/libmysqlclient.so.24 -/usr/local/lib64/libmysqlclient.so.24.1.1 +/usr/local/lib64/libmysqlclient.so.24.1.0 /usr/local/lib64/libmysqlservices.a /usr/local/lib64/pkgconfig/mysqlclient.pc /usr/local/share/aclocal/mysql.m4 diff --git a/packages/mysql.rb b/packages/mysql.rb index d2d7fb0af..9bb7d3303 100644 --- a/packages/mysql.rb +++ b/packages/mysql.rb @@ -3,7 +3,7 @@ require 'buildsystems/cmake' class Mysql < CMake description "MySQL Community Edition is a freely downloadable version of the world's most popular open source database" homepage 'https://www.mysql.com/' - version '9.0.1' + version '9.1.0' license 'GPL-2' compatibility 'x86_64' # Only 64-bit platforms are supported, so this will work on aarch64 userspaces once those are supported. source_url 'https://github.com/mysql/mysql-server.git' @@ -11,7 +11,7 @@ class Mysql < CMake binary_compression 'tar.zst' binary_sha256({ - x86_64: '78f197a0cc31d6657bc682cbbb5be958326872eef0b35d93d7633f59646265d8' + x86_64: '56b7178a5c3a9a04328e20ae7e93bbdcf261cca9acb508199f586481848e5573' }) depends_on 'boost' => :build @@ -50,7 +50,7 @@ class Mysql < CMake puts puts "Databases are stored in #{CREW_PREFIX}/var/mysql/data.".lightblue puts - puts 'MySQL Server documentation: https://dev.mysql.com/doc/refman/8.4/en/'.lightblue + puts 'MySQL Server documentation: https://dev.mysql.com/doc/refman/9.1/en/'.lightblue puts end