Merge pull request #263310 from yaxitech/pulumi-3.90.1

pulumi: 3.89.0 -> 3.90.1
This commit is contained in:
Bernardo Meurer 2023-10-25 09:16:45 -04:00 committed by GitHub
commit 3ddb376c29
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 9 additions and 11 deletions

View file

@ -1,6 +1,5 @@
{ lib { lib
, buildPythonPackage , buildPythonPackage
, fetchFromGitHub
, protobuf , protobuf
, dill , dill
, grpcio , grpcio
@ -46,7 +45,7 @@ buildPythonPackage rec {
cp ../../README.md . cp ../../README.md .
substituteInPlace setup.py \ substituteInPlace setup.py \
--replace "3.0.0" "${version}" \ --replace "3.0.0" "${version}" \
--replace "grpcio==1.56.2" "grpcio" \ --replace "grpcio~=1.59" "grpcio" \
--replace "semver~=2.13" "semver" --replace "semver~=2.13" "semver"
''; '';

View file

@ -8,7 +8,7 @@ buildGoModule rec {
sourceRoot = "${src.name}/sdk/go/pulumi-language-go"; sourceRoot = "${src.name}/sdk/go/pulumi-language-go";
vendorHash = "sha256-hMJ6x/zG6rwk/Ai54EF3jwKOTNZ9mwP/JQuX8eGYYVU="; vendorHash = "sha256-6JnRPns+qOLXP2RBjsgq4v6nuLn3uX8jF4+uinr2Wt8";
ldflags = [ ldflags = [
"-s" "-s"

View file

@ -9,7 +9,7 @@ buildGoModule rec {
sourceRoot = "${src.name}/sdk/nodejs/cmd/pulumi-language-nodejs"; sourceRoot = "${src.name}/sdk/nodejs/cmd/pulumi-language-nodejs";
vendorHash = "sha256-763jxzGCkJ42TKX6ziPb9hNRIo3drMArIZ8QRuSB31k="; vendorHash = "sha256-gbZoDUJCKb5wcLhJ7DRSGHT3Q0xUlptUeS6Wen4dle0";
postPatch = '' postPatch = ''
# Gives github.com/pulumi/pulumi/pkg/v3: is replaced in go.mod, but not marked as replaced in vendor/modules.txt etc # Gives github.com/pulumi/pulumi/pkg/v3: is replaced in go.mod, but not marked as replaced in vendor/modules.txt etc

View file

@ -1,5 +1,4 @@
{ lib { buildGoModule
, buildGoModule
, pulumi , pulumi
, python3 , python3
}: }:
@ -10,7 +9,7 @@ buildGoModule rec {
sourceRoot = "${src.name}/sdk/python/cmd/pulumi-language-python"; sourceRoot = "${src.name}/sdk/python/cmd/pulumi-language-python";
vendorHash = "sha256-HlcSkFoLPcHRyp0yH+ojGnL/gubfGyCP1iCK6sOootQ="; vendorHash = "sha256-aLCgAcrgnNH/eYpGkr5Kj4xWjSgP76nz0YoV6998i9M=";
postPatch = '' postPatch = ''
substituteInPlace main_test.go \ substituteInPlace main_test.go \

View file

@ -14,21 +14,21 @@
buildGoModule rec { buildGoModule rec {
pname = "pulumi"; pname = "pulumi";
version = "3.89.0"; version = "3.90.1";
# Used in pulumi-language packages, which inherit this prop # Used in pulumi-language packages, which inherit this prop
sdkVendorHash = "sha256-1gTLZ/hP0LdVBpNZKnVicCTCVU7+8B9LyRgGNHAptUM="; sdkVendorHash = lib.fakeHash;
src = fetchFromGitHub { src = fetchFromGitHub {
owner = pname; owner = pname;
repo = pname; repo = pname;
rev = "v${version}"; rev = "v${version}";
hash = "sha256-a0ugJJ+brvETUC0WCpebnsC5PgTUshDXuj/RaXLO5Mc="; hash = "sha256-dAQpQapkdccRr/O8XT8dHrLwPvIPqeV8f3HS+GtK2GM=";
# Some tests rely on checkout directory name # Some tests rely on checkout directory name
name = "pulumi"; name = "pulumi";
}; };
vendorHash = "sha256-oJqi5STUUSJoydnH/P71e5v8MojT10JlpEedGRTxgfU="; vendorHash = "sha256-ijFYlHVH0axDpFoPGvthGVRt8UIUZDsWv3vAOe0U4H4";
sourceRoot = "${src.name}/pkg"; sourceRoot = "${src.name}/pkg";