Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package rubygem-capistrano for openSUSE:Factory checked in at 2022-09-03 23:18:44 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/rubygem-capistrano (Old) and /work/SRC/openSUSE:Factory/.rubygem-capistrano.new.2083 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "rubygem-capistrano" Sat Sep 3 23:18:44 2022 rev:39 rq:1000907 version:3.17.1 Changes: -------- --- /work/SRC/openSUSE:Factory/rubygem-capistrano/rubygem-capistrano.changes 2022-04-30 22:52:33.764226274 +0200 +++ /work/SRC/openSUSE:Factory/.rubygem-capistrano.new.2083/rubygem-capistrano.changes 2022-09-03 23:18:52.659783984 +0200 @@ -1,0 +2,7 @@ +Mon Aug 29 06:49:46 UTC 2022 - Stephan Kulow <[email protected]> + +updated to version 3.17.1 + see installed CHANGELOG.md + + +------------------------------------------------------------------- Old: ---- capistrano-3.17.0.gem New: ---- capistrano-3.17.1.gem ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ rubygem-capistrano.spec ++++++ --- /var/tmp/diff_new_pack.aBlv0f/_old 2022-09-03 23:18:53.935787321 +0200 +++ /var/tmp/diff_new_pack.aBlv0f/_new 2022-09-03 23:18:53.943787342 +0200 @@ -24,7 +24,7 @@ # Name: rubygem-capistrano -Version: 3.17.0 +Version: 3.17.1 Release: 0 %define mod_name capistrano %define mod_full_name %{mod_name}-%{version} ++++++ capistrano-3.17.0.gem -> capistrano-3.17.1.gem ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/.circleci/config.yml new/.circleci/config.yml --- old/.circleci/config.yml 2022-03-12 22:44:58.000000000 +0100 +++ new/.circleci/config.yml 2022-08-07 19:38:29.000000000 +0200 @@ -32,6 +32,21 @@ paths: - ./vendor/bundle key: bundle-v1-{{ arch }}-<< parameters.version >>-{{ checksum "Gemfile.lock" }} + update_ssh_client: + description: Install recent SSH client for compatibility with GitHub + steps: + - run: + name: Install OpenSSH 8.1p1 if necessary + command: | + if $(ssh -V 2>&1 | grep -q -v OpenSSH_8); then + apt-get update + apt-get install -y libssl-dev + mkdir ~/tempdownload + cd ~/tempdownload + wget https://cdn.openbsd.org/pub/OpenBSD/OpenSSH/portable/openssh-8.1p1.tar.gz + tar zxvf openssh-8.1p1.tar.gz + cd openssh-8.1p1 && ./configure --prefix=/usr && make ssh && make install + fi jobs: danger: @@ -58,6 +73,7 @@ name: ruby version: << parameters.version >> steps: + - update_ssh_client - checkout - bundle_install: version: << parameters.version >> Binary files old/checksums.yaml.gz and new/checksums.yaml.gz differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lib/capistrano/version.rb new/lib/capistrano/version.rb --- old/lib/capistrano/version.rb 2022-03-12 22:44:58.000000000 +0100 +++ new/lib/capistrano/version.rb 2022-08-07 19:38:29.000000000 +0200 @@ -1,3 +1,3 @@ module Capistrano - VERSION = "3.17.0".freeze + VERSION = "3.17.1".freeze end diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/metadata new/metadata --- old/metadata 2022-03-12 22:44:58.000000000 +0100 +++ new/metadata 2022-08-07 19:38:29.000000000 +0200 @@ -1,7 +1,7 @@ --- !ruby/object:Gem::Specification name: capistrano version: !ruby/object:Gem::Version - version: 3.17.0 + version: 3.17.1 platform: ruby authors: - Tom Clements @@ -9,7 +9,7 @@ autorequire: bindir: bin cert_chain: [] -date: 2022-03-12 00:00:00.000000000 Z +date: 2022-08-07 00:00:00.000000000 Z dependencies: - !ruby/object:Gem::Dependency name: airbrussh @@ -235,7 +235,7 @@ - !ruby/object:Gem::Version version: '0' requirements: [] -rubygems_version: 3.3.8 +rubygems_version: 3.3.18 signing_key: specification_version: 4 summary: Capistrano - Welcome to easy deployment with Ruby over SSH diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/spec/support/test_app.rb new/spec/support/test_app.rb --- old/spec/support/test_app.rb 2022-03-12 22:44:58.000000000 +0100 +++ new/spec/support/test_app.rb 2022-08-07 19:38:29.000000000 +0200 @@ -12,7 +12,7 @@ def default_config <<-CONFIG set :deploy_to, '#{deploy_to}' - set :repo_url, 'git://github.com/capistrano/capistrano.git' + set :repo_url, 'https://github.com/capistrano/capistrano.git' set :branch, 'master' set :ssh_options, { keys: "\#{ENV['HOME']}/.vagrant.d/insecure_private_key", auth_methods: ['publickey'] } server 'vagrant@localhost:2220', roles: %w{web app}
