Skip to content

Commit cdf380c

Browse files
committed
Bump to 1.2.164
1 parent a8f2c58 commit cdf380c

File tree

7 files changed

+10
-6
lines changed

7 files changed

+10
-6
lines changed

Diff for: Model/Layout/LayoutPlugin.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ public function afterGenerateElements(\Magento\Framework\View\Layout $subject)
108108
public function afterGetOutput(\Magento\Framework\View\Layout $subject, $result) // @codingStandardsIgnoreLine - unused parameter
109109
{
110110
if ($this->config->getType() == Config::FASTLY) {
111-
$this->response->setHeader("Fastly-Module-Enabled", "1.2.163", true);
111+
$this->response->setHeader("Fastly-Module-Enabled", "1.2.164", true);
112112
}
113113

114114
return $result;

Diff for: 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.164
4+
5+
- Fix type check in Image class https://github.com/fastly/fastly-magento2/pull/472
6+
37
## 1.2.163
48

59
- Vendor tooling was adding Authorization header to cache key hampering GraphQL caching. https://github.com/fastly/fastly-magento2/pull/470

Diff for: VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.2.163
1+
1.2.164

Diff for: composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"zordius/lightncandy": "^1.2"
1212
},
1313
"type": "magento2-module",
14-
"version": "1.2.163",
14+
"version": "1.2.164",
1515
"license": "BSD-3-Clause",
1616
"autoload": {
1717
"files": [ "registration.php" ],

Diff for: 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.163";
42+
set resp.http.Fastly-Magento-VCL-Uploaded = "1.2.164";
4343
} else {
4444
remove resp.http.Fastly-Module-Enabled;
4545
remove resp.http.fastly-page-cacheable;

Diff for: 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.163";
6+
set bereq.http.Fastly-Magento-VCL-Uploaded = "1.2.164";

Diff for: 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.163";
15+
set bereq.http.Fastly-Magento-VCL-Uploaded = "1.2.164";

0 commit comments

Comments
 (0)