Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package rubygem-fog-core for 
openSUSE:Factory checked in at 2021-06-25 15:01:33
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/rubygem-fog-core (Old)
 and      /work/SRC/openSUSE:Factory/.rubygem-fog-core.new.2625 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "rubygem-fog-core"

Fri Jun 25 15:01:33 2021 rev:4 rq:902274 version:2.2.4

Changes:
--------
--- /work/SRC/openSUSE:Factory/rubygem-fog-core/rubygem-fog-core.changes        
2020-09-27 11:49:56.348053960 +0200
+++ 
/work/SRC/openSUSE:Factory/.rubygem-fog-core.new.2625/rubygem-fog-core.changes  
    2021-06-25 15:02:16.776220496 +0200
@@ -1,0 +2,14 @@
+Thu Jun 24 17:22:45 UTC 2021 - Stephan Kulow <[email protected]>
+
+updated to version 2.2.4
+ see installed changelog.md
+
+  2.2.4 04/28/2020
+  ==========================================================
+  
+  Add FOG_DEBUG in addition to DEBUG to allow avoiding namespace collisions
+  Add github actions configuration
+  Update succeeds helper to expected syntax for ruby 3+
+  
+
+-------------------------------------------------------------------

Old:
----
  fog-core-2.2.3.gem

New:
----
  fog-core-2.2.4.gem

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ rubygem-fog-core.spec ++++++
--- /var/tmp/diff_new_pack.xyDBUV/_old  2021-06-25 15:02:17.276221106 +0200
+++ /var/tmp/diff_new_pack.xyDBUV/_new  2021-06-25 15:02:17.280221111 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package rubygem-fog-core
 #
-# Copyright (c) 2020 SUSE LLC
+# Copyright (c) 2021 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -24,7 +24,7 @@
 #
 
 Name:           rubygem-fog-core
-Version:        2.2.3
+Version:        2.2.4
 Release:        0
 %define mod_name fog-core
 %define mod_full_name %{mod_name}-%{version}

++++++ fog-core-2.2.3.gem -> fog-core-2.2.4.gem ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/.github/dependabot.yml new/.github/dependabot.yml
--- old/.github/dependabot.yml  1970-01-01 01:00:00.000000000 +0100
+++ new/.github/dependabot.yml  2021-04-28 18:23:57.000000000 +0200
@@ -0,0 +1,10 @@
+version: 2
+updates:
+  - package-ecosystem: "bundler"
+    directory: "/"
+    schedule:
+      interval: "daily"
+  - package-ecosystem: "github-actions"
+    directory: "/"
+    schedule:
+      interval: "daily"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/.github/stale.yml new/.github/stale.yml
--- old/.github/stale.yml       2020-09-16 17:39:54.000000000 +0200
+++ new/.github/stale.yml       1970-01-01 01:00:00.000000000 +0100
@@ -1,17 +0,0 @@
-# Number of days of inactivity before an issue becomes stale
-daysUntilStale: 60
-# Number of days of inactivity before a stale issue is closed
-daysUntilClose: 7
-# Issues with these labels will never be considered stale
-exemptLabels:
-  - pinned
-  - security
-# Label to use when marking an issue as stale
-staleLabel: wontfix
-# Comment to post when marking an issue as stale. Set to `false` to disable
-markComment: >
-  This issue has been automatically marked stale due to inactivity.
-  It will be closed if no further activity occurs.
-  Thank you for your contributions.
-# Comment to post when closing a stale issue. Set to `false` to disable
-closeComment: false
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/.github/workflows/ruby.yml 
new/.github/workflows/ruby.yml
--- old/.github/workflows/ruby.yml      2020-09-16 17:39:54.000000000 +0200
+++ new/.github/workflows/ruby.yml      2021-04-28 18:23:57.000000000 +0200
@@ -17,16 +17,17 @@
   test:
 
     runs-on: ubuntu-latest
+    strategy:
+      matrix:
+        ruby-version: ['2.4', '2.5', '2.6', '2.7', '3.0', 'head']
 
     steps:
     - uses: actions/checkout@v2
     - name: Set up Ruby
-    # To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
-    # change this to (see https://github.com/ruby/setup-ruby#versioning):
-    # uses: ruby/setup-ruby@v1
-      uses: ruby/setup-ruby@ec106b438a1ff6ff109590de34ddc62c540232e0
+      uses: ruby/setup-ruby@v1
       with:
-        ruby-version: 2.6
+        ruby-version: ${{ matrix.ruby-version }}
+        bundler-cache: true # runs 'bundle install' and caches installed gems 
automatically
     - name: Install dependencies
       run: bundle install
     - name: Run tests
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/.github/workflows/stale.yml 
new/.github/workflows/stale.yml
--- old/.github/workflows/stale.yml     1970-01-01 01:00:00.000000000 +0100
+++ new/.github/workflows/stale.yml     2021-04-28 18:23:57.000000000 +0200
@@ -0,0 +1,23 @@
+name: Mark stale issues and pull requests
+
+on:
+  schedule:
+  - cron: "30 1 * * *"
+
+jobs:
+  stale:
+
+    runs-on: ubuntu-latest
+
+    steps:
+    - uses: actions/stale@v3
+      with:
+        repo-token: ${{ secrets.GITHUB_TOKEN }}
+        days-before-stale: 60
+        days-before-close: 7
+        exempt-issue-labels: 'pinned,security'
+        exempt-pr-labels: 'pinned,security'
+        stale-issue-message: 'This issue has been marked inactive and will be 
closed if no further activity occurs.'
+        stale-pr-message: 'This pr has been marked inactive and will be closed 
if no further activity occurs.'
+        stale-issue-label: 'no-issue-activity'
+        stale-pr-label: 'no-pr-activity'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/.travis.yml new/.travis.yml
--- old/.travis.yml     2020-09-16 17:39:54.000000000 +0200
+++ new/.travis.yml     1970-01-01 01:00:00.000000000 +0100
@@ -1,39 +0,0 @@
-language: ruby
-
-rvm:
-  - 2.0
-  - 2.1
-  - 2.2
-  - 2.3
-  - 2.4
-  - jruby-head
-
-sudo: false
-dist: trusty
-
-script: bundle exec rake travis
-
-matrix:
-  fast_finish: true
-  include:
-    - rvm: 2.1
-      gemfile: Gemfile
-      env: COVERAGE=true
-    - rvm: jruby-head
-      gemfile: Gemfile
-  allow_failures:
-    - rvm: jruby-head
-    - rvm: jruby9k
-
-notifications:
-  email: false
-  irc:
-    channels:
-      - "irc.freenode.org#ruby-fog"
-    template:
-    - "[#%{build_number}] %{message} %{build_url}"
-    - "[#%{build_number}] %{commit} on %{branch} by %{author}"
-    - "[#%{build_number}] %{compare_url}"
-    on_success: always
-    on_failure: always
-    use_notice: false
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/README.md new/README.md
--- old/README.md       2020-09-16 17:39:54.000000000 +0200
+++ new/README.md       2021-04-28 18:23:57.000000000 +0200
@@ -2,7 +2,7 @@
 
 Shared classes and tests for fog providers and services.
 
-[![Build 
Status](https://travis-ci.org/fog/fog-core.svg?branch=master)](https://travis-ci.org/fog/fog-core)
+[![Build 
Status](https://github.com/fog/fog-core/actions/workflows/ruby.yml/badge.svg)](https://github.com/fog/fog-core/actions/workflows/ruby.yml)
 
 ## Ruby version
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/changelog.md new/changelog.md
--- old/changelog.md    2020-09-16 17:39:54.000000000 +0200
+++ new/changelog.md    2021-04-28 18:23:57.000000000 +0200
@@ -1,3 +1,10 @@
+2.2.4 04/28/2020
+==========================================================
+
+Add FOG_DEBUG in addition to DEBUG to allow avoiding namespace collisions
+Add github actions configuration
+Update succeeds helper to expected syntax for ruby 3+
+
 2.2.3 09/16/2020
 ==========================================================
 
Binary files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/fog/core/logger.rb new/lib/fog/core/logger.rb
--- old/lib/fog/core/logger.rb  2020-09-16 17:39:54.000000000 +0200
+++ new/lib/fog/core/logger.rb  2021-04-28 18:23:57.000000000 +0200
@@ -7,6 +7,9 @@
 
     @channels[:debug] = ::STDERR if ENV["DEBUG"]
 
+    # provide an env var with narrower scope in case of namespace conflicts
+    @channels[:debug] = ::STDERR if ENV["FOG_DEBUG"]
+
     def self.[](channel)
       @channels[channel]
     end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/fog/core/version.rb new/lib/fog/core/version.rb
--- old/lib/fog/core/version.rb 2020-09-16 17:39:54.000000000 +0200
+++ new/lib/fog/core/version.rb 2021-04-28 18:23:57.000000000 +0200
@@ -1,5 +1,5 @@
 module Fog
   module Core
-    VERSION = "2.2.3"
+    VERSION = "2.2.4"
   end
 end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/fog/test_helpers/succeeds_helper.rb 
new/lib/fog/test_helpers/succeeds_helper.rb
--- old/lib/fog/test_helpers/succeeds_helper.rb 2020-09-16 17:39:54.000000000 
+0200
+++ new/lib/fog/test_helpers/succeeds_helper.rb 2021-04-28 18:23:57.000000000 
+0200
@@ -1,8 +1,8 @@
 module Shindo
   class Tests
-    def succeeds
+    def succeeds(&block)
       test("succeeds") do
-        !!instance_eval(&Proc.new)
+        !!instance_eval(&block)
       end
     end
   end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata        2020-09-16 17:39:54.000000000 +0200
+++ new/metadata        2021-04-28 18:23:57.000000000 +0200
@@ -1,7 +1,7 @@
 --- !ruby/object:Gem::Specification
 name: fog-core
 version: !ruby/object:Gem::Version
-  version: 2.2.3
+  version: 2.2.4
 platform: ruby
 authors:
 - Evan Light
@@ -9,7 +9,7 @@
 autorequire:
 bindir: bin
 cert_chain: []
-date: 2020-09-16 00:00:00.000000000 Z
+date: 2021-04-28 00:00:00.000000000 Z
 dependencies:
 - !ruby/object:Gem::Dependency
   name: builder
@@ -201,11 +201,11 @@
 extensions: []
 extra_rdoc_files: []
 files:
-- ".github/stale.yml"
+- ".github/dependabot.yml"
 - ".github/workflows/ruby.yml"
+- ".github/workflows/stale.yml"
 - ".gitignore"
 - ".rubocop.yml"
-- ".travis.yml"
 - CONTRIBUTING.md
 - CONTRIBUTORS.md
 - Gemfile
@@ -336,7 +336,7 @@
     - !ruby/object:Gem::Version
       version: '0'
 requirements: []
-rubygems_version: 3.1.2
+rubygems_version: 3.2.15
 signing_key:
 specification_version: 4
 summary: Shared classes and tests for fog providers and services.

Reply via email to