Skip to content

Commit f78dfe0

Browse files
author
Rafael Grigorian
committed
Version 1.1.1 Complete
1 parent 5046fac commit f78dfe0

File tree

29 files changed

+433
-258
lines changed

29 files changed

+433
-258
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,9 @@
33

44
## Version 1.1.0
55
- Removed backend server configuration
6-
- Removed VCL template generation by user
6+
- Removed VCL template generation by user
7+
8+
## Version 1.1.1
9+
- Change caching application from varnish module config page
10+
- Change status of varnish module when cache application changes
11+
- Changed headers in conf/default.vcl

dist/JetRails_Varnish-1.1.1.tgz

19.9 KB
Binary file not shown.

dist/Varnish.zip

-48 KB
Binary file not shown.

package.json

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "Varnish",
3-
"version": "1.1.0",
3+
"version": "1.1.1",
44
"description": "Magento 2 - Manage Varnish Cache",
55
"repository": {
66
"type": "git",
@@ -22,12 +22,5 @@
2222
"grunt-mkdir": "^1.0.0",
2323
"grunt-replace": "^1.0.1",
2424
"grunt-rsync": "^2.0.1"
25-
},
26-
"jetrailsDependencies": [],
27-
"staging": {
28-
"port": "22",
29-
"user": "raffi",
30-
"host": "localhost",
31-
"dest": "~/Site/"
3225
}
3326
}

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.0
12+
* @version 1.1.1
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
@@ -14,7 +14,7 @@
1414
* is meant to be a buffer between that class and the commands that are implemented in this
1515
* module. Instead of using the execute command, the child classes overload the runCommand
1616
* method.
17-
* @version 1.1.0
17+
* @version 1.1.1
1818
* @package JetRails® Varnish
1919
* @category Status
2020
* @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.0
11+
* @version 1.1.1
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.0
15+
* @version 1.1.1
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.0
12+
* @version 1.1.1
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.0
12+
* @version 1.1.1
1313
* @package JetRails® Varnish
1414
* @category Command
1515
* @author Rafael Grigorian - JetRails®

0 commit comments

Comments
 (0)