Skip to content

Commit abe13a4

Browse files
committed
Bump to 1.2.142
1 parent 8763bb8 commit abe13a4

File tree

7 files changed

+11
-6
lines changed

7 files changed

+11
-6
lines changed

Model/Layout/LayoutPlugin.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ public function afterGenerateXml(\Magento\Framework\View\Layout $subject, $resul
111111
public function afterGetOutput(\Magento\Framework\View\Layout $subject, $result) // @codingStandardsIgnoreLine - unused parameter
112112
{
113113
if ($this->config->getType() == Config::FASTLY) {
114-
$this->response->setHeader("Fastly-Module-Enabled", "1.2.141", true);
114+
$this->response->setHeader("Fastly-Module-Enabled", "1.2.142", true);
115115
}
116116

117117
return $result;

Release-Notes.md

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

3+
## 1.2.142
4+
5+
- Datadome Edge Module updated to 2.10 https://github.com/fastly/fastly-magento2/pull/391
6+
- Rate limiting may do early returns when there are multiple backends. Moving priority to address
7+
38
## 1.2.141
49

510
- Datadome Edge Module updated to 2.9 https://github.com/fastly/fastly-magento2/pull/387

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.2.141
1+
1.2.142

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.141",
14+
"version": "1.2.142",
1515
"license": "BSD-3-Clause",
1616
"autoload": {
1717
"files": [ "registration.php" ],

etc/vcl_snippets/deliver.vcl

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
# Add an easy way to see whether custom Fastly VCL has been uploaded
1919
if ( req.http.Fastly-Debug ) {
20-
set resp.http.Fastly-Magento-VCL-Uploaded = "1.2.141";
20+
set resp.http.Fastly-Magento-VCL-Uploaded = "1.2.142";
2121
} else {
2222
remove resp.http.Fastly-Module-Enabled;
2323
remove resp.http.fastly-page-cacheable;

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

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

0 commit comments

Comments
 (0)