capistrano 3.17.2 → 3.17.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 +4 -4
- data/.circleci/config.yml +9 -5
- data/lib/capistrano/version.rb +1 -1
- data/spec/support/Vagrantfile +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 40ec2ebdd2f37d5a11dfdfbff44929092630009b733ab4c5a8b4c7b44a9bd900
|
|
4
|
+
data.tar.gz: dc48fe442df9e7e5e89392c5b3f665c8e010469e3072086c1dbb0a59c1e14973
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 433aa1c56604def9f02fc1c02c58a4662edd8e578f9b6672dc0ce037c4352788baaa539c8083005056ba6925778d279f3b100178fefbcc229d22603ebf6fc16c
|
|
7
|
+
data.tar.gz: ad09f33f20e4929ad44cd22d537440291ef58ea5c518ab82c01ab6227a12932cacee81423664e1a37f9c597f381aca90349de19e7b2815a6979250124826b23f
|
data/.circleci/config.yml
CHANGED
|
@@ -5,7 +5,7 @@ executors:
|
|
|
5
5
|
parameters:
|
|
6
6
|
version:
|
|
7
7
|
description: "Ruby version number"
|
|
8
|
-
default: "3.
|
|
8
|
+
default: "3.2"
|
|
9
9
|
type: string
|
|
10
10
|
docker:
|
|
11
11
|
- image: ruby:<< parameters.version >>
|
|
@@ -16,7 +16,7 @@ commands:
|
|
|
16
16
|
parameters:
|
|
17
17
|
version:
|
|
18
18
|
description: "Ruby version number"
|
|
19
|
-
default: "3.
|
|
19
|
+
default: "3.2"
|
|
20
20
|
type: string
|
|
21
21
|
steps:
|
|
22
22
|
- restore_cache:
|
|
@@ -39,8 +39,10 @@ commands:
|
|
|
39
39
|
name: Install OpenSSH 8.1p1 if necessary
|
|
40
40
|
command: |
|
|
41
41
|
if $(ssh -V 2>&1 | grep -q -v OpenSSH_8); then
|
|
42
|
-
|
|
43
|
-
|
|
42
|
+
# Stretch packages have been moved to the archvie.debian.org domain as of April 2023
|
|
43
|
+
sed -E 's/^(deb http:\/\/)(security|deb)(\.debian\.org\S+ stretch)/\1archive\3/g' -i /etc/apt/sources.list
|
|
44
|
+
apt-get update || true
|
|
45
|
+
apt-get install -y --force-yes libssl-dev || true
|
|
44
46
|
mkdir ~/tempdownload
|
|
45
47
|
cd ~/tempdownload
|
|
46
48
|
wget https://cdn.openbsd.org/pub/OpenBSD/OpenSSH/portable/openssh-8.1p1.tar.gz
|
|
@@ -67,7 +69,7 @@ jobs:
|
|
|
67
69
|
parameters:
|
|
68
70
|
version:
|
|
69
71
|
description: "Ruby version number"
|
|
70
|
-
default: "3.
|
|
72
|
+
default: "3.2"
|
|
71
73
|
type: string
|
|
72
74
|
executor:
|
|
73
75
|
name: ruby
|
|
@@ -100,6 +102,7 @@ workflows:
|
|
|
100
102
|
"2.7",
|
|
101
103
|
"3.0",
|
|
102
104
|
"3.1",
|
|
105
|
+
"3.2",
|
|
103
106
|
]
|
|
104
107
|
cron-workflow:
|
|
105
108
|
jobs:
|
|
@@ -119,6 +122,7 @@ workflows:
|
|
|
119
122
|
"2.7",
|
|
120
123
|
"3.0",
|
|
121
124
|
"3.1",
|
|
125
|
+
"3.2",
|
|
122
126
|
]
|
|
123
127
|
triggers:
|
|
124
128
|
- schedule:
|
data/lib/capistrano/version.rb
CHANGED
data/spec/support/Vagrantfile
CHANGED
|
@@ -10,7 +10,7 @@ Vagrant.configure("2") do |config|
|
|
|
10
10
|
primary.vm.network "forwarded_port", guest: 22, host: "222#{i}".to_i
|
|
11
11
|
primary.vm.provision :shell, inline: "sudo apt-get -y install git-core"
|
|
12
12
|
|
|
13
|
-
vagrantkey = open("https://raw.githubusercontent.com/mitchellh/vagrant/master/keys/vagrant.pub", "r", &:read)
|
|
13
|
+
vagrantkey = URI.open("https://raw.githubusercontent.com/mitchellh/vagrant/master/keys/vagrant.pub", "r", &:read)
|
|
14
14
|
|
|
15
15
|
primary.vm.provision :shell,
|
|
16
16
|
inline: <<-INLINE
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: capistrano
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.17.
|
|
4
|
+
version: 3.17.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tom Clements
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2023-
|
|
12
|
+
date: 2023-05-23 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: airbrussh
|
|
@@ -235,7 +235,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
235
235
|
- !ruby/object:Gem::Version
|
|
236
236
|
version: '0'
|
|
237
237
|
requirements: []
|
|
238
|
-
rubygems_version: 3.4.
|
|
238
|
+
rubygems_version: 3.4.12
|
|
239
239
|
signing_key:
|
|
240
240
|
specification_version: 4
|
|
241
241
|
summary: Capistrano - Welcome to easy deployment with Ruby over SSH
|