Skip to content

Commit 4043a9f

Browse files
author
Rafael Grigorian
committed
Version 1.1.6 Released
1 parent 246d3d9 commit 4043a9f

File tree

30 files changed

+33
-108
lines changed

30 files changed

+33
-108
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,3 +24,7 @@
2424
- Fixed GH-11, when product is saved, categories are purged as well
2525
- Fixed GH-12, add 'substring' option for purge url functionality
2626
- Fixed GH-13, auto purge no works when deleting products/categories
27+
28+
## Version 1.1.6
29+
- Fixed GH-15, added module version and combines auto-purge messages
30+
- Fixed GH-18, Auto-purge loops through store views on "all store view" scope

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-MIT-lightgrey.svg?style=for-the-badge)
5-
![](https://img.shields.io/badge/Version-1.1.5-lightgrey.svg?style=for-the-badge)
5+
![](https://img.shields.io/badge/Version-1.1.6-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.5",
5+
"version": "1.1.6",
66
"license": "MIT",
77
"authors": [
88
{

gulpfile.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
const gulp = require ("gulp")
22
const gzip = require ("gulp-gzip")
3-
const magepack = require ("gulp-magepack")
43
const replace = require ("gulp-replace")
54
const tar = require ("gulp-tar")
65
const fs = require ("fs")
@@ -66,7 +65,6 @@ gulp.task ( "package", [ "clean", "bump", "build" ], ( callback ) => {
6665
"version": PACKAGE_VERSION
6766
}
6867
gulp.src ( BUILD_DIR + "/**/*" )
69-
.pipe ( magepack ( options ) )
7068
.pipe ( tar (`${PACKAGE_NAMESPACE}-${PACKAGE_VERSION}`) )
7169
.pipe ( gzip ({ extension: "tgz" }) )
7270
.pipe ( gulp.dest ( PACKAGE_DIR ) )

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.1.5",
2+
"version": "1.1.6",
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",
@@ -14,7 +14,6 @@
1414
"fs-extra": "^7.0.0",
1515
"gulp": "^3.9.1",
1616
"gulp-gzip": "^1.4.2",
17-
"gulp-magepack": "^1.0.3",
1817
"gulp-replace": "^1.0.0",
1918
"gulp-tar": "^2.1.0"
2019
}

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.5
12+
* @version 1.1.6
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.5
18+
* @version 1.1.6
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.5
11+
* @version 1.1.6
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.5
15+
* @version 1.1.6
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.5
13+
* @version 1.1.6
1414
* @package JetRails® Varnish
1515
* @category Purge
1616
* @author Rafael Grigorian - JetRails®

0 commit comments

Comments
 (0)