Skip to content

Commit a74997b

Browse files
author
Rafael Grigorian
committed
Version 1.1.5 Released
- Fixed GH-10, added auto-purge for categories - Fixed GH-11, when product is saved, categories are purged as well - Fixed GH-12, add 'substring' option for purge url functionality - Fixed GH-13, auto purge no works when deleting products/categories
1 parent f254ce4 commit a74997b

File tree

36 files changed

+77
-59
lines changed

36 files changed

+77
-59
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,9 @@
1818

1919
## Version 1.1.4
2020
- Fixed GH-8, issue with not using rewrites for auto-purge
21+
22+
## Version 1.1.5
23+
- Fixed GH-10, added auto-purge for categories
24+
- Fixed GH-11, when product is saved, categories are purged as well
25+
- Fixed GH-12, add 'substring' option for purge url functionality
26+
- Fixed GH-13, auto purge no works when deleting products/categories

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# Magento 2 - Varnish
22
> Magento 2 extension which interfaces with the Varnish caching application in order to manage it through the Magento backend
33
4-
![MIT License](https://img.shields.io/badge/License-MIT-lightgrey.svg?style=for-the-badge)
5-
![Version 1.1.4](https://img.shields.io/badge/Version-1.1.4-lightgrey.svg?style=for-the-badge)
6-
![Stability Beta](https://img.shields.io/badge/Stability-Beta-lightgrey.svg?style=for-the-badge)
4+
![](https://img.shields.io/badge/License-MIT-lightgrey.svg?style=for-the-badge)
5+
![](https://img.shields.io/badge/Version-1.1.5-lightgrey.svg?style=for-the-badge)
6+
![](https://img.shields.io/badge/Stability-Stable-lightgrey.svg?style=for-the-badge)
77

88
<p align="center" >
99
<img src="docs/images/preview.png" width="100%" />

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "jetrails/magento2-varnish",
33
"description": "Magento 2 extension which interfaces with the Varnish caching application in order to manage it through the Magento backend",
44
"type": "magento2-module",
5-
"version": "1.1.4",
5+
"version": "1.1.5",
66
"license": "MIT",
77
"authors": [
88
{

design/user_guide.sketch

116 KB
Binary file not shown.

docs/user_guide.pdf

119 KB
Binary file not shown.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "Varnish",
3-
"version": "1.1.4",
3+
"version": "1.1.5",
44
"description": "Magento 2 extension which interfaces with the Varnish caching application in order to manage it through the Magento backend",
55
"repository": {
66
"type": "git",

src/app/code/JetRails/Varnish/Block/Adminhtml/System/Config/Form/Link.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* Link.php - This block alongside the template is used to render a link to the cache management
1010
* page in the magento store backend. This block is also referenced as a frontend model in the
1111
* system.xml file.
12-
* @version 1.1.4
12+
* @version 1.1.5
1313
* @package JetRails® Varnish
1414
* @category Form
1515
* @author Rafael Grigorian - JetRails®
@@ -44,4 +44,4 @@ public function getActionUrl () {
4444
return $this->getUrl ("adminhtml/cache/index");
4545
}
4646

47-
}
47+
}

src/app/code/JetRails/Varnish/Console/Command/AbstractCommand.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
namespace JetRails\Varnish\Console\Command;
44

5-
65
use JetRails\Varnish\Helper\Data;
76
use JetRails\Varnish\Helper\Purger;
87
use JetRails\Varnish\Logger\Logger;
@@ -16,7 +15,7 @@
1615
* is meant to be a buffer between that class and the commands that are implemented in this
1716
* module. Instead of using the execute command, the child classes overload the runCommand
1817
* method.
19-
* @version 1.1.4
18+
* @version 1.1.5
2019
* @package JetRails® Varnish
2120
* @category Status
2221
* @author Rafael Grigorian - JetRails®

src/app/code/JetRails/Varnish/Console/Command/Purge/All.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
/**
99
* All.php - This class inherits from the AbstractCommand. This command contacts all the
1010
* configured varnish cache servers and asks them to flush all the cache for all urls.
11-
* @version 1.1.4
11+
* @version 1.1.5
1212
* @package JetRails® Varnish
1313
* @category Purge
1414
* @author Rafael Grigorian - JetRails®
@@ -81,4 +81,4 @@ protected function runCommand ( InputInterface $input ) {
8181
];
8282
}
8383

84-
}
84+
}

src/app/code/JetRails/Varnish/Console/Command/Purge/Store.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
* servers that start with the store view's base url. If no argument is passed, then a list of
1313
* store views along with their base url, id, and name is displayed in the payload of the
1414
* response.
15-
* @version 1.1.4
15+
* @version 1.1.5
1616
* @package JetRails® Varnish
1717
* @category Purge
1818
* @author Rafael Grigorian - JetRails®
@@ -138,4 +138,4 @@ protected function runCommand ( InputInterface $input ) {
138138
return [ "status" => false, "message" => "could not find specified store view" ];
139139
}
140140

141-
}
141+
}

0 commit comments

Comments
 (0)