Skip to content

Commit f9b02cc

Browse files
author
Rafael Grigorian
committed
Released Version 1.1.10
1 parent c12ce1b commit f9b02cc

File tree

28 files changed

+30
-27
lines changed

28 files changed

+30
-27
lines changed

CHANGELOG.md

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

3838
## Version 1.1.9
3939
- Fixed GH-22, auto-purge failed when REST API triggered save
40+
41+
## Version 1.1.10
42+
- Fixed GH-26, Auto-purge hangs when invalid varnish server is used

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
![](https://img.shields.io/badge/License-JetRails_License-lightgrey.svg?style=for-the-badge)
5-
![](https://img.shields.io/badge/Version-1.1.9-lightgrey.svg?style=for-the-badge)
5+
![](https://img.shields.io/badge/Version-1.1.10-lightgrey.svg?style=for-the-badge)
66
![](https://img.shields.io/badge/Stability-Stable-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.9",
5+
"version": "1.1.10",
66
"license": "SEE LICENSE IN LICENSE.md",
77
"authors": [
88
{

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.1.9",
2+
"version": "1.1.10",
33
"name": "magento2-varnish",
44
"description": "Magento 2 extension which interfaces with the Varnish® caching application in order to manage it through the Magento backend.",
55
"author": "Rafael Grigorian",

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.9
12+
* @version 1.1.10
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
@@ -15,7 +15,7 @@
1515
* is meant to be a buffer between that class and the commands that are implemented in this
1616
* module. Instead of using the execute command, the child classes overload the runCommand
1717
* method.
18-
* @version 1.1.9
18+
* @version 1.1.10
1919
* @package JetRails® Varnish
2020
* @category Status
2121
* @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.9
11+
* @version 1.1.10
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.9
15+
* @version 1.1.10
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
@@ -10,7 +10,7 @@
1010
/**
1111
* Url.php - This class inherits from the AbstractCommand. This command takes in a url and asks
1212
* all the saved varnish servers a request to purge the passed url from cache.
13-
* @version 1.1.9
13+
* @version 1.1.10
1414
* @package JetRails® Varnish
1515
* @category Purge
1616
* @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.9
12+
* @version 1.1.10
1313
* @package JetRails® Varnish
1414
* @category Command
1515
* @author Rafael Grigorian - JetRails®

0 commit comments

Comments
 (0)