Skip to content

Commit

Permalink
Bump to version 1.0.26
Browse files Browse the repository at this point in the history
  • Loading branch information
vvuksan committed Dec 17, 2018
1 parent 560d708 commit 78d4244
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 5 deletions.
6 changes: 6 additions & 0 deletions Release-Notes.md
@@ -1,5 +1,11 @@
# Fastly_Cdn Release Notes


## 1.0.26

- Change sales_order_view to sales_order_ to handle all routes https://github.com/fastly/fastly-magento/pull/46
- Fix ESI include path, fix translate warnings https://github.com/fastly/fastly-magento/pull/45

## 1.0.25

- Minor VCL changes
Expand Down
2 changes: 1 addition & 1 deletion VERSION
@@ -1 +1 @@
1.0.25
1.0.26
2 changes: 1 addition & 1 deletion app/code/community/Fastly/CDN/Helper/Cache.php
Expand Up @@ -245,7 +245,7 @@ public static function setTtlHeader($ttl)
// This page potentially has ESIs so as a first cut let's mark it as such
$response->setHeader("X-Esi", "1");

$response->setHeader("Fastly-Module-Enabled", "1.0.25", true);
$response->setHeader("Fastly-Module-Enabled", "1.0.26", true);
}

/**
Expand Down
2 changes: 1 addition & 1 deletion app/code/community/Fastly/CDN/etc/config.xml
Expand Up @@ -23,7 +23,7 @@
<config>
<modules>
<Fastly_CDN>
<version>1.0.25</version>
<version>1.0.26</version>
</Fastly_CDN>
</modules>
<global>
Expand Down
2 changes: 1 addition & 1 deletion app/code/community/Fastly/CDN/etc/vcl_snippets/deliver.vcl
@@ -1,6 +1,6 @@
# Add an easy way to see whether custom Fastly VCL has been uploaded
if ( req.http.Fastly-Debug ) {
set resp.http.Fastly-Magento-VCL-Uploaded = "1.0.25";
set resp.http.Fastly-Magento-VCL-Uploaded = "1.0.26";
} else {
remove resp.http.Fastly-Module-Enabled;
# remove Varnish/proxy header
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Expand Up @@ -3,7 +3,7 @@
"type": "magento-module",
"license": "BSD-3-Clause",
"description":"Fastly CDN module for Magento 1.x",
"version": "1.0.25",
"version": "1.0.26",
"authors":[
{
"name":"Fastly",
Expand Down

0 comments on commit 78d4244

Please sign in to comment.