diff --git a/Model/Layout/LayoutPlugin.php b/Model/Layout/LayoutPlugin.php index 7b124f36..352a8208 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.222", true); + $this->response->setHeader("Fastly-Module-Enabled", "1.2.223", true); } return $result; diff --git a/Release-Notes.md b/Release-Notes.md index d7990c96..0adfbb4d 100644 --- a/Release-Notes.md +++ b/Release-Notes.md @@ -1,5 +1,9 @@ # Fastly_Cdn Release Notes +## 1.2.223 + +- Update available Fastly Shielding POP list + ## 1.2.222 - Update to DataDome Fastly Module 2.23.0 https://github.com/fastly/fastly-magento2/pull/715 diff --git a/VERSION b/VERSION index b84d56ba..39e06704 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.2.222 +1.2.223 diff --git a/composer.json b/composer.json index 671d06f9..56eb1c9d 100644 --- a/composer.json +++ b/composer.json @@ -12,7 +12,7 @@ "zordius/lightncandy": "^1.2" }, "type": "magento2-module", - "version": "1.2.222", + "version": "1.2.223", "license": "BSD-3-Clause", "autoload": { "files": [ "registration.php" ], diff --git a/etc/shielding/datacenters.json b/etc/shielding/datacenters.json index 821814f6..1f90deed 100644 --- a/etc/shielding/datacenters.json +++ b/etc/shielding/datacenters.json @@ -716,6 +716,20 @@ }, "shield": "bur-ca-us" }, + { + "code": "HHR", + "name": "Los Angeles (Metro)", + "group": "United States", + "region": "US-West", + "stats_region": "usa", + "billing_region": "North America", + "coordinates": { + "x": 0, + "y": 0, + "latitude": 33.942536, + "longitude": -118.408075 + } + }, { "code": "LAX", "name": "Los Angeles (Metro)", @@ -1228,6 +1242,20 @@ }, "shield": "qpg-singapore-sg" }, + { + "code": "SIN", + "name": "Singapore", + "group": "Asia/Pacific", + "region": "Asia", + "stats_region": "asia", + "billing_region": "Asia", + "coordinates": { + "x": 0, + "y": 0, + "latitude": 1.350189, + "longitude": 103.994433 + } + }, { "code": "SOF", "name": "Sofia", @@ -1287,21 +1315,6 @@ }, "shield": "sydney-au" }, - { - "code": "HND", - "name": "Tokyo", - "group": "Asia/Pacific", - "region": "Asia", - "stats_region": "asia", - "billing_region": "Asia", - "coordinates": { - "x": 0, - "y": 0, - "latitude": 35.622281, - "longitude": 139.748426 - }, - "shield": "hnd-tokyo-jp" - }, { "code": "TYO", "name": "Tokyo", diff --git a/etc/vcl_snippets/deliver.vcl b/etc/vcl_snippets/deliver.vcl index f23f1595..f9535441 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.222"; + set resp.http.Fastly-Magento-VCL-Uploaded = "1.2.223"; 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 256db1b7..17b5d759 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.222"; + set bereq.http.Fastly-Magento-VCL-Uploaded = "1.2.223"; diff --git a/etc/vcl_snippets/pass.vcl b/etc/vcl_snippets/pass.vcl index a1993946..6da3d303 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.222"; + set bereq.http.Fastly-Magento-VCL-Uploaded = "1.2.223";