Skip to content

Commit

Permalink
Upgrade terraform-provider-pagerduty to v3.14.3 (#546)
Browse files Browse the repository at this point in the history
This PR was generated via `$ upgrade-provider pulumi/pulumi-pagerduty`.

---

- Upgrading terraform-provider-pagerduty from 3.14.0  to 3.14.3.
	Fixes #544
	Fixes #538

Fixes #540.

---------

Co-authored-by: Ian Wahbe <[email protected]>
  • Loading branch information
guineveresaenger and iwahbe authored Jun 21, 2024
1 parent 98e45c2 commit 124757f
Show file tree
Hide file tree
Showing 9 changed files with 7 additions and 353 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This patch exists purely so that `patches` folder can be non-empty and the patches workflow can be invoked. See https://github.com/pulumi/pulumi-pagerduty/pull/546 for details.
82 changes: 0 additions & 82 deletions patches/0001-fixup-update-CHANGELOG.md-v3.8.1.patch

This file was deleted.

58 changes: 0 additions & 58 deletions patches/0002-versioned-util-package-for-more-resources.patch

This file was deleted.

110 changes: 0 additions & 110 deletions patches/0003-more-replaces.patch

This file was deleted.

97 changes: 0 additions & 97 deletions patches/0004-more-replaces-3.patch

This file was deleted.

4 changes: 2 additions & 2 deletions provider/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/pulumi/pulumi-pagerduty/provider/v4
go 1.21

require (
github.com/PagerDuty/terraform-provider-pagerduty/v3 v3.0.0
github.com/PagerDuty/terraform-provider-pagerduty v0.0.0
github.com/pulumi/providertest v0.0.11
github.com/pulumi/pulumi-terraform-bridge/pf v0.37.0
github.com/pulumi/pulumi-terraform-bridge/v3 v3.84.0
Expand All @@ -12,7 +12,7 @@ require (
)

replace (
github.com/PagerDuty/terraform-provider-pagerduty/v3 => ../upstream
github.com/PagerDuty/terraform-provider-pagerduty => ../upstream
github.com/hashicorp/terraform-plugin-sdk/v2 => github.com/pulumi/terraform-plugin-sdk/v2 v2.0.0-20240520223432-0c0bf0d65f10
)

Expand Down
4 changes: 2 additions & 2 deletions provider/resources.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ import (
// tzdata is used to ensure the provider works when deployed to OS-es that do not have it
_ "time/tzdata"

"github.com/PagerDuty/terraform-provider-pagerduty/v3/pagerduty"
pagerdutyplugin "github.com/PagerDuty/terraform-provider-pagerduty/v3/pagerdutyplugin"
"github.com/PagerDuty/terraform-provider-pagerduty/pagerduty"
pagerdutyplugin "github.com/PagerDuty/terraform-provider-pagerduty/pagerdutyplugin"

pftfbridge "github.com/pulumi/pulumi-terraform-bridge/pf/tfbridge"
"github.com/pulumi/pulumi-terraform-bridge/v3/pkg/tfbridge"
Expand Down
2 changes: 1 addition & 1 deletion scripts/upstream.sh
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ apply() {
# apply the patch using a 3-way merge strategy. This mirrors the default behavior of 'git merge'
cd upstream
for patch in ../patches/*.patch; do
if ! git apply --3way "$patch"; then
if ! git apply --3way "$patch" --allow-empty; then
cat <<EOF
make "$1"' failed to apply ${patch}. This is because there is a conflict between
Expand Down

0 comments on commit 124757f

Please sign in to comment.