-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This PR was generated via `$ upgrade-provider pulumi/pulumi-fastly --kind=all --target-bridge-version=latest`. --- - Updating Java Gen version from 0.14.0 to 0.15.0. - Upgrading terraform-provider-fastly from 5.11.0 to 5.12.0. Fixes #609
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
0.14.0 | ||
0.15.0 |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 | ||
From: Ian Wahbe <[email protected]> | ||
Date: Tue, 24 Oct 2023 15:23:27 -0700 | ||
Subject: [PATCH 1/3] Docs changes | ||
Subject: [PATCH] Docs changes | ||
|
||
|
||
diff --git a/docs/resources/service_acl_entries.md b/docs/resources/service_acl_entries.md | ||
index 095d1ae3..9465b466 100644 | ||
index 6a7ec82b..e02ba1ee 100644 | ||
--- a/docs/resources/service_acl_entries.md | ||
+++ b/docs/resources/service_acl_entries.md | ||
@@ -10,12 +10,14 @@ description: |- | ||
|
@@ -35,7 +35,7 @@ index 095d1ae3..9465b466 100644 | |
The following example demonstrates the use of dynamic nested blocks to create ACL entries. | ||
|
||
diff --git a/docs/resources/service_dictionary_items.md b/docs/resources/service_dictionary_items.md | ||
index 393f48fd..f938e500 100644 | ||
index 7108ea59..ddf45bc1 100644 | ||
--- a/docs/resources/service_dictionary_items.md | ||
+++ b/docs/resources/service_dictionary_items.md | ||
@@ -10,6 +10,8 @@ description: |- | ||
|
@@ -78,7 +78,7 @@ index 393f48fd..f938e500 100644 | |
```terraform | ||
// Local variables used when formatting values for the "My Project Dictionary" example | ||
diff --git a/docs/resources/service_dynamic_snippet_content.md b/docs/resources/service_dynamic_snippet_content.md | ||
index 200a650e..9566cd4c 100644 | ||
index 05199568..9f82f636 100644 | ||
--- a/docs/resources/service_dynamic_snippet_content.md | ||
+++ b/docs/resources/service_dynamic_snippet_content.md | ||
@@ -13,10 +13,12 @@ Defines content that represents blocks of VCL logic that is inserted into your s | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 | ||
From: Ian Wahbe <[email protected]> | ||
Date: Tue, 24 Oct 2023 15:24:51 -0700 | ||
Subject: [PATCH 2/3] Special case cloned_version | ||
Subject: [PATCH] Special case cloned_version | ||
|
||
|
||
diff --git a/fastly/base_fastly_service.go b/fastly/base_fastly_service.go | ||
index 3bc0208b..77b988bc 100644 | ||
index dd555d0d..4536aba2 100644 | ||
--- a/fastly/base_fastly_service.go | ||
+++ b/fastly/base_fastly_service.go | ||
@@ -323,11 +323,52 @@ func resourceServiceUpdate(ctx context.Context, d *schema.ResourceData, meta any | ||
@@ -324,11 +324,52 @@ func resourceServiceUpdate(ctx context.Context, d *schema.ResourceData, meta any | ||
} | ||
} | ||
|
||
|
@@ -62,7 +62,7 @@ index 3bc0208b..77b988bc 100644 | |
Comment: gofastly.ToPointer(d.Get("version_comment").(string)), | ||
} | ||
|
||
@@ -348,7 +389,7 @@ func resourceServiceUpdate(ctx context.Context, d *schema.ResourceData, meta any | ||
@@ -349,7 +390,7 @@ func resourceServiceUpdate(ctx context.Context, d *schema.ResourceData, meta any | ||
// that is unlocked and can be updated. | ||
latestVersion = 1 | ||
} else { | ||
|
@@ -71,7 +71,7 @@ index 3bc0208b..77b988bc 100644 | |
// Clone the latest version, giving us an unlocked version we can modify. | ||
log.Printf("[DEBUG] Creating clone of version (%d) for updates", latestVersion) | ||
newVersion, err := conn.CloneVersion(&gofastly.CloneVersionInput{ | ||
@@ -436,10 +477,11 @@ func resourceServiceUpdate(ctx context.Context, d *schema.ResourceData, meta any | ||
@@ -437,10 +478,11 @@ func resourceServiceUpdate(ctx context.Context, d *schema.ResourceData, meta any | ||
if err != nil { | ||
return diag.FromErr(err) | ||
} | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 | ||
From: Ian Wahbe <[email protected]> | ||
Date: Tue, 24 Oct 2023 15:25:29 -0700 | ||
Subject: [PATCH 3/3] Avoid panic in getRawConfig | ||
Subject: [PATCH] Avoid panic in getRawConfig | ||
|
||
|
||
diff --git a/fastly/base_fastly_service.go b/fastly/base_fastly_service.go | ||
index 77b988bc..d8f2bc3b 100644 | ||
index 4536aba2..e9abd48f 100644 | ||
--- a/fastly/base_fastly_service.go | ||
+++ b/fastly/base_fastly_service.go | ||
@@ -165,7 +165,11 @@ func validateUniqueNames(block string) func(_ context.Context, rd *schema.Resour | ||
@@ -166,7 +166,11 @@ func validateUniqueNames(block string) func(_ context.Context, rd *schema.Resour | ||
return func(_ context.Context, rd *schema.ResourceDiff, _ any) error { | ||
names := make(map[string]int) | ||
|
||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.