capistrano-magento2 0.7.2 → 0.7.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
- data/CHANGELOG.md +7 -1
- data/lib/capistrano/magento2.rb +2 -0
- data/lib/capistrano/magento2/version.rb +1 -1
- data/lib/capistrano/tasks/magento.rake +2 -2
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 47ee80fbfe3bb88274af33c6ab9eddd9baddd131423dbc316f97017b3a006d69
|
|
4
|
+
data.tar.gz: fc1fdefa52f298c9ebfac211657b9918b2973bbfd9faabd781cbdf37e35b1ea4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 65131dff8afc4dd63206993ffcb99539c7914752aaabcaccc9224a6aa4f23847f87bf4ca49c354eea7878ce95d0bb47d73ab652ff0fa284354438bd92ccaafce
|
|
7
|
+
data.tar.gz: 6ce9e3458a0391453b402d13412efdb9e129917988d827a15d17b0c6a5f59645785848f55cbffb03bb7692c3299ab35753c0d46054e4298d576e473697c6f8a5
|
data/CHANGELOG.md
CHANGED
|
@@ -1,10 +1,16 @@
|
|
|
1
1
|
# Capistrano::Magento2 Change Log
|
|
2
2
|
|
|
3
|
+
0.7.3
|
|
3
4
|
==========
|
|
5
|
+
|
|
6
|
+
* Optimized set permissions operation (PR #89)
|
|
7
|
+
* Fixed `uninitialized constant Capistrano::Magento2::Setup::DateTime` error (PR #93, issue #92)
|
|
8
|
+
|
|
4
9
|
0.7.2
|
|
10
|
+
==========
|
|
5
11
|
|
|
6
12
|
* Added support for Magento 2.2 [static content deploy strategies](http://bit.ly/2yhMvVv) (PR #85)
|
|
7
|
-
* Added support for Magento 2.2 [shared application config files](http://bit.ly/2gF8Ouu)
|
|
13
|
+
* Added support for Magento 2.2 [shared application config files](http://bit.ly/2gF8Ouu) (issue #83)
|
|
8
14
|
|
|
9
15
|
0.7.1
|
|
10
16
|
==========
|
data/lib/capistrano/magento2.rb
CHANGED
|
@@ -277,8 +277,8 @@ namespace :magento do
|
|
|
277
277
|
task :permissions do
|
|
278
278
|
on release_roles :all do
|
|
279
279
|
within release_path do
|
|
280
|
-
execute :find, release_path, "-type d -exec chmod #{fetch(:magento_deploy_chmod_d).to_i} {} +"
|
|
281
|
-
execute :find, release_path, "-type f -exec chmod #{fetch(:magento_deploy_chmod_f).to_i} {} +"
|
|
280
|
+
execute :find, release_path, "-type d ! -perm #{fetch(:magento_deploy_chmod_d).to_i} -exec chmod #{fetch(:magento_deploy_chmod_d).to_i} {} +"
|
|
281
|
+
execute :find, release_path, "-type f ! -perm #{fetch(:magento_deploy_chmod_f).to_i} -exec chmod #{fetch(:magento_deploy_chmod_f).to_i} {} +"
|
|
282
282
|
|
|
283
283
|
fetch(:magento_deploy_chmod_x).each() do |file|
|
|
284
284
|
execute :chmod, "+x #{release_path}/#{file}"
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: capistrano-magento2
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.7.
|
|
4
|
+
version: 0.7.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- David Alger
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2018-01-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: capistrano
|
|
@@ -99,7 +99,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
99
99
|
version: '0'
|
|
100
100
|
requirements: []
|
|
101
101
|
rubyforge_project:
|
|
102
|
-
rubygems_version: 2.
|
|
102
|
+
rubygems_version: 2.7.4
|
|
103
103
|
signing_key:
|
|
104
104
|
specification_version: 4
|
|
105
105
|
summary: A Capistrano extension for Magento 2 deployments.
|