Run of fresh-releases for ruby-omniauth-oauth2
Try this locally (using silver-platter):
debian-svp new-upstream ruby-omniauth-oauth2
Merge these changes:
git pull https://janitor.debian.net/git/ruby-omniauth-oauth2 fresh-releases/main
Summary
Merged new upstream version: 1.6.0 (was: 1.5.0).
Diff
=== modified file '.rubocop.yml'
--- a/.rubocop.yml 2018-04-25 10:47:12 +0000
+++ b/.rubocop.yml 2019-09-28 17:13:53 +0000
@@ -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:
- EnforcedStyleForMultiline: comma
+Style/TrailingCommaInHashLiteral:
+ EnforcedStyleForMultiline: comma
+
+Style/TrailingCommaInArrayLiteral:
+ EnforcedStyleForMultiline: comma
+
\ No newline at end of file
=== modified file '.travis.yml'
--- a/.travis.yml 2018-04-25 10:47:12 +0000
+++ b/.travis.yml 2019-09-28 17:13:53 +0000
@@ -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:
=== modified file 'Gemfile'
--- a/Gemfile 2018-04-25 10:47:12 +0000
+++ b/Gemfile 2019-09-28 17:13:53 +0000
@@ -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
=== modified file 'README.md'
--- a/README.md 2018-04-25 10:47:12 +0000
+++ b/README.md 2019-09-28 17:13:53 +0000
@@ -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")
=== modified file 'debian/changelog'
--- a/debian/changelog 2019-08-13 00:46:55 +0000
+++ b/debian/changelog 2019-09-28 17:13:53 +0000
@@ -1,8 +1,12 @@
-ruby-omniauth-oauth2 (1.5.0-2) UNRELEASED; urgency=medium
+ruby-omniauth-oauth2 (1.6.0-1) UNRELEASED; urgency=medium
+ [ Utkarsh Gupta ]
* Add salsa-ci.yml
- -- Utkarsh Gupta <guptautkarsh2102@gmail.com> Tue, 13 Aug 2019 06:16:55 +0530
+ [ Debian Janitor ]
+ * New upstream release.
+
+ -- Debian Janitor <janitor@jelmer.uk> Sat, 28 Sep 2019 17:13:45 +0000
ruby-omniauth-oauth2 (1.5.0-1) unstable; urgency=medium
=== modified file 'debian/patches/remove-simplecov.patch'
--- a/debian/patches/remove-simplecov.patch 2016-03-16 19:14:45 +0000
+++ b/debian/patches/remove-simplecov.patch 2019-09-28 17:14:10 +0000
@@ -4,8 +4,10 @@
Last-Update: 2016-03-16
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
---- a/spec/helper.rb
-+++ b/spec/helper.rb
+Index: ruby-omniauth-oauth2/spec/helper.rb
+===================================================================
+--- ruby-omniauth-oauth2.orig/spec/helper.rb
++++ ruby-omniauth-oauth2/spec/helper.rb
@@ -1,16 +1,16 @@
$LOAD_PATH.unshift File.expand_path("..", __FILE__)
$LOAD_PATH.unshift File.expand_path("../../lib", __FILE__)
=== modified file 'lib/omniauth-oauth2/version.rb'
--- a/lib/omniauth-oauth2/version.rb 2018-04-25 10:47:12 +0000
+++ b/lib/omniauth-oauth2/version.rb 2019-09-28 17:13:53 +0000
@@ -1,5 +1,5 @@
module OmniAuth
module OAuth2
- VERSION = "1.5.0".freeze
+ VERSION = "1.6.0".freeze
end
end
=== modified file 'omniauth-oauth2.gemspec'
--- a/omniauth-oauth2.gemspec 2018-04-25 10:47:12 +0000
+++ b/omniauth-oauth2.gemspec 2019-09-28 17:13:53 +0000
@@ -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"