Skip to content

Commit b172057

Browse files
author
Vladimir Vuksan
committed
Bump to 1.2.218
1 parent f8cf114 commit b172057

File tree

7 files changed

+11
-6
lines changed

7 files changed

+11
-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.217", true);
101+
$this->response->setHeader("Fastly-Module-Enabled", "1.2.218", true);
102102
}
103103

104104
return $result;

Release-Notes.md

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

3+
## 1.2.218
4+
5+
- Update to Netacea module https://github.com/fastly/fastly-magento2/pull/696
6+
- Fixing deprecated usage https://github.com/fastly/fastly-magento2/pull/697
7+
38
## 1.2.217
49

510
- Update to Netacea module https://github.com/fastly/fastly-magento2/pull/690

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.2.217
1+
1.2.218

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.217",
15+
"version": "1.2.218",
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.217";
42+
set resp.http.Fastly-Magento-VCL-Uploaded = "1.2.218";
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.217";
6+
set bereq.http.Fastly-Magento-VCL-Uploaded = "1.2.218";

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.217";
15+
set bereq.http.Fastly-Magento-VCL-Uploaded = "1.2.218";

0 commit comments

Comments
 (0)