Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package rubygem-activejob-7.0 for
openSUSE:Factory checked in at 2022-05-16 18:08:29
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/rubygem-activejob-7.0 (Old)
and /work/SRC/openSUSE:Factory/.rubygem-activejob-7.0.new.1538 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "rubygem-activejob-7.0"
Mon May 16 18:08:29 2022 rev:4 rq:977364 version:7.0.3
Changes:
--------
---
/work/SRC/openSUSE:Factory/rubygem-activejob-7.0/rubygem-activejob-7.0.changes
2022-04-30 22:52:25.060214498 +0200
+++
/work/SRC/openSUSE:Factory/.rubygem-activejob-7.0.new.1538/rubygem-activejob-7.0.changes
2022-05-16 18:10:56.241393638 +0200
@@ -1,0 +2,12 @@
+Sun May 15 15:18:14 UTC 2022 - Manuel Schnitzer <[email protected]>
+
+- updated to version 7.0.3
+
+ * Add missing `bigdecimal` require in `ActiveJob::Arguments`
+
+ Could cause `uninitialized constant ActiveJob::Arguments::BigDecimal
(NameError)`
+ when loading Active Job in isolation.
+
+ *Jean Boussier*
+
+-------------------------------------------------------------------
Old:
----
activejob-7.0.2.4.gem
New:
----
activejob-7.0.3.gem
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ rubygem-activejob-7.0.spec ++++++
--- /var/tmp/diff_new_pack.wqhfGD/_old 2022-05-16 18:10:56.653393966 +0200
+++ /var/tmp/diff_new_pack.wqhfGD/_new 2022-05-16 18:10:56.657393969 +0200
@@ -24,7 +24,7 @@
#
Name: rubygem-activejob-7.0
-Version: 7.0.2.4
+Version: 7.0.3
Release: 0
%define mod_name activejob
%define mod_full_name %{mod_name}-%{version}
++++++ activejob-7.0.2.4.gem -> activejob-7.0.3.gem ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/CHANGELOG.md new/CHANGELOG.md
--- old/CHANGELOG.md 2022-04-26 21:32:41.000000000 +0200
+++ new/CHANGELOG.md 2022-05-09 15:40:36.000000000 +0200
@@ -1,3 +1,12 @@
+## Rails 7.0.3 (May 09, 2022) ##
+
+* Add missing `bigdecimal` require in `ActiveJob::Arguments`
+
+ Could cause `uninitialized constant ActiveJob::Arguments::BigDecimal
(NameError)`
+ when loading Active Job in isolation.
+
+ *Jean Boussier*
+
## Rails 7.0.2.4 (April 26, 2022) ##
* No changes.
Binary files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/active_job/arguments.rb
new/lib/active_job/arguments.rb
--- old/lib/active_job/arguments.rb 2022-04-26 21:32:41.000000000 +0200
+++ new/lib/active_job/arguments.rb 2022-05-09 15:40:36.000000000 +0200
@@ -1,5 +1,6 @@
# frozen_string_literal: true
+require "bigdecimal"
require "active_support/core_ext/hash"
module ActiveJob
@@ -17,7 +18,7 @@
# currently support String, Integer, Float, NilClass, TrueClass, FalseClass,
# BigDecimal, Symbol, Date, Time, DateTime, ActiveSupport::TimeWithZone,
# ActiveSupport::Duration, Hash, ActiveSupport::HashWithIndifferentAccess,
- # Array, Range or GlobalID::Identification instances, although this can be
+ # Array, Range, or GlobalID::Identification instances, although this can be
# extended by adding custom serializers.
# Raised if you set the key for a Hash something else than a string or
# a symbol. Also raised when trying to serialize an object which can't be
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/active_job/enqueuing.rb
new/lib/active_job/enqueuing.rb
--- old/lib/active_job/enqueuing.rb 2022-04-26 21:32:41.000000000 +0200
+++ new/lib/active_job/enqueuing.rb 2022-05-09 15:40:36.000000000 +0200
@@ -17,7 +17,7 @@
# Push a job onto the queue. By default the arguments must be either
String,
# Integer, Float, NilClass, TrueClass, FalseClass, BigDecimal, Symbol,
Date,
# Time, DateTime, ActiveSupport::TimeWithZone, ActiveSupport::Duration,
- # Hash, ActiveSupport::HashWithIndifferentAccess, Array, Range or
+ # Hash, ActiveSupport::HashWithIndifferentAccess, Array, Range, or
# GlobalID::Identification instances, although this can be extended by
adding
# custom serializers.
#
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/active_job/gem_version.rb
new/lib/active_job/gem_version.rb
--- old/lib/active_job/gem_version.rb 2022-04-26 21:32:41.000000000 +0200
+++ new/lib/active_job/gem_version.rb 2022-05-09 15:40:36.000000000 +0200
@@ -1,7 +1,7 @@
# frozen_string_literal: true
module ActiveJob
- # Returns the version of the currently loaded Active Job as a
<tt>Gem::Version</tt>
+ # Returns the currently loaded version of Active Job as a
<tt>Gem::Version</tt>.
def self.gem_version
Gem::Version.new VERSION::STRING
end
@@ -9,8 +9,8 @@
module VERSION
MAJOR = 7
MINOR = 0
- TINY = 2
- PRE = "4"
+ TINY = 3
+ PRE = nil
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/active_job/queue_adapters/test_adapter.rb
new/lib/active_job/queue_adapters/test_adapter.rb
--- old/lib/active_job/queue_adapters/test_adapter.rb 2022-04-26
21:32:41.000000000 +0200
+++ new/lib/active_job/queue_adapters/test_adapter.rb 2022-05-09
15:40:36.000000000 +0200
@@ -5,10 +5,10 @@
# == Test adapter for Active Job
#
# The test adapter should be used only in testing. Along with
- # <tt>ActiveJob::TestCase</tt> and <tt>ActiveJob::TestHelper</tt>
+ # ActiveJob::TestCase and ActiveJob::TestHelper
# it makes a great tool to test your Rails application.
#
- # To use the test adapter set queue_adapter config to +:test+.
+ # To use the test adapter set +queue_adapter+ config to +:test+.
#
# Rails.application.config.active_job.queue_adapter = :test
class TestAdapter
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/active_job/test_helper.rb
new/lib/active_job/test_helper.rb
--- old/lib/active_job/test_helper.rb 2022-04-26 21:32:41.000000000 +0200
+++ new/lib/active_job/test_helper.rb 2022-05-09 15:40:36.000000000 +0200
@@ -57,12 +57,12 @@
# Specifies the queue adapter to use with all Active Job test helpers.
#
# Returns an instance of the queue adapter and defaults to
- # <tt>ActiveJob::QueueAdapters::TestAdapter</tt>.
+ # ActiveJob::QueueAdapters::TestAdapter.
#
# Note: The adapter provided by this method must provide some additional
- # methods from those expected of a standard
<tt>ActiveJob::QueueAdapter</tt>
+ # methods from those expected of a standard ActiveJob::QueueAdapter
# in order to be used with the active job test helpers. Refer to
- # <tt>ActiveJob::QueueAdapters::TestAdapter</tt>.
+ # ActiveJob::QueueAdapters::TestAdapter.
def queue_adapter_for_test
ActiveJob::QueueAdapters::TestAdapter.new
end
@@ -109,7 +109,7 @@
# end
# end
#
- # +:only+ and +:except+ options accept Class, Array of Class or Proc. When
passed a Proc,
+ # +:only+ and +:except+ options accept Class, Array of Class, or Proc.
When passed a Proc,
# a hash containing the job's class and it's argument are passed as
argument.
#
# Asserts the number of times a job is enqueued to a specific queue by
passing +:queue+ option.
@@ -168,7 +168,7 @@
# end
# end
#
- # +:only+ and +:except+ options accept Class, Array of Class or Proc. When
passed a Proc,
+ # +:only+ and +:except+ options accept Class, Array of Class, or Proc.
When passed a Proc,
# a hash containing the job's class and it's argument are passed as
argument.
#
# Asserts that no jobs are enqueued to a specific queue by passing
+:queue+ option
@@ -325,7 +325,7 @@
# end
# end
#
- # +:only+ and +:except+ options accept Class, Array of Class or Proc. When
passed a Proc,
+ # +:only+ and +:except+ options accept Class, Array of Class, or Proc.
When passed a Proc,
# an instance of the job will be passed as argument.
#
# If the +:queue+ option is specified,
@@ -579,7 +579,7 @@
# assert_performed_jobs 1
# end
#
- # +:only+ and +:except+ options accept Class, Array of Class or Proc. When
passed a Proc,
+ # +:only+ and +:except+ options accept Class, Array of Class, or Proc.
When passed a Proc,
# an instance of the job will be passed as argument.
#
# If the +:queue+ option is specified,
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/active_job/version.rb
new/lib/active_job/version.rb
--- old/lib/active_job/version.rb 2022-04-26 21:32:41.000000000 +0200
+++ new/lib/active_job/version.rb 2022-05-09 15:40:36.000000000 +0200
@@ -3,7 +3,7 @@
require_relative "gem_version"
module ActiveJob
- # Returns the version of the currently loaded Active Job as a
<tt>Gem::Version</tt>
+ # Returns the currently loaded version of Active Job as a
<tt>Gem::Version</tt>.
def self.version
gem_version
end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata 2022-04-26 21:32:41.000000000 +0200
+++ new/metadata 2022-05-09 15:40:36.000000000 +0200
@@ -1,14 +1,14 @@
--- !ruby/object:Gem::Specification
name: activejob
version: !ruby/object:Gem::Version
- version: 7.0.2.4
+ version: 7.0.3
platform: ruby
authors:
- David Heinemeier Hansson
autorequire:
bindir: bin
cert_chain: []
-date: 2022-04-26 00:00:00.000000000 Z
+date: 2022-05-09 00:00:00.000000000 Z
dependencies:
- !ruby/object:Gem::Dependency
name: activesupport
@@ -16,14 +16,14 @@
requirements:
- - '='
- !ruby/object:Gem::Version
- version: 7.0.2.4
+ version: 7.0.3
type: :runtime
prerelease: false
version_requirements: !ruby/object:Gem::Requirement
requirements:
- - '='
- !ruby/object:Gem::Version
- version: 7.0.2.4
+ version: 7.0.3
- !ruby/object:Gem::Dependency
name: globalid
requirement: !ruby/object:Gem::Requirement
@@ -100,10 +100,10 @@
- MIT
metadata:
bug_tracker_uri: https://github.com/rails/rails/issues
- changelog_uri:
https://github.com/rails/rails/blob/v7.0.2.4/activejob/CHANGELOG.md
- documentation_uri: https://api.rubyonrails.org/v7.0.2.4/
+ changelog_uri:
https://github.com/rails/rails/blob/v7.0.3/activejob/CHANGELOG.md
+ documentation_uri: https://api.rubyonrails.org/v7.0.3/
mailing_list_uri: https://discuss.rubyonrails.org/c/rubyonrails-talk
- source_code_uri: https://github.com/rails/rails/tree/v7.0.2.4/activejob
+ source_code_uri: https://github.com/rails/rails/tree/v7.0.3/activejob
rubygems_mfa_required: 'true'
post_install_message:
rdoc_options: []
@@ -120,7 +120,7 @@
- !ruby/object:Gem::Version
version: '0'
requirements: []
-rubygems_version: 3.1.6
+rubygems_version: 3.3.7
signing_key:
specification_version: 4
summary: Job framework with pluggable queues.