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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 9d5976d0843bf4508e972203a4e29e52da50bb51
4
- data.tar.gz: 82ee5fdf18cdc176152dfad7134eba597f8f192d
2
+ SHA256:
3
+ metadata.gz: 47ee80fbfe3bb88274af33c6ab9eddd9baddd131423dbc316f97017b3a006d69
4
+ data.tar.gz: fc1fdefa52f298c9ebfac211657b9918b2973bbfd9faabd781cbdf37e35b1ea4
5
5
  SHA512:
6
- metadata.gz: 0a7e173fb212aa6fd79cef37281fd2abeb7f83e3bfb6448a3cc009f2f937c58fe64817e94ed2a12ade528b15765be0f69173acf38e664573e9febc1d8bfb2cac
7
- data.tar.gz: 8de39dba7eaea8013995e3346b065aeab1272d2a230df24381ae61cfe368b275e2e32d67eb7f1f4babc212471cae78d39408bc46ac766dd3405cd8e51d090a38
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
  ==========
@@ -7,6 +7,8 @@
7
7
  # http://davidalger.com/contact/
8
8
  ##
9
9
 
10
+ require 'date'
11
+
10
12
  SSHKit.config.command_map[:magento] = "/usr/bin/env php -f bin/magento --"
11
13
 
12
14
  module Capistrano
@@ -9,6 +9,6 @@
9
9
 
10
10
  module Capistrano
11
11
  module Magento2
12
- VERSION = '0.7.2'
12
+ VERSION = '0.7.3'
13
13
  end
14
14
  end
@@ -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.2
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: 2017-10-15 00:00:00.000000000 Z
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.6.11
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.