diff --git a/CHANGELOG.md b/CHANGELOG.md index b54a62aa2..865855a20 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -40,6 +40,9 @@ CHANGELOG - Automate execution of `go mod download` for `pulumi new` Go templates [#4353](https://github.com/pulumi/pulumi/pull/4353) + +- Fix `pulumi up -r -t $URN` not refreshing only the target + [#4217](https://github.com/pulumi/pulumi/pull/4217) ## 1.14.0 (2020-04-01) - Fix error related to side-by-side versions of `@pulumi/pulumi`. diff --git a/pkg/cmd/pulumi/up.go b/pkg/cmd/pulumi/up.go index a2182068b..caac47952 100644 --- a/pkg/cmd/pulumi/up.go +++ b/pkg/cmd/pulumi/up.go @@ -125,6 +125,7 @@ func newUpCmd() *cobra.Command { Parallel: parallel, Debug: debug, Refresh: refresh, + RefreshTargets: targetURNs, ReplaceTargets: replaceURNs, UseLegacyDiff: useLegacyDiff(), UpdateTargets: targetURNs,