mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-10 08:39:08 +03:00
mariadb-connector-c: enable default v3.3.x
This commit is contained in:
parent
d4faf87c9f
commit
272b35bc91
@ -193,6 +193,8 @@ The module update takes care of the new config syntax and the data itself (user
|
||||
|
||||
- `services.prometheus.exporters` has a new exporter to monitor electrical power consumption based on PowercapRAPL sensor called [Scaphandre](https://github.com/hubblo-org/scaphandre), see [#239803](https://github.com/NixOS/nixpkgs/pull/239803) for more details.
|
||||
|
||||
- The MariaDB C client library was upgraded from 3.2.x to 3.3.x. It is recomended to review the [upstream release notes](https://mariadb.com/kb/en/mariadb-connector-c-33-release-notes/).
|
||||
|
||||
- The module `services.calibre-server` has new options to configure the `host`, `port`, `auth.enable`, `auth.mode` and `auth.userDb` path, see [#216497](https://github.com/NixOS/nixpkgs/pull/216497/) for more details.
|
||||
|
||||
- `services.prometheus.exporters` has a new [exporter](https://github.com/hipages/php-fpm_exporter) to monitor PHP-FPM processes, see [#240394](https://github.com/NixOS/nixpkgs/pull/240394) for more details.
|
||||
|
@ -26767,11 +26767,11 @@ with pkgs;
|
||||
|
||||
rpcsvc-proto = callPackage ../tools/misc/rpcsvc-proto { };
|
||||
|
||||
libmysqlclient = libmysqlclient_3_2;
|
||||
libmysqlclient = libmysqlclient_3_3;
|
||||
libmysqlclient_3_1 = mariadb-connector-c_3_1;
|
||||
libmysqlclient_3_2 = mariadb-connector-c_3_2;
|
||||
libmysqlclient_3_3 = mariadb-connector-c_3_3;
|
||||
mariadb-connector-c = mariadb-connector-c_3_2;
|
||||
mariadb-connector-c = mariadb-connector-c_3_3;
|
||||
mariadb-connector-c_3_1 = callPackage ../servers/sql/mariadb/connector-c/3_1.nix { };
|
||||
mariadb-connector-c_3_2 = callPackage ../servers/sql/mariadb/connector-c/3_2.nix { };
|
||||
mariadb-connector-c_3_3 = callPackage ../servers/sql/mariadb/connector-c/3_3.nix { };
|
||||
|
Loading…
Reference in New Issue
Block a user