capistrano-magento2 0.8.8 → 0.8.9
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 +4 -4
- data/CHANGELOG.md +5 -0
- data/lib/capistrano/magento2/version.rb +1 -1
- data/lib/capistrano/tasks/deploy.rake +3 -3
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 43f30a96385795d812796ccfb8cbabaf44ec9e7a72d8224f9be33a04b6638141
|
|
4
|
+
data.tar.gz: 0a571390eabe5387f1ead474819b8b210b6ded15716582cf898edbcca411e0fc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9ba2d1397ed026bd4928c38ec488088f907ee46a2c8eba2fdd779f53e25cdf5f95319507acc837e5f7d18c81ef8405c2898e7ea17bae95b27cc6bd3fde511523
|
|
7
|
+
data.tar.gz: 04a53b31b8e8be76f63b51a2758a928d594536d67942ade2b4f70c0ad5a533129130a91225a5be1d7d7bf64252b6ff9fcba1877c1d88261a490d54a4be258590
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# Capistrano::Magento2 Change Log
|
|
2
2
|
|
|
3
|
+
0.8.9
|
|
4
|
+
=========
|
|
5
|
+
|
|
6
|
+
* Fixed issue with RabbitMQ settings caused by app:config:import running after setup-upgrade step vs prior to the database upgrades (which connects to RabbitMQ in recurring data upgrade scripts)
|
|
7
|
+
|
|
3
8
|
0.8.8
|
|
4
9
|
==========
|
|
5
10
|
|
|
@@ -77,9 +77,6 @@ namespace :deploy do
|
|
|
77
77
|
end
|
|
78
78
|
end
|
|
79
79
|
|
|
80
|
-
invoke 'magento:setup:db:schema:upgrade' if not fetch(:magento_internal_zero_down_flag)
|
|
81
|
-
invoke 'magento:setup:db:data:upgrade' if not fetch(:magento_internal_zero_down_flag)
|
|
82
|
-
|
|
83
80
|
# The app:config:import command was introduced in 2.2.0; check if it exists before invoking it
|
|
84
81
|
on primary fetch(:magento_deploy_setup_role) do
|
|
85
82
|
within release_path do
|
|
@@ -91,6 +88,9 @@ namespace :deploy do
|
|
|
91
88
|
end
|
|
92
89
|
end
|
|
93
90
|
|
|
91
|
+
invoke 'magento:setup:db:schema:upgrade' if not fetch(:magento_internal_zero_down_flag)
|
|
92
|
+
invoke 'magento:setup:db:data:upgrade' if not fetch(:magento_internal_zero_down_flag)
|
|
93
|
+
|
|
94
94
|
on primary fetch(:magento_deploy_setup_role) do
|
|
95
95
|
within release_path do
|
|
96
96
|
_disabled_modules = disabled_modules
|
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.8.
|
|
4
|
+
version: 0.8.9
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- David Alger
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-
|
|
11
|
+
date: 2019-06-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: capistrano
|