diff --git a/Model/Layout/LayoutPlugin.php b/Model/Layout/LayoutPlugin.php index c11e2ce0..8ff136c8 100644 --- a/Model/Layout/LayoutPlugin.php +++ b/Model/Layout/LayoutPlugin.php @@ -98,7 +98,7 @@ public function afterGenerateElements(\Magento\Framework\View\Layout $subject): public function afterGetOutput(\Magento\Framework\View\Layout $subject, $result) // @codingStandardsIgnoreLine - unused parameter { if ($this->config->getType() === Config::FASTLY) { - $this->response->setHeader("Fastly-Module-Enabled", "1.2.216", true); + $this->response->setHeader("Fastly-Module-Enabled", "1.2.217", true); } return $result; diff --git a/Release-Notes.md b/Release-Notes.md index 74a1ed0c..9a152457 100644 --- a/Release-Notes.md +++ b/Release-Notes.md @@ -1,5 +1,9 @@ # Fastly_Cdn Release Notes +## 1.2.217 + +- Update to Netacea module https://github.com/fastly/fastly-magento2/pull/690 + ## 1.2.216 - Fix for GEOIP redirection causes 404 in specific cases https://github.com/fastly/fastly-magento2/pull/694 diff --git a/VERSION b/VERSION index b05be512..8b3e1946 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.2.216 +1.2.217 diff --git a/composer.json b/composer.json index 8be9b345..93e15b0d 100644 --- a/composer.json +++ b/composer.json @@ -12,7 +12,7 @@ "zordius/lightncandy": "^1.2" }, "type": "magento2-module", - "version": "1.2.216", + "version": "1.2.217", "license": "BSD-3-Clause", "autoload": { "files": [ "registration.php" ], diff --git a/etc/vcl_snippets/deliver.vcl b/etc/vcl_snippets/deliver.vcl index 0d065e6d..7c72e58a 100644 --- a/etc/vcl_snippets/deliver.vcl +++ b/etc/vcl_snippets/deliver.vcl @@ -39,7 +39,7 @@ # Add an easy way to see whether custom Fastly VCL has been uploaded if ( req.http.Fastly-Debug ) { - set resp.http.Fastly-Magento-VCL-Uploaded = "1.2.216"; + set resp.http.Fastly-Magento-VCL-Uploaded = "1.2.217"; if (table.lookup(magentomodule_config, "allow_super_users_during_maint", "0") == "1") { set resp.http.Fastly-Magento-Maintenance-Mode = "on"; } diff --git a/etc/vcl_snippets/miss.vcl b/etc/vcl_snippets/miss.vcl index 70edd9d8..b35a8438 100644 --- a/etc/vcl_snippets/miss.vcl +++ b/etc/vcl_snippets/miss.vcl @@ -3,4 +3,4 @@ unset bereq.http.Accept-Encoding; # Send VCL version uploaded to the backend - set bereq.http.Fastly-Magento-VCL-Uploaded = "1.2.216"; + set bereq.http.Fastly-Magento-VCL-Uploaded = "1.2.217"; diff --git a/etc/vcl_snippets/pass.vcl b/etc/vcl_snippets/pass.vcl index 5b55cd09..7a82a872 100644 --- a/etc/vcl_snippets/pass.vcl +++ b/etc/vcl_snippets/pass.vcl @@ -12,4 +12,4 @@ } # Send VCL version uploaded to the backend - set bereq.http.Fastly-Magento-VCL-Uploaded = "1.2.216"; + set bereq.http.Fastly-Magento-VCL-Uploaded = "1.2.217";