Skip to content

Commit dd786e2

Browse files
author
Vladimir Vuksan
committed
Bump to 1.2.220
1 parent 00b55d9 commit dd786e2

File tree

7 files changed

+10
-6
lines changed

7 files changed

+10
-6
lines changed

Model/Layout/LayoutPlugin.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ public function afterGenerateElements(\Magento\Framework\View\Layout $subject):
9898
public function afterGetOutput(\Magento\Framework\View\Layout $subject, $result) // @codingStandardsIgnoreLine - unused parameter
9999
{
100100
if ($this->config->getType() === Config::FASTLY) {
101-
$this->response->setHeader("Fastly-Module-Enabled", "1.2.219", true);
101+
$this->response->setHeader("Fastly-Module-Enabled", "1.2.220", true);
102102
}
103103

104104
return $result;

Release-Notes.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Fastly_Cdn Release Notes
22

3+
## 1.2.220
4+
5+
- Logging endpoints changes https://github.com/fastly/fastly-magento2/pull/701
6+
37
## 1.2.219
48

59
- Removing trailing comma in WAF constructor to be compatible with PHP 7.2 https://github.com/fastly/fastly-magento2/pull/698

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.2.219
1+
1.2.220

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"zordius/lightncandy": "^1.2"
1313
},
1414
"type": "magento2-module",
15-
"version": "1.2.219",
15+
"version": "1.2.220",
1616
"license": "BSD-3-Clause",
1717
"autoload": {
1818
"files": [ "registration.php" ],

etc/vcl_snippets/deliver.vcl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939

4040
# Add an easy way to see whether custom Fastly VCL has been uploaded
4141
if ( req.http.Fastly-Debug ) {
42-
set resp.http.Fastly-Magento-VCL-Uploaded = "1.2.219";
42+
set resp.http.Fastly-Magento-VCL-Uploaded = "1.2.220";
4343
if (table.lookup(magentomodule_config, "allow_super_users_during_maint", "0") == "1") {
4444
set resp.http.Fastly-Magento-Maintenance-Mode = "on";
4545
}

etc/vcl_snippets/miss.vcl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
unset bereq.http.Accept-Encoding;
44

55
# Send VCL version uploaded to the backend
6-
set bereq.http.Fastly-Magento-VCL-Uploaded = "1.2.219";
6+
set bereq.http.Fastly-Magento-VCL-Uploaded = "1.2.220";

etc/vcl_snippets/pass.vcl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
}
1313

1414
# Send VCL version uploaded to the backend
15-
set bereq.http.Fastly-Magento-VCL-Uploaded = "1.2.219";
15+
set bereq.http.Fastly-Magento-VCL-Uploaded = "1.2.220";

0 commit comments

Comments
 (0)