Hello community,
here is the log from the commit of package rubygem-omniauth-oauth2 for
openSUSE:Factory checked in at 2019-03-04 09:20:39
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/rubygem-omniauth-oauth2 (Old)
and /work/SRC/openSUSE:Factory/.rubygem-omniauth-oauth2.new.28833 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "rubygem-omniauth-oauth2"
Mon Mar 4 09:20:39 2019 rev:2 rq:679530 version:1.6.0
Changes:
--------
---
/work/SRC/openSUSE:Factory/rubygem-omniauth-oauth2/rubygem-omniauth-oauth2.changes
2018-02-15 13:25:12.668619236 +0100
+++
/work/SRC/openSUSE:Factory/.rubygem-omniauth-oauth2.new.28833/rubygem-omniauth-oauth2.changes
2019-03-04 09:20:40.860597680 +0100
@@ -1,0 +2,6 @@
+Wed Dec 19 07:12:27 UTC 2018 - Stephan Kulow <[email protected]>
+
+- updated to version 1.6.0
+ no changelog found
+
+-------------------------------------------------------------------
Old:
----
omniauth-oauth2-1.5.0.gem
New:
----
omniauth-oauth2-1.6.0.gem
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ rubygem-omniauth-oauth2.spec ++++++
--- /var/tmp/diff_new_pack.Yg9qA7/_old 2019-03-04 09:20:41.716597526 +0100
+++ /var/tmp/diff_new_pack.Yg9qA7/_new 2019-03-04 09:20:41.720597525 +0100
@@ -1,7 +1,7 @@
#
# spec file for package rubygem-omniauth-oauth2
#
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -12,7 +12,7 @@
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
@@ -24,7 +24,7 @@
#
Name: rubygem-omniauth-oauth2
-Version: 1.5.0
+Version: 1.6.0
Release: 0
%define mod_name omniauth-oauth2
%define mod_full_name %{mod_name}-%{version}
++++++ omniauth-oauth2-1.5.0.gem -> omniauth-oauth2-1.6.0.gem ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/.rubocop.yml new/.rubocop.yml
--- old/.rubocop.yml 2017-12-13 19:44:51.000000000 +0100
+++ new/.rubocop.yml 2018-12-14 22:29:48.000000000 +0100
@@ -32,6 +32,9 @@
Style/DoubleNegation:
Enabled: false
+Style/ExpandPathArguments:
+ Enabled: false
+
Style/HashSyntax:
EnforcedStyle: hash_rockets
@@ -44,5 +47,9 @@
Style/TrailingCommaInArguments:
EnforcedStyleForMultiline: comma
-Style/TrailingCommaInLiteral:
+Style/TrailingCommaInHashLiteral:
+ EnforcedStyleForMultiline: comma
+
+Style/TrailingCommaInArrayLiteral:
EnforcedStyleForMultiline: comma
+
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/.travis.yml new/.travis.yml
--- old/.travis.yml 2017-12-13 19:44:51.000000000 +0100
+++ new/.travis.yml 2018-12-14 22:29:48.000000000 +0100
@@ -1,14 +1,18 @@
-before_install: gem install bundler
+bundler_args: --without development
+before_install:
+ - gem update --system
+ - gem update bundler
+cache: bundler
env:
global:
- JRUBY_OPTS="$JRUBY_OPTS --debug"
language: ruby
rvm:
- jruby-9000
- - 2.1.10 # EOL Soon
- - 2.2.6
- - 2.3.3
- - 2.4.0
+ - 2.2.9
+ - 2.3.5
+ - 2.4.4
+ - 2.5.3
- jruby-head
- ruby-head
matrix:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/Gemfile new/Gemfile
--- old/Gemfile 2017-12-13 19:44:51.000000000 +0100
+++ new/Gemfile 2018-12-14 22:29:48.000000000 +0100
@@ -1,6 +1,6 @@
-source "http://rubygems.org"
+source "https://rubygems.org"
-gem "rake", "~> 10.5"
+gem "rake", "~> 12.0"
group :test do
gem "addressable", "~> 2.3.8", :platforms => %i[jruby ruby_18]
@@ -8,11 +8,11 @@
gem "json", :platforms => %i[jruby ruby_18 ruby_19]
gem "mime-types", "~> 1.25", :platforms => %i[jruby ruby_18]
gem "rack-test"
- gem "rest-client", "~> 1.7.3", :platforms => %i[jruby ruby_18]
+ gem "rest-client", "~> 1.8.0", :platforms => %i[jruby ruby_18]
gem "rspec", "~> 3.2"
gem "rubocop", ">= 0.51", :platforms => %i[ruby_19 ruby_20 ruby_21 ruby_22
ruby_23 ruby_24]
gem "simplecov", ">= 0.9"
- gem "webmock", "~> 1.0"
+ gem "webmock", "~> 3.0"
end
# Specify your gem's dependencies in omniauth-oauth2.gemspec
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/README.md new/README.md
--- old/README.md 2017-12-13 19:44:51.000000000 +0100
+++ new/README.md 2018-12-14 22:29:48.000000000 +0100
@@ -5,12 +5,13 @@
[][gemnasium]
[][codeclimate]
[][coveralls]
+[](https://hakiri.io/github/omniauth/omniauth-oauth2/master)
[gem]: https://rubygems.org/gems/omniauth-oauth2
-[travis]: http://travis-ci.org/intridea/omniauth-oauth2
-[gemnasium]: https://gemnasium.com/intridea/omniauth-oauth2
-[codeclimate]: https://codeclimate.com/github/intridea/omniauth-oauth2
-[coveralls]: https://coveralls.io/r/intridea/omniauth-oauth2
+[travis]: http://travis-ci.org/omniauth/omniauth-oauth2
+[gemnasium]: https://gemnasium.com/github.com/omniauth/omniauth-oauth2
+[codeclimate]: https://codeclimate.com/github/omniauth/omniauth-oauth2
+[coveralls]: https://coveralls.io/r/omniauth/omniauth-oauth2
This gem contains a generic OAuth2 strategy for OmniAuth. It is meant to serve
as a building block strategy for other strategies and not to be used
@@ -64,4 +65,3 @@
That's pretty much it!
-[](https://bitdeli.com/free
"Bitdeli Badge")
Binary files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/omniauth-oauth2/version.rb
new/lib/omniauth-oauth2/version.rb
--- old/lib/omniauth-oauth2/version.rb 2017-12-13 19:44:51.000000000 +0100
+++ new/lib/omniauth-oauth2/version.rb 2018-12-14 22:29:48.000000000 +0100
@@ -1,5 +1,5 @@
module OmniAuth
module OAuth2
- VERSION = "1.5.0".freeze
+ VERSION = "1.6.0".freeze
end
end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata 2017-12-13 19:44:51.000000000 +0100
+++ new/metadata 2018-12-14 22:29:48.000000000 +0100
@@ -1,7 +1,7 @@
--- !ruby/object:Gem::Specification
name: omniauth-oauth2
version: !ruby/object:Gem::Version
- version: 1.5.0
+ version: 1.6.0
platform: ruby
authors:
- Michael Bleigh
@@ -10,7 +10,7 @@
autorequire:
bindir: bin
cert_chain: []
-date: 2017-12-13 00:00:00.000000000 Z
+date: 2018-12-14 00:00:00.000000000 Z
dependencies:
- !ruby/object:Gem::Dependency
name: oauth2
@@ -32,14 +32,14 @@
requirements:
- - "~>"
- !ruby/object:Gem::Version
- version: '1.2'
+ version: '1.9'
type: :runtime
prerelease: false
version_requirements: !ruby/object:Gem::Requirement
requirements:
- - "~>"
- !ruby/object:Gem::Version
- version: '1.2'
+ version: '1.9'
- !ruby/object:Gem::Dependency
name: bundler
requirement: !ruby/object:Gem::Requirement
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/omniauth-oauth2.gemspec new/omniauth-oauth2.gemspec
--- old/omniauth-oauth2.gemspec 2017-12-13 19:44:51.000000000 +0100
+++ new/omniauth-oauth2.gemspec 2018-12-14 22:29:48.000000000 +0100
@@ -4,7 +4,7 @@
Gem::Specification.new do |gem|
gem.add_dependency "oauth2", "~> 1.1"
- gem.add_dependency "omniauth", "~> 1.2"
+ gem.add_dependency "omniauth", "~> 1.9"
gem.add_development_dependency "bundler", "~> 1.0"