lol

Merge pull request #232117 from mweinelt/ansible-updates

Ansible updates

authored by

Martin Weinelt and committed by
GitHub
9ec180ee efb55108

+11 -11
+2 -2
pkgs/development/python-modules/ansible/core.nix
··· 24 24 25 25 buildPythonPackage rec { 26 26 pname = "ansible-core"; 27 - version = "2.14.2"; 27 + version = "2.15.0"; 28 28 29 29 src = fetchPypi { 30 30 inherit pname version; 31 - hash = "sha256-R/DUtBJbWO26ZDWkfzfL5qGNpUWU0Y+BKVi7DLWNTmU="; 31 + hash = "sha256-z2kP1Ou0BZDgDFrNwGJHWMpMWNHksrAuwCagNAcOv00="; 32 32 }; 33 33 34 34 # ansible_connection is already wrapped, so don't pass it through
+1
pkgs/top-level/aliases.nix
··· 80 80 amuleGui = throw "amuleGui was renamed to amule-gui"; # Added 2022-02-11 81 81 amsn = throw "amsn has been removed due to being unmaintained"; # Added 2020-12-09 82 82 angelfish = libsForQt5.kdeGear.angelfish; # Added 2021-10-06 83 + ansible_2_12 = throw "Ansible 2.12 goes end of life in 2023/05 and can't be supported throughout the 23.05 release cycle"; # Added 2023-05-16 83 84 ansible_2_11 = throw "Ansible 2.11 goes end of life in 2022/11 and can't be supported throughout the 22.05 release cycle"; # Added 2022-03-30 84 85 ansible_2_10 = throw "Ansible 2.10 went end of life in 2022/05 and has subsequently been dropped"; # Added 2022-03-30 85 86 ansible_2_9 = throw "Ansible 2.9 went end of life in 2022/05 and has subsequently been dropped"; # Added 2022-03-30
+8 -9
pkgs/top-level/all-packages.nix
··· 17495 17495 17496 17496 autoadb = callPackage ../misc/autoadb { }; 17497 17497 17498 - ansible = ansible_2_14; 17499 - ansible_2_14 = python3Packages.toPythonApplication python3Packages.ansible-core; 17500 - ansible_2_13 = python3Packages.toPythonApplication (python3Packages.ansible-core.overridePythonAttrs (oldAttrs: rec { 17501 - version = "2.13.6"; 17498 + ansible = ansible_2_15; 17499 + ansible_2_15 = python3Packages.toPythonApplication python3Packages.ansible-core; 17500 + ansible_2_14 = python3Packages.toPythonApplication (python3Packages.ansible-core.overridePythonAttrs (oldAttrs: rec { 17501 + version = "2.14.5"; 17502 17502 src = oldAttrs.src.override { 17503 17503 inherit version; 17504 - hash = "sha256-Mf4yK2MpBnSo9zhhEN9QHwBEqkSJC+OrMTpuIluaKc8="; 17504 + hash = "sha256-jE7tds5Fi0o3M0oIAt8pSI7Pn4rzjDERBpyWsXsgVTA="; 17505 17505 }; 17506 17506 })); 17507 - ansible_2_12 = python3Packages.toPythonApplication (python3Packages.ansible-core.overridePythonAttrs (oldAttrs: rec { 17508 - version = "2.12.10"; 17507 + ansible_2_13 = python3Packages.toPythonApplication (python3Packages.ansible-core.overridePythonAttrs (oldAttrs: rec { 17508 + version = "2.13.9"; 17509 17509 src = oldAttrs.src.override { 17510 17510 inherit version; 17511 - hash = "sha256-/rHfYXOM/B9eiTtCouwafeMpd9Z+hnB7Retj0MXDwjY="; 17511 + hash = "sha256-nDGeygqcU83m8XSBLd1xFO2x5dDrXh30e9DY/v7ax2w="; 17512 17512 }; 17513 - meta.changelog = "https://github.com/ansible/ansible/blob/v${version}/changelogs/CHANGELOG-v${lib.versions.majorMinor version}.rst"; 17514 17513 })); 17515 17514 17516 17515 ansible-doctor = callPackage ../tools/admin/ansible/doctor.nix { };