Thomas Gerbet
d931f342a4
mysql80: 8.0.39 -> 8.0.40
...
Fixes:
* CVE-2024-21230
* CVE-2024-7264
* CVE-2024-21196
* CVE-2024-21238
* CVE-2024-21194
* CVE-2024-21199
* CVE-2024-21218
* CVE-2024-21236
* CVE-2024-21239
* CVE-2024-21198
* CVE-2024-21219
* CVE-2024-21203
* CVE-2024-21197
* CVE-2024-21201
* CVE-2024-21241
* CVE-2024-21193
* CVE-2024-21212
* CVE-2024-21213
* CVE-2024-21247
* CVE-2024-21231
* CVE-2024-21237
https://www.oracle.com/security-alerts/cpuoct2024.html#AppendixMSQL
Changes:
https://dev.mysql.com/doc/relnotes/mysql/8.0/en/news-8-0-40.html
2024-10-21 16:14:11 +02:00
Artturin
e0464e4788
treewide: replace stdenv.is
with stdenv.hostPlatform.is
...
In preparation for the deprecation of `stdenv.isX`.
These shorthands are not conducive to cross-compilation because they
hide the platforms.
Darwin might get cross-compilation for which the continued usage of `stdenv.isDarwin` will get in the way
One example of why this is bad and especially affects compiler packages
https://www.github.com/NixOS/nixpkgs/pull/343059
There are too many files to go through manually but a treewide should
get users thinking when they see a `hostPlatform.isX` in a place where it
doesn't make sense.
```
fd --type f "\.nix" | xargs sd --fixed-strings "stdenv.is" "stdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "stdenv'.is" "stdenv'.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "clangStdenv.is" "clangStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "gccStdenv.is" "gccStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "stdenvNoCC.is" "stdenvNoCC.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "inherit (stdenv) is" "inherit (stdenv.hostPlatform) is"
fd --type f "\.nix" | xargs sd --fixed-strings "buildStdenv.is" "buildStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "effectiveStdenv.is" "effectiveStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "originalStdenv.is" "originalStdenv.hostPlatform.is"
```
2024-09-25 00:04:37 +03:00
Thomas Gerbet
ac184d1a52
mysql80: 8.0.38 -> 8.0.39
...
Changes:
https://dev.mysql.com/doc/relnotes/mysql/8.0/en/news-8-0-39.html
2024-08-01 22:47:51 +02:00
Alyssa Ross
0702caaa2e
mysql80: 8.0.37 -> 8.0.38
2024-07-15 15:08:03 +02:00
Thomas Gerbet
9b648599ea
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
2024-06-23 22:16:44 +02:00
Alexis Hildebrandt
f8c4a98e8e
treewide: Remove the definite article from meta.description
...
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"([Tt]he)? ' pkgs \
| xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Tt]he (.)/\1\U\2/'
2024-06-09 23:08:46 +02:00
Jussi Kuokkanen
8064d28a4f
pkgs/servers: remove licenses.gpl2
2024-05-23 11:49:42 +03:00
Thomas Gerbet
12e769f566
mysql80: 8.0.35 -> 8.0.36
...
Fixes:
* CVE-2024-20961
* CVE-2024-20962
* CVE-2024-20973
* CVE-2024-20975
* CVE-2024-20977
* CVE-2024-20960
* CVE-2024-20963
* CVE-2024-20985
* CVE-2024-20969
* CVE-2024-20967
* CVE-2024-20964
* CVE-2024-20981
* CVE-2024-20966
* CVE-2024-20970
* CVE-2024-20971
* CVE-2024-20972
* CVE-2024-20974
* CVE-2024-20976
* CVE-2024-20978
* CVE-2024-20982
* CVE-2024-20965
Security advisory:
https://www.oracle.com/security-alerts/cpujan2024.html#AppendixMSQL
Release notes:
https://dev.mysql.com/doc/relnotes/mysql/8.0/en/news-8-0-36.html
2024-01-26 23:18:47 +01:00
Thomas Gerbet
390a2965da
mysql80: 8.0.34 -> 8.0.35
...
Fixes CVE-2023-22059, CVE-2023-22079, CVE-2023-22097, CVE-2023-22066, CVE-2023-22068, CVE-2023-22114, CVE-2023-22084, CVE-2023-22032, CVE-2023-22064, CVE-2023-22070, CVE-2023-22112, CVE-2023-22078 and CVE-2023-22092.
https://www.oracle.com/security-alerts/cpuoct2023.html#AppendixMSQL
Changes:
https://dev.mysql.com/doc/relnotes/mysql/8.0/en/news-8-0-35.html
2023-10-30 22:10:38 +01:00
Aaron Jheng
1d600455cf
mysql80: use finalAttrs
2023-09-23 23:33:57 +08:00
Thomas Gerbet
b1d9284def
mysql80: 8.0.33 -> 8.0.34
...
Fixes CVE-2022-4899, CVE-2023-0361, CVE-2022-4899, CVE-2022-4899, CVE-2023-22053, CVE-2023-22008,
CVE-2023-22046, CVE-2023-22054, CVE-2023-22056, CVE-2023-22057, CVE-2023-22033, CVE-2023-22058,
CVE-2023-22005, CVE-2023-22048 and CVE-2023-22038.
https://dev.mysql.com/doc/relnotes/mysql/8.0/en/news-8-0-34.html
https://www.oracle.com/security-alerts/cpujul2023.html
2023-07-19 23:01:25 +02:00
Thomas Gerbet
6b7ac453b4
mysql80: 8.0.32 -> 8.0.33
...
Fixes the following security issues:
* CVE-2023-0215
* CVE-2022-43551
* CVE-2023-21980
* CVE-2023-21946
* CVE-2023-21929
* CVE-2023-21911
* CVE-2023-21962
* CVE-2023-21919
* CVE-2023-21933
* CVE-2023-21972
* CVE-2023-21966
* CVE-2023-21920
* CVE-2023-21935
* CVE-2023-21945
* CVE-2023-21976
* CVE-2023-21977
* CVE-2023-21982
* CVE-2023-21953
* CVE-2023-21955
* CVE-2023-21940
* CVE-2023-21947
Advisory: https://www.oracle.com/security-alerts/cpuapr2023.html#AppendixMSQL
Changelog:
https://dev.mysql.com/doc/relnotes/mysql/8.0/en/news-8-0-33.html
2023-04-26 18:51:24 +02:00
Thomas Gerbet
42d6fe1a13
mysql80: 8.0.31 -> 8.0.32
...
Fixes the following security issues:
* CVE-2023-21836
* CVE-2023-21863
* CVE-2023-21867
* CVE-2023-21868
* CVE-2023-21869
* CVE-2023-21870
* CVE-2023-21871
* CVE-2023-21873
* CVE-2023-21875
* CVE-2023-21876
* CVE-2023-21877
* CVE-2023-21878
* CVE-2023-21879
* CVE-2023-21880
* CVE-2023-21881
* CVE-2023-21882
* CVE-2023-21883
* CVE-2023-21887
Changelog:
https://dev.mysql.com/doc/relnotes/mysql/8.0/en/news-8-0-32.html
2023-01-25 19:40:49 +01:00
Aaron Jheng
790f859ef7
mysql80: fix build on aarch64-linux
2022-11-12 15:18:38 +00:00
Robert Scott
23511ff5b6
mysql80: 8.0.30 -> 8.0.31
2022-10-19 22:51:23 +01:00
ajs124
b802fc1e5c
mysql80: pin to openssl_1_1
2022-08-17 20:16:20 +02:00
tirex
f3e806edf4
mysql: 8.0.29 -> 8.0.30
2022-08-07 22:02:48 +02:00
Josef Kemetmüller
1ca04aa9f1
treewide: Stop setting CMAKE_SKIP_BUILD_RPATH=OFF
...
This is now the new default and thus doesn't need to be set manually
anymore.
2022-07-04 03:49:01 +03:00
Aaron Jheng
0ce4fec785
mysql: 8.0.28 -> 8.0.29
2022-05-18 14:59:39 +00:00
Austin Butler
60b5f837ca
mysql80: fix build on Darwin
2022-02-08 17:33:53 -08:00
Thomas Gerbet
b054a140f4
mysql: 8.0.27 -> 8.0.28
...
https://dev.mysql.com/doc/relnotes/mysql/8.0/en/news-8-0-28.html
2022-01-30 12:06:01 +01:00
R. Ryantm
bfd6db1574
mysql80: 8.0.26 -> 8.0.27
2021-12-31 13:21:43 -08:00
Jason R. McNeil
5c452f15af
mysql80: fix build on darwin
...
sw_vers is called during build since 8.0.26
- 83b87ae7f8
Fixes #132288
2021-08-19 00:43:04 -07:00
Martin Weinelt
c3c2ca1ba0
mysql80: 8.0.25 -> 8.0.26
2021-07-26 21:30:12 +02:00
Giulio De Pasquale
f6d3da9061
mysql 8.0.22 -> 8.0.25
2021-07-07 16:45:12 +01:00
Jonathan del Strother
9c76b17933
mysql: fix building on Apple Silicon
...
rpcsvc-proto doesn't build for aarch64-darwin (`struct stat64` isn't
declared), but it isn't actually necessary on Darwin/clang.
2021-04-11 16:56:22 +01:00
Jonathan Ringer
9bb3fccb5b
treewide: pkgs.pkgconfig -> pkgs.pkg-config, move pkgconfig to alias.nix
...
continuation of #109595
pkgconfig was aliased in 2018, however, it remained in
all-packages.nix due to its wide usage. This cleans
up the remaining references to pkgs.pkgsconfig and
moves the entry to aliases.nix.
python3Packages.pkgconfig remained unchanged because
it's the canonical name of the upstream package
on pypi.
2021-01-19 01:16:25 -08:00
Tim Otten
0f387ba184
mysql80: Fix additional libtool reference in 8.0.22
2021-01-10 23:51:29 -08:00
Tim Otten
1dc5b4612f
mysql80: 8.0.21 -> 8.0.22
2021-01-10 22:50:34 -08:00
Alyssa Ross
4d5d04a238
mysql80: 8.0.17 -> 8.0.21
...
Hopefully substituteInPlace will be less brittle than the patch.
2021-01-10 22:48:02 -08:00
Maximilian Bosch
1897ff96d3
mysql*: fix build w/glibc-2.32
2020-09-12 23:04:45 +02:00
Daiderd Jordan
b984c227d2
cmake: remove CMAKE_OSX_DEPLOYMENT_TARGET overrides
...
We _do_ want minimum versions in our packages.
2020-01-31 21:52:12 +01:00
Daiderd Jordan
9b579843d4
treewide: use stdenv.macosVersionMin
2020-01-31 21:52:12 +01:00
Renaud
e7f7b475d3
mysql80: define pname and version
...
version is needed by the mysql service module
Close #68322
2019-11-28 20:21:05 +01:00
Tim Otten
dae42566db
mysql80: init at 8.0.17 ( #65221 )
...
MySQL 8.0 is a significant iteration after MySQL 5.7. This patch adds it as
a parallel build alongside mysql57 (similar to mysql56 and mysql55 before).
2019-08-13 19:50:51 +00:00