1228b953c8
Fixes (high-severity) security vulnerabilities, of which a SQL injection into RCE. Announcement: https://wordpress.org/news/2026/07/wordpress-7-0-2-release/
17 lines
445 B
Nix
17 lines
445 B
Nix
{ callPackage }:
|
|
builtins.mapAttrs (_: callPackage ./generic.nix) rec {
|
|
wordpress = wordpress_7_0;
|
|
wordpress_6_8 = {
|
|
version = "6.8.6";
|
|
hash = "sha256-ID5C12xn+GprUynX8WLS5dl9iJyv13yDxYbqMDPB8P4=";
|
|
};
|
|
wordpress_6_9 = {
|
|
version = "6.9.5";
|
|
hash = "sha256-01h7VJpvXZDG5PQmj/xsI2cUY2Jc+ImiyBWnB86fXEE=";
|
|
};
|
|
wordpress_7_0 = {
|
|
version = "7.0.2";
|
|
hash = "sha256-1KTSGd6mTGxo5i8v/D8zHFR1UQJG1sRPYftS83fSlbk=";
|
|
};
|
|
}
|