diff --git a/Model/Layout/LayoutPlugin.php b/Model/Layout/LayoutPlugin.php index b12fcbb6..72a8cb13 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.208", true); + $this->response->setHeader("Fastly-Module-Enabled", "1.2.209", true); } return $result; diff --git a/Release-Notes.md b/Release-Notes.md index bca45e51..d4452826 100644 --- a/Release-Notes.md +++ b/Release-Notes.md @@ -1,5 +1,9 @@ # Fastly_Cdn Release Notes +## 1.2.209 + +- Improve admin acl privileges https://github.com/fastly/fastly-magento2/pull/673 + ## 1.2.208 - Update Datadome module to 2.19.1 https://github.com/fastly/fastly-magento2/pull/669 diff --git a/VERSION b/VERSION index f3cde7e4..2fab2343 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.2.208 +1.2.209 diff --git a/composer.json b/composer.json index 4c27f9da..3f0c4a9e 100644 --- a/composer.json +++ b/composer.json @@ -12,7 +12,7 @@ "zordius/lightncandy": "^1.2" }, "type": "magento2-module", - "version": "1.2.208", + "version": "1.2.209", "license": "BSD-3-Clause", "autoload": { "files": [ "registration.php" ], diff --git a/etc/vcl_snippets/deliver.vcl b/etc/vcl_snippets/deliver.vcl index 71dd2f14..09478041 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.208"; + set resp.http.Fastly-Magento-VCL-Uploaded = "1.2.209"; 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 608d120a..83ed7b39 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.208"; + set bereq.http.Fastly-Magento-VCL-Uploaded = "1.2.209"; diff --git a/etc/vcl_snippets/pass.vcl b/etc/vcl_snippets/pass.vcl index efc527b4..0e589216 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.208"; + set bereq.http.Fastly-Magento-VCL-Uploaded = "1.2.209";