Skip to content

Commit 7212b3a

Browse files
author
Rafael Grigorian
committed
Version 1.1.4
- Fixed GH-8
1 parent 20580a2 commit 7212b3a

File tree

25 files changed

+27
-24
lines changed

25 files changed

+27
-24
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,6 @@
1515

1616
## Version 1.1.3
1717
- Fixed GH-7, issue of invalidating config cache too often
18+
19+
## Version 1.1.4
20+
- Fixed GH-8, issue with not using rewrites for auto-purge

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
> Magento 2 extension which interfaces with the Varnish caching application in order to manage it through the Magento backend
33
44
![MIT License](https://img.shields.io/badge/License-MIT-lightgrey.svg?style=for-the-badge)
5-
![Version 1.1.3](https://img.shields.io/badge/Version-1.1.3-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)
66
![Stability Beta](https://img.shields.io/badge/Stability-Beta-lightgrey.svg?style=for-the-badge)
77

88
<p align="center" >

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.2",
5+
"version": "1.1.4",
66
"license": "MIT",
77
"authors": [
88
{

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.3",
3+
"version": "1.1.4",
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: 1 addition & 1 deletion
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.3
12+
* @version 1.1.4
1313
* @package JetRails® Varnish
1414
* @category Form
1515
* @author Rafael Grigorian - JetRails®

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* is meant to be a buffer between that class and the commands that are implemented in this
1717
* module. Instead of using the execute command, the child classes overload the runCommand
1818
* method.
19-
* @version 1.1.3
19+
* @version 1.1.4
2020
* @package JetRails® Varnish
2121
* @category Status
2222
* @author Rafael Grigorian - JetRails®

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

Lines changed: 1 addition & 1 deletion
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.3
11+
* @version 1.1.4
1212
* @package JetRails® Varnish
1313
* @category Purge
1414
* @author Rafael Grigorian - JetRails®

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

Lines changed: 1 addition & 1 deletion
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.3
15+
* @version 1.1.4
1616
* @package JetRails® Varnish
1717
* @category Purge
1818
* @author Rafael Grigorian - JetRails®

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
/**
1010
* Url.php - This class inherits from the AbstractCommand. This command takes in a url and asks
1111
* all the saved varnish servers a request to purge the passed url from cache.
12-
* @version 1.1.3
12+
* @version 1.1.4
1313
* @package JetRails® Varnish
1414
* @category Purge
1515
* @author Rafael Grigorian - JetRails®

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* Status.php - This class inherits from the AbstractCommand. This command tells the user if
1010
* the module is enabled. In the sense that the 'Caching Application' setting is set to
1111
* 'Varnish Cache', and not 'Built-in Cache'.
12-
* @version 1.1.3
12+
* @version 1.1.4
1313
* @package JetRails® Varnish
1414
* @category Command
1515
* @author Rafael Grigorian - JetRails®

0 commit comments

Comments
 (0)