Hello community,
here is the log from the commit of package rubygem-autoprefixer-rails for
openSUSE:Factory checked in at 2020-09-14 12:30:46
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/rubygem-autoprefixer-rails (Old)
and /work/SRC/openSUSE:Factory/.rubygem-autoprefixer-rails.new.4249 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "rubygem-autoprefixer-rails"
Mon Sep 14 12:30:46 2020 rev:38 rq:833978 version:9.8.6.3
Changes:
--------
---
/work/SRC/openSUSE:Factory/rubygem-autoprefixer-rails/rubygem-autoprefixer-rails.changes
2020-08-24 15:10:02.542596959 +0200
+++
/work/SRC/openSUSE:Factory/.rubygem-autoprefixer-rails.new.4249/rubygem-autoprefixer-rails.changes
2020-09-14 12:31:52.561234392 +0200
@@ -1,0 +2,7 @@
+Sat Sep 12 12:22:43 UTC 2020 - Manuel Schnitzer <[email protected]>
+
+- updated to version 9.8.6.3
+
+ * Fix deprecation warning for non-Rails environment.
+
+-------------------------------------------------------------------
Old:
----
autoprefixer-rails-9.8.6.2.gem
New:
----
autoprefixer-rails-9.8.6.3.gem
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ rubygem-autoprefixer-rails.spec ++++++
--- /var/tmp/diff_new_pack.NjWzmb/_old 2020-09-14 12:31:54.153235407 +0200
+++ /var/tmp/diff_new_pack.NjWzmb/_new 2020-09-14 12:31:54.157235409 +0200
@@ -24,7 +24,7 @@
#
Name: rubygem-autoprefixer-rails
-Version: 9.8.6.2
+Version: 9.8.6.3
Release: 0
%define mod_name autoprefixer-rails
%define mod_full_name %{mod_name}-%{version}
++++++ autoprefixer-rails-9.8.6.2.gem -> autoprefixer-rails-9.8.6.3.gem ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/CHANGELOG.md new/CHANGELOG.md
--- old/CHANGELOG.md 2020-08-20 21:08:28.000000000 +0200
+++ new/CHANGELOG.md 2020-08-24 18:51:28.000000000 +0200
@@ -1,5 +1,8 @@
# Change Log
+## 9.8.6.3
+* Fix deprecation warning for non-Rails environment.
+
## 9.8.6.2
* Print deprecation warning only once.
Binary files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/autoprefixer-rails/processor.rb
new/lib/autoprefixer-rails/processor.rb
--- old/lib/autoprefixer-rails/processor.rb 2020-08-20 21:08:28.000000000
+0200
+++ new/lib/autoprefixer-rails/processor.rb 2020-08-24 18:51:28.000000000
+0200
@@ -7,6 +7,19 @@
IS_SECTION = /^\s*\[(.+)\]\s*$/.freeze
module AutoprefixerRails
+ def self.show_deprecation_message!
+ return unless defined?(ActiveSupport::Deprecation)
+
+ return if defined?(@deprecation_shown)
+
+ ActiveSupport::Deprecation.warn(
+ "autoprefixer-rails was deprected. Migration guide:\n" \
+ "https://github.com/ai/autoprefixer-rails/wiki/Deprecated"
+ )
+
+ @deprecation_shown = true
+ end
+
# Ruby to JS wrapper for Autoprefixer processor instance
class Processor
def initialize(params = {})
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/autoprefixer-rails/version.rb
new/lib/autoprefixer-rails/version.rb
--- old/lib/autoprefixer-rails/version.rb 2020-08-20 21:08:28.000000000
+0200
+++ new/lib/autoprefixer-rails/version.rb 2020-08-24 18:51:28.000000000
+0200
@@ -1,5 +1,5 @@
# frozen_string_literal: true
module AutoprefixerRails # :nodoc:
- VERSION = "9.8.6.2" unless defined? AutoprefixerRails::VERSION
+ VERSION = "9.8.6.3" unless defined? AutoprefixerRails::VERSION
end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/autoprefixer-rails.rb
new/lib/autoprefixer-rails.rb
--- old/lib/autoprefixer-rails.rb 2020-08-20 21:08:28.000000000 +0200
+++ new/lib/autoprefixer-rails.rb 2020-08-24 18:51:28.000000000 +0200
@@ -32,19 +32,6 @@
def self.processor(params = {})
Processor.new(params)
end
-
- def self.show_deprecation_message!
- return unless defined?(ActiveSupport::Deprecation)
-
- return if defined?(@deprecation_shown)
-
- ActiveSupport::Deprecation.warn(
- "autoprefixer-rails was deprected. Migration guide:\n" \
- "https://github.com/ai/autoprefixer-rails/wiki/Deprecated"
- )
-
- @deprecation_shown = true
- end
end
require_relative "autoprefixer-rails/result"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata 2020-08-20 21:08:28.000000000 +0200
+++ new/metadata 2020-08-24 18:51:28.000000000 +0200
@@ -1,14 +1,14 @@
--- !ruby/object:Gem::Specification
name: autoprefixer-rails
version: !ruby/object:Gem::Version
- version: 9.8.6.2
+ version: 9.8.6.3
platform: ruby
authors:
- Andrey Sitnik
autorequire:
bindir: bin
cert_chain: []
-date: 2020-08-20 00:00:00.000000000 Z
+date: 2020-08-24 00:00:00.000000000 Z
dependencies:
- !ruby/object:Gem::Dependency
name: execjs