From 06a2cfb71d8439199b6d8e60c0ed5caebb248b1a Mon Sep 17 00:00:00 2001 From: Vladimir Vuksan Date: Fri, 18 Aug 2023 11:00:07 -0400 Subject: [PATCH] Bump to 1.2.205 --- Model/Layout/LayoutPlugin.php | 2 +- Release-Notes.md | 7 +++++++ 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, 13 insertions(+), 6 deletions(-) diff --git a/Model/Layout/LayoutPlugin.php b/Model/Layout/LayoutPlugin.php index 68f18f60..1e735d83 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.204", true); + $this->response->setHeader("Fastly-Module-Enabled", "1.2.205", true); } return $result; diff --git a/Release-Notes.md b/Release-Notes.md index daabdbf7..810c1980 100644 --- a/Release-Notes.md +++ b/Release-Notes.md @@ -1,5 +1,12 @@ # Fastly_Cdn Release Notes +## 1.2.205 + +- Update Netcea module to 4.3.2 https://github.com/fastly/fastly-magento2/pull/657 +- Refactored CLI commands to return CLI success or failure flags https://github.com/fastly/fastly-magento2/pull/662 +- Run fastly configuration tab is already open https://github.com/fastly/fastly-magento2/pull/660 +- Run init method if Fastly configuration tab is already open https://github.com/fastly/fastly-magento2/pull/661 + ## 1.2.204 - CLI fix when upload VCL https://github.com/fastly/fastly-magento2/pull/652 diff --git a/VERSION b/VERSION index f0bb3a34..7a633901 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.2.204 +1.2.205 diff --git a/composer.json b/composer.json index ddd81893..c86577c3 100644 --- a/composer.json +++ b/composer.json @@ -12,7 +12,7 @@ "zordius/lightncandy": "^1.2" }, "type": "magento2-module", - "version": "1.2.204", + "version": "1.2.205", "license": "BSD-3-Clause", "autoload": { "files": [ "registration.php" ], diff --git a/etc/vcl_snippets/deliver.vcl b/etc/vcl_snippets/deliver.vcl index ef9c97d0..96b4cdb1 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.204"; + set resp.http.Fastly-Magento-VCL-Uploaded = "1.2.205"; } else { remove resp.http.Fastly-Module-Enabled; remove resp.http.fastly-page-cacheable; diff --git a/etc/vcl_snippets/miss.vcl b/etc/vcl_snippets/miss.vcl index 0f7f2830..425d4647 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.204"; + set bereq.http.Fastly-Magento-VCL-Uploaded = "1.2.205"; diff --git a/etc/vcl_snippets/pass.vcl b/etc/vcl_snippets/pass.vcl index e5a34458..dbedab09 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.204"; + set bereq.http.Fastly-Magento-VCL-Uploaded = "1.2.205";