Merge pull request #219943 from Trundle/pulumi-3.56.0

pulumi: 3.55.0 -> 3.56.0

authored by Ilan Joselevich and committed by GitHub 96a594e4 26ac96af

+5 -5
+1 -1
pkgs/development/python-modules/pulumi/default.nix
··· 44 44 cp ../../README.md . 45 45 substituteInPlace setup.py \ 46 46 --replace "3.0.0" "${version}" \ 47 - --replace "grpcio==1.50" "grpcio" 47 + --replace "grpcio==1.51.3" "grpcio" 48 48 ''; 49 49 50 50 # Allow local networking in tests on Darwin
+4 -4
pkgs/tools/admin/pulumi/default.nix
··· 14 14 15 15 buildGoModule rec { 16 16 pname = "pulumi"; 17 - version = "3.55.0"; 17 + version = "3.56.0"; 18 18 19 19 # Used in pulumi-language packages, which inherit this prop 20 - sdkVendorHash = "sha256-ZE+df01jRx3nDiPGdlh1JNJn5NqsHW22fiUzeNlkzF8="; 20 + sdkVendorHash = "sha256-oXsU4h4CwukJHttYLT7JiW2He8Yq5qAwnxL8+G5FIpc="; 21 21 22 22 src = fetchFromGitHub { 23 23 owner = pname; 24 24 repo = pname; 25 25 rev = "v${version}"; 26 - hash = "sha256-x5XebYFpxFi2QgrrK+wdMFOLiJLnRmar4gsply8F718="; 26 + hash = "sha256-cXNYg5zNfZTTuv+EaSGuaA9mbMPq7vKTKcsxfnM3NbQ="; 27 27 # Some tests rely on checkout directory name 28 28 name = "pulumi"; 29 29 }; 30 30 31 - vendorSha256 = "sha256-8vchyD3MTi9Fxrd6SiywFK4tadyauvDxjs9RmoJuULA="; 31 + vendorHash = "sha256-TWpH3y+7kLknPy+CExhnjfEvaIWWs1d5JCVF3FA1Z7I="; 32 32 33 33 sourceRoot = "${src.name}/pkg"; 34 34