Skip to content

Commit

Permalink
v5.6.0 (#772)
Browse files Browse the repository at this point in the history
* v5.6.0

* test(interface): set all products to false
  • Loading branch information
Integralist committed Oct 18, 2023
1 parent e275d7c commit 902cf4d
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 2 deletions.
23 changes: 22 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,25 @@
## 5.6.0 (Unreleased)
## 5.7.0 (Unreleased)

## 5.6.0 (October 18, 2023)

BUG FIXES:

* fix(product_enablement): avoid accidentally disabling products on update [#763](https://github.com/fastly/terraform-provider-fastly/pull/763)

ENHANCEMENTS:

* refactor(product_enablement): make Read() logic consistent with other resource types [#773](https://github.com/fastly/terraform-provider-fastly/pull/773)

DEPENDENCIES:

* build(deps): bump github.com/fastly/go-fastly/v8 from 8.6.1 to 8.6.2 [#765](https://github.com/fastly/terraform-provider-fastly/pull/765)
* build(deps): bump golang.org/x/net from 0.15.0 to 0.17.0 [#771](https://github.com/fastly/terraform-provider-fastly/pull/771)
* build(deps): bump github.com/google/go-cmp from 0.5.9 to 0.6.0 [#770](https://github.com/fastly/terraform-provider-fastly/pull/770)

DOCUMENTATION:

* docs: product enablement [#762](https://github.com/fastly/terraform-provider-fastly/pull/762)
* doc: rename Compute@Edge to Compute [#769](https://github.com/fastly/terraform-provider-fastly/pull/769)

## 5.5.0 (September 19, 2023)

Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ terraform {
required_providers {
fastly = {
source = "fastly/fastly"
version = ">= 5.5.0"
version = ">= 5.6.0"
}
}
}
Expand Down
4 changes: 4 additions & 0 deletions tests/interface/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,10 @@ resource "fastly_service_vcl" "interface-test-project" {

product_enablement {
brotli_compression = true
domain_inspector = false
image_optimizer = false
origin_inspector = false
websockets = false
}

rate_limiter {
Expand Down

0 comments on commit 902cf4d

Please sign in to comment.