pulumi/tests/integration/construct_component_methods
Ian Wahbe 62c7219e08 Fix files of the form go/go.mod
```sh
for f in $(fd go.mod); do
    if [[ $(basename $(dirname $f)) = go ]]; then
        rg v3.29.2-0.20220418135911-b31c5b136c6e $f
        if [[ "$?" = 0 ]]; then
            echo "Fixing $f"
            cd $(dirname $f)
            go mod edit -replace github.com/pulumi/pulumi/sdk/v3=../../../../sdk/ -require=github.com/pulumi/pulumi/sdk/v3@v3.37.0
            go mod tidy
            cd -
        fi
    fi
done
```
2022-07-29 16:35:44 +02:00
..
dotnet dotnet program-gen now targets .NET 6 (#10143) 2022-07-21 21:04:02 +02:00
go Fix files of the form go/go.mod 2022-07-29 16:35:44 +02:00
nodejs [sdk/nodejs] Support for calling methods (#7377) 2021-07-07 16:03:56 -07:00
python [sdk/python] Handle unknown results from methods (#7677) 2021-07-29 11:11:52 -07:00
testcomponent Initial support for resource methods (authoring from Node.js, calling from Python) (#7363) 2021-06-30 07:48:56 -07:00
testcomponent-go Use `provider.MainWithOptions` to reduce boilerplate in integration tests (#7684) 2021-07-30 06:31:17 -07:00
testcomponent-python Replace the use of pipenv with Python's venv (#8548) 2021-12-07 07:59:07 -08:00