Merge pull request #198484 from LeSuisse/cassandra-2-drop

cassandra_2_1, cassandra_2_2: drop

authored by ajs124 and committed by GitHub f888abe7 983d89b3

+14 -40
+10
nixos/doc/manual/from_md/release-notes/rl-2211.section.xml
··· 835 835 </listitem> 836 836 <listitem> 837 837 <para> 838 + <literal>cassandra_2_1</literal> and 839 + <literal>cassandra_2_2</literal> have been removed. Please 840 + update to <literal>cassandra_3_11</literal> or 841 + <literal>cassandra_3_0</literal>. See the 842 + <link xlink:href="https://github.com/apache/cassandra/blob/cassandra-3.11.14/NEWS.txt">changelog</link> 843 + for more information about the upgrade process. 844 + </para> 845 + </listitem> 846 + <listitem> 847 + <para> 838 848 <literal>mysql57</literal> has been removed. Please update to 839 849 <literal>mysql80</literal> or <literal>mariadb</literal>. See 840 850 the
+2
nixos/doc/manual/release-notes/rl-2211.section.md
··· 261 261 262 262 - `k3s` no longer supports docker as runtime due to upstream dropping support. 263 263 264 + - `cassandra_2_1` and `cassandra_2_2` have been removed. Please update to `cassandra_3_11` or `cassandra_3_0`. See the [changelog](https://github.com/apache/cassandra/blob/cassandra-3.11.14/NEWS.txt) for more information about the upgrade process. 265 + 264 266 - `mysql57` has been removed. Please update to `mysql80` or `mariadb`. See the [upgrade guide](https://mariadb.com/kb/en/upgrading-from-mysql-to-mariadb/) for more information. 265 267 266 268 - Consequently, `cqrlog` and `amorok` now use `mariadb` instead of `mysql57` for their embedded databases. Running `mysql_upgrade` may be neccesary.
-2
nixos/tests/all-tests.nix
··· 110 110 cage = handleTest ./cage.nix {}; 111 111 cagebreak = handleTest ./cagebreak.nix {}; 112 112 calibre-web = handleTest ./calibre-web.nix {}; 113 - cassandra_2_1 = handleTest ./cassandra.nix { testPackage = pkgs.cassandra_2_1; }; 114 - cassandra_2_2 = handleTest ./cassandra.nix { testPackage = pkgs.cassandra_2_2; }; 115 113 cassandra_3_0 = handleTest ./cassandra.nix { testPackage = pkgs.cassandra_3_0; }; 116 114 cassandra_3_11 = handleTest ./cassandra.nix { testPackage = pkgs.cassandra_3_11; }; 117 115 ceph-multi-node = handleTestOn ["x86_64-linux"] ./ceph-multi-node.nix {};
-4
pkgs/servers/nosql/cassandra/2.1.json
··· 1 - { 2 - "version": "2.1.22", 3 - "sha256": "1wk57dz0kmc6d5y8d8dkx269lzh3ark3751z734gxncwdlclcyz3" 4 - }
-12
pkgs/servers/nosql/cassandra/2.1.nix
··· 1 - { callPackage, ... } @ args: 2 - 3 - callPackage ./generic.nix ( 4 - args 5 - // builtins.fromJSON (builtins.readFile ./2.1.json) 6 - // { 7 - generation = "2_1"; 8 - extraMeta.knownVulnerabilities = [ 9 - # Fixed in 3.* but 2.* hasn't been released since 10 - "CVE-2020-17516" 11 - ]; 12 - })
-4
pkgs/servers/nosql/cassandra/2.2.json
··· 1 - { 2 - "version": "2.2.14", 3 - "sha256": "1b2x3q1ach44qg07sh8wr7d8a10n36w5522drd3p35djbiwa3d9q" 4 - }
-12
pkgs/servers/nosql/cassandra/2.2.nix
··· 1 - { callPackage, ... } @ args: 2 - 3 - callPackage ./generic.nix ( 4 - args 5 - // builtins.fromJSON (builtins.readFile ./2.2.json) 6 - // { 7 - generation = "2_2"; 8 - extraMeta.knownVulnerabilities = [ 9 - # Fixed in 3.* but 2.* hasn't been released since 10 - "CVE-2020-17516" 11 - ]; 12 - })
+2
pkgs/top-level/aliases.nix
··· 173 173 cargo-download = throw "cargo-download has been removed from nixpkgs as it is unmaintained, use cargo-clone instead"; # Added 2022-10-11 174 174 cargo-tree = throw "cargo-tree has been removed, use the builtin `cargo tree` command instead"; # Added 2020-08-20 175 175 casperjs = throw "casperjs has been removed, it was abandoned by upstream and broken"; 176 + cassandra_2_1 = throw "cassandra_2_1 has been removed, please use cassandra_3_11 instead"; # Added 2022-10-29 177 + cassandra_2_2 = throw "cassandra_2_2 has been removed, please use cassandra_3_11 instead"; # Added 2022-10-29 176 178 catfish = xfce.catfish; # Added 2019-12-22 177 179 ccnet = throw "ccnet has been removed because seafile does not depend on it anymore"; # Added 2021-03-25 178 180 cde-gtk-theme = throw "cde-gtk-theme has been removed from nixpkgs as it shipped with python2 scripts that didn't work anymore"; # Added 2022-01-12
-6
pkgs/top-level/all-packages.nix
··· 23344 23344 23345 23345 cadvisor = callPackage ../servers/monitoring/cadvisor { }; 23346 23346 23347 - cassandra_2_1 = callPackage ../servers/nosql/cassandra/2.1.nix { 23348 - jre = jre8; # TODO: remove override https://github.com/NixOS/nixpkgs/pull/89731 23349 - }; 23350 - cassandra_2_2 = callPackage ../servers/nosql/cassandra/2.2.nix { 23351 - jre = jre8; # TODO: remove override https://github.com/NixOS/nixpkgs/pull/89731 23352 - }; 23353 23347 cassandra_3_0 = callPackage ../servers/nosql/cassandra/3.0.nix { 23354 23348 jre = jre8; # TODO: remove override https://github.com/NixOS/nixpkgs/pull/89731 23355 23349 };