capistrano-craft 0.3.4 → 0.3.6
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 +8 -0
- data/Gemfile.lock +17 -10
- data/lib/capistrano/craft/version.rb +1 -1
- data/lib/capistrano/tasks/craft.rake +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0adc2e43e625e22de0fc7b48441df37f26c83bec890cae653044e28e98a52a26
|
4
|
+
data.tar.gz: 3fea842a189ccca35c5c1f41c3c5f69af91ba09b1e6a72def6cdaba8871c6340
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 57e789c35fab99c63df911f9da4e9d86c4ba9765e29687ac1428333d734330ec9015b13c1c26780650e856a0c2dd47974cd4e988b677cee87dfb97f7ea72a3b4
|
7
|
+
data.tar.gz: 5a956be5128447259128c7335f7436a7715823f1324da9cd927085a2fae3c3ee5ca64c39dbbf43d29f5239cbc4e2dbfe4d51a6a48b4abae50136323123d58d7a
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release Notes for Capistrano Craft
|
2
2
|
|
3
|
+
## 0.3.6 - 2024-10-23
|
4
|
+
|
5
|
+
- Add `--zip` to `db/backup` command
|
6
|
+
|
7
|
+
## 0.3.5 - 2024-01-16
|
8
|
+
|
9
|
+
- Use `db/backup` instead of deprecated `backup/db` command
|
10
|
+
|
3
11
|
## 0.3.4 - 2021-10-28
|
4
12
|
|
5
13
|
- Separate out asset sync into two sub-commands push and pull.
|
data/Gemfile.lock
CHANGED
@@ -1,30 +1,34 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
capistrano-craft (0.3.
|
4
|
+
capistrano-craft (0.3.6)
|
5
5
|
capistrano (~> 3.1)
|
6
6
|
capistrano-composer (~> 0.0.6)
|
7
7
|
|
8
8
|
GEM
|
9
9
|
remote: https://rubygems.org/
|
10
10
|
specs:
|
11
|
-
airbrussh (1.
|
11
|
+
airbrussh (1.5.3)
|
12
12
|
sshkit (>= 1.6.1, != 1.7.0)
|
13
|
-
|
13
|
+
base64 (0.2.0)
|
14
|
+
capistrano (3.19.1)
|
14
15
|
airbrussh (>= 1.0.0)
|
15
16
|
i18n
|
16
17
|
rake (>= 10.0.0)
|
17
18
|
sshkit (>= 1.9.0)
|
18
19
|
capistrano-composer (0.0.6)
|
19
20
|
capistrano (>= 3.0.0.pre)
|
20
|
-
concurrent-ruby (1.
|
21
|
+
concurrent-ruby (1.3.4)
|
21
22
|
diff-lcs (1.3)
|
22
|
-
i18n (1.
|
23
|
+
i18n (1.14.6)
|
23
24
|
concurrent-ruby (~> 1.0)
|
24
|
-
net-scp (
|
25
|
-
net-ssh (>= 2.6.5, <
|
26
|
-
net-
|
27
|
-
|
25
|
+
net-scp (4.0.0)
|
26
|
+
net-ssh (>= 2.6.5, < 8.0.0)
|
27
|
+
net-sftp (4.0.0)
|
28
|
+
net-ssh (>= 5.0.0, < 8.0.0)
|
29
|
+
net-ssh (7.3.0)
|
30
|
+
ostruct (0.6.0)
|
31
|
+
rake (13.2.1)
|
28
32
|
rspec (3.9.0)
|
29
33
|
rspec-core (~> 3.9.0)
|
30
34
|
rspec-expectations (~> 3.9.0)
|
@@ -38,9 +42,12 @@ GEM
|
|
38
42
|
diff-lcs (>= 1.2.0, < 2.0)
|
39
43
|
rspec-support (~> 3.9.0)
|
40
44
|
rspec-support (3.9.2)
|
41
|
-
sshkit (1.
|
45
|
+
sshkit (1.23.2)
|
46
|
+
base64
|
42
47
|
net-scp (>= 1.1.2)
|
48
|
+
net-sftp (>= 2.1.2)
|
43
49
|
net-ssh (>= 2.8.0)
|
50
|
+
ostruct
|
44
51
|
|
45
52
|
PLATFORMS
|
46
53
|
ruby
|
@@ -30,7 +30,7 @@ namespace :craft do
|
|
30
30
|
desc "Apply the project config to database after running Craft backup command"
|
31
31
|
task :apply do
|
32
32
|
on release_roles(fetch(:craft_deploy_roles)) do
|
33
|
-
craft_console "backup
|
33
|
+
craft_console "db/backup --zip"
|
34
34
|
craft_console "migrate/all --no-content"
|
35
35
|
craft_console "project-config/apply"
|
36
36
|
craft_console "migrate"
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: capistrano-craft
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Chris Dyer
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-10-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: capistrano
|
@@ -69,7 +69,7 @@ licenses:
|
|
69
69
|
metadata:
|
70
70
|
homepage_uri: https://github.com/dyerc/capistrano-craft
|
71
71
|
source_code_uri: https://github.com/dyerc/capistrano-craft
|
72
|
-
post_install_message:
|
72
|
+
post_install_message:
|
73
73
|
rdoc_options: []
|
74
74
|
require_paths:
|
75
75
|
- lib
|
@@ -84,8 +84,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
84
84
|
- !ruby/object:Gem::Version
|
85
85
|
version: '0'
|
86
86
|
requirements: []
|
87
|
-
rubygems_version: 3.
|
88
|
-
signing_key:
|
87
|
+
rubygems_version: 3.3.26
|
88
|
+
signing_key:
|
89
89
|
specification_version: 4
|
90
90
|
summary: Capistrano Craft - Easy deployment of Symfony 4 apps with Ruby over SSH
|
91
91
|
test_files: []
|