about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorThomas Gerbet <thomas@gerbet.me>2024-06-23 22:16:44 +0200
committergithub-actions[bot] <github-actions[bot]@users.noreply.github.com>2024-06-30 19:56:49 +0000
commitd1ee7dcc824374c4621cae9cc17f37f5acd61e1d (patch)
tree86cef9c1b293c34db29500498adafa2d346d28c5 /pkgs
parent8054da3570d226d9c3f343eb28787fb7564841d5 (diff)
mysql80: 8.0.36 -> 8.0.37
Changes:
https://dev.mysql.com/doc/relnotes/mysql/8.0/en/news-8-0-37.html

Fixes:
* CVE-2024-21047
* CVE-2024-21069
* CVE-2024-21060
* CVE-2024-21087
* CVE-2024-20998
* CVE-2024-21009
* CVE-2024-21054
* CVE-2024-21062
* CVE-2024-21102
* CVE-2024-21096
* CVE-2024-21008
* CVE-2024-21013
* CVE-2024-21000

https://www.oracle.com/security-alerts/cpuapr2024.html#AppendixMSQL
(cherry picked from commit 9b648599eaff67fd4d7045e22fa85f7656777eff)
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/servers/sql/mysql/8.0.x.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/servers/sql/mysql/8.0.x.nix b/pkgs/servers/sql/mysql/8.0.x.nix
index 521e748198a36..2d784ce7450a8 100644
--- a/pkgs/servers/sql/mysql/8.0.x.nix
+++ b/pkgs/servers/sql/mysql/8.0.x.nix
@@ -5,11 +5,11 @@
 
 stdenv.mkDerivation (finalAttrs: {
   pname = "mysql";
-  version = "8.0.36";
+  version = "8.0.37";
 
   src = fetchurl {
     url = "https://dev.mysql.com/get/Downloads/MySQL-${lib.versions.majorMinor finalAttrs.version}/mysql-${finalAttrs.version}.tar.gz";
-    hash = "sha256-9PJwa5WKinOA72yVjdlyMHvb7qRR76/DQuTEbim36d0=";
+    hash = "sha256-4GOgkazZ7EC7BfLATfZPiZan5OJuiDu2UChJ1fa0pho=";
   };
 
   nativeBuildInputs = [ bison cmake pkg-config ]