Skip to content

Commit a696f66

Browse files
committed
Bump 1.2.227
1 parent 8884ab9 commit a696f66

File tree

7 files changed

+10
-6
lines changed

7 files changed

+10
-6
lines changed

Model/Layout/LayoutPlugin.php

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

104104
return $result;

Release-Notes.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Fastly_Cdn Release Notes
22

3+
## 1.2.227
4+
5+
- Use bulk update API for ACLs for IP list update in fastly:maintenance command https://github.com/fastly/fastly-magento2/pull/741
6+
37
## 1.2.226
48

59
- Update available Fastly Shielding POP list https://github.com/fastly/fastly-magento2/pull/738

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.2.226
1+
1.2.227

composer.json

+1-1
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.226",
15+
"version": "1.2.227",
1616
"license": "BSD-3-Clause",
1717
"autoload": {
1818
"files": [ "registration.php" ],

etc/vcl_snippets/deliver.vcl

+1-1
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.226";
42+
set resp.http.Fastly-Magento-VCL-Uploaded = "1.2.227";
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

+1-1
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.226";
6+
set bereq.http.Fastly-Magento-VCL-Uploaded = "1.2.227";

etc/vcl_snippets/pass.vcl

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

0 commit comments

Comments
 (0)