From 9003da4c216cf4fdb6aa3b332d37347f3a43222c Mon Sep 17 00:00:00 2001 From: Katsuyuki Omuro Date: Thu, 21 Nov 2024 01:49:28 +0900 Subject: [PATCH] Bump 1.2.222 --- 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 a9b299e9..7b124f36 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.221", true); + $this->response->setHeader("Fastly-Module-Enabled", "1.2.222", true); } return $result; diff --git a/Release-Notes.md b/Release-Notes.md index 3aaebb52..d7990c96 100644 --- a/Release-Notes.md +++ b/Release-Notes.md @@ -1,5 +1,9 @@ # Fastly_Cdn Release Notes +## 1.2.222 + +- Update to DataDome Fastly Module 2.23.0 https://github.com/fastly/fastly-magento2/pull/715 + ## 1.2.221 - Catch Throwable instead of Exception in Blocking controller https://github.com/fastly/fastly-magento2/pull/704 diff --git a/VERSION b/VERSION index 6b5226e1..b84d56ba 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.2.221 +1.2.222 diff --git a/composer.json b/composer.json index 82aecf31..671d06f9 100644 --- a/composer.json +++ b/composer.json @@ -12,7 +12,7 @@ "zordius/lightncandy": "^1.2" }, "type": "magento2-module", - "version": "1.2.221", + "version": "1.2.222", "license": "BSD-3-Clause", "autoload": { "files": [ "registration.php" ], diff --git a/etc/vcl_snippets/deliver.vcl b/etc/vcl_snippets/deliver.vcl index dc402962..f23f1595 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.221"; + set resp.http.Fastly-Magento-VCL-Uploaded = "1.2.222"; 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 96c85035..256db1b7 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.221"; + set bereq.http.Fastly-Magento-VCL-Uploaded = "1.2.222"; diff --git a/etc/vcl_snippets/pass.vcl b/etc/vcl_snippets/pass.vcl index 4d053419..a1993946 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.221"; + set bereq.http.Fastly-Magento-VCL-Uploaded = "1.2.222";