From 21d44d47c52ce54ef82d6ab43f0c3828d53cebfb Mon Sep 17 00:00:00 2001 From: Vladimir Vuksan <44271-vvuksan-fastly@users.noreply.drupalcode.org> Date: Tue, 18 Jun 2024 13:29:35 -0400 Subject: [PATCH] Bump to 1.2.219 --- Model/Layout/LayoutPlugin.php | 2 +- Release-Notes.md | 4 ++++ VERSION | 2 +- composer.json | 2 +- etc/vcl_snippets/deliver.vcl | 2 +- etc/vcl_snippets/miss.vcl | 2 +- etc/vcl_snippets/pass.vcl | 2 +- 7 files changed, 10 insertions(+), 6 deletions(-) diff --git a/Model/Layout/LayoutPlugin.php b/Model/Layout/LayoutPlugin.php index 047ac7b7..ef3eb71b 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.218", true); + $this->response->setHeader("Fastly-Module-Enabled", "1.2.219", true); } return $result; diff --git a/Release-Notes.md b/Release-Notes.md index a802f610..1cee8127 100644 --- a/Release-Notes.md +++ b/Release-Notes.md @@ -1,5 +1,9 @@ # Fastly_Cdn Release Notes +## 1.2.219 + +- Removing trailing comma in WAF constructor to be compatible with PHP 7.2 https://github.com/fastly/fastly-magento2/pull/698 + ## 1.2.218 - Update to Netacea module https://github.com/fastly/fastly-magento2/pull/696 diff --git a/VERSION b/VERSION index 962b7d4c..6653af0b 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.2.218 +1.2.219 diff --git a/composer.json b/composer.json index 1652b34c..73913447 100644 --- a/composer.json +++ b/composer.json @@ -12,7 +12,7 @@ "zordius/lightncandy": "^1.2" }, "type": "magento2-module", - "version": "1.2.218", + "version": "1.2.219", "license": "BSD-3-Clause", "autoload": { "files": [ "registration.php" ], diff --git a/etc/vcl_snippets/deliver.vcl b/etc/vcl_snippets/deliver.vcl index b2c7ea3a..0a2db1d9 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.218"; + set resp.http.Fastly-Magento-VCL-Uploaded = "1.2.219"; 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 cb754772..f60557fe 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.218"; + set bereq.http.Fastly-Magento-VCL-Uploaded = "1.2.219"; diff --git a/etc/vcl_snippets/pass.vcl b/etc/vcl_snippets/pass.vcl index e85609ef..6d1fc02d 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.218"; + set bereq.http.Fastly-Magento-VCL-Uploaded = "1.2.219";