Skip to content

Commit 2bdc170

Browse files
committed
Bump version
1 parent db01c70 commit 2bdc170

File tree

6 files changed

+8
-15
lines changed

6 files changed

+8
-15
lines changed

Diff for: Documentation/OTHER-FUNCTIONS.md

-11
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
## Contents
44

55
* [Purging](#purging)
6-
* [VCL Design Exceptions](#vcl-design-exceptions)
76

87
## Purging
98

@@ -51,13 +50,3 @@ refreshed. You can also enable automatic purging of CMS pages, categories and
5150
products when they are saved (see configuration). If you don't want these
5251
observers to take automatic action comment them out in the config.xml of the
5352
Fastly_Cdn module.
54-
55-
## VCL Design Exceptions
56-
57-
By default Varnish does not take into account
58-
User-Agent string of a request when building its cache object. Magento Design
59-
Exceptions use regular expressions to match different design configurations to
60-
User-Agent strings. In order to make Design Exceptions work with Varnish you
61-
will have to renew Varnish VCL each time Design Exceptions are updated.
62-
To do this use the button in the plugin to automatically upload VCL to Fastly in the
63-
configuration section. This will upload the correct VCL to your Fastly service.

Diff for: Model/Layout/LayoutPlugin.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ public function afterGetOutput(\Magento\Framework\View\Layout $subject, $result)
113113
}
114114
# Add a debug header to indicate this request has passed through the Fastly Module. This is
115115
# for ease of debugging
116-
$this->response->setHeader("Fastly-Module-Enabled", "1.2.27", true);
116+
$this->response->setHeader("Fastly-Module-Enabled", "1.2.28", true);
117117
}
118118
return $result;
119119
}

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.28
4+
5+
- Fix for missing observers. Relates to MAGETWO-70616 issue
6+
37
## 1.2.27
48

59
- Error/maintenance page was returning 503 OK when returning a response. This has now been change

Diff for: VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.2.27
1+
1.2.28

Diff for: composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"magento/framework": ">=100.0.0"
1111
},
1212
"type": "magento2-module",
13-
"version": "1.2.27",
13+
"version": "1.2.28",
1414
"license": [
1515
"BSD"
1616
],

Diff for: etc/vcl_snippets/deliver.vcl

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
# Add an easy way to see whether custom Fastly VCL has been uploaded
2121
if ( req.http.Fastly-Debug ) {
22-
set resp.http.Fastly-Magento-VCL-Uploaded = "1.2.27";
22+
set resp.http.Fastly-Magento-VCL-Uploaded = "1.2.28";
2323
} else {
2424
remove resp.http.Fastly-Module-Enabled;
2525
remove resp.http.fastly-page-cacheable;

0 commit comments

Comments
 (0)