Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package rubygem-actionmailbox-7.0 for
openSUSE:Factory checked in at 2022-05-16 18:08:25
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/rubygem-actionmailbox-7.0 (Old)
and /work/SRC/openSUSE:Factory/.rubygem-actionmailbox-7.0.new.1538 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "rubygem-actionmailbox-7.0"
Mon May 16 18:08:25 2022 rev:4 rq:977359 version:7.0.3
Changes:
--------
---
/work/SRC/openSUSE:Factory/rubygem-actionmailbox-7.0/rubygem-actionmailbox-7.0.changes
2022-04-30 22:52:17.784204655 +0200
+++
/work/SRC/openSUSE:Factory/.rubygem-actionmailbox-7.0.new.1538/rubygem-actionmailbox-7.0.changes
2022-05-16 18:10:52.809390910 +0200
@@ -1,0 +2,7 @@
+Sun May 15 15:14:16 UTC 2022 - Manuel Schnitzer <[email protected]>
+
+- updated to version 7.0.3
+
+ * no changes
+
+-------------------------------------------------------------------
Old:
----
actionmailbox-7.0.2.4.gem
New:
----
actionmailbox-7.0.3.gem
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ rubygem-actionmailbox-7.0.spec ++++++
--- /var/tmp/diff_new_pack.Otgq29/_old 2022-05-16 18:10:53.233391247 +0200
+++ /var/tmp/diff_new_pack.Otgq29/_new 2022-05-16 18:10:53.237391250 +0200
@@ -24,7 +24,7 @@
#
Name: rubygem-actionmailbox-7.0
-Version: 7.0.2.4
+Version: 7.0.3
Release: 0
%define mod_name actionmailbox
%define mod_full_name %{mod_name}-%{version}
++++++ actionmailbox-7.0.2.4.gem -> actionmailbox-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:47.000000000 +0200
+++ new/CHANGELOG.md 2022-05-09 15:41:22.000000000 +0200
@@ -1,3 +1,8 @@
+## Rails 7.0.3 (May 09, 2022) ##
+
+* No changes.
+
+
## Rails 7.0.2.4 (April 26, 2022) ##
* No changes.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/app/controllers/action_mailbox/base_controller.rb
new/app/controllers/action_mailbox/base_controller.rb
--- old/app/controllers/action_mailbox/base_controller.rb 2022-04-26
21:32:47.000000000 +0200
+++ new/app/controllers/action_mailbox/base_controller.rb 2022-05-09
15:41:22.000000000 +0200
@@ -3,7 +3,7 @@
module ActionMailbox
# The base class for all Action Mailbox ingress controllers.
class BaseController < ActionController::Base
- skip_forgery_protection if default_protect_from_forgery
+ skip_forgery_protection
before_action :ensure_configured
Binary files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/action_mailbox/base.rb
new/lib/action_mailbox/base.rb
--- old/lib/action_mailbox/base.rb 2022-04-26 21:32:47.000000000 +0200
+++ new/lib/action_mailbox/base.rb 2022-05-09 15:41:22.000000000 +0200
@@ -27,7 +27,7 @@
# routing :all => :backstop
# end
#
- # Application mailboxes need to overwrite the +#process+ method, which is
invoked by the framework after
+ # Application mailboxes need to override the #process method, which is
invoked by the framework after
# callbacks have been run. The callbacks available are: +before_processing+,
+after_processing+, and
# +around_processing+. The primary use case is ensure certain preconditions
to processing are fulfilled
# using +before_processing+ callbacks.
@@ -35,7 +35,7 @@
# If a precondition fails to be met, you can halt the processing using the
+#bounced!+ method,
# which will silently prevent any further processing, but not actually send
out any bounce notice. You
# can also pair this behavior with the invocation of an Action Mailer class
responsible for sending out
- # an actual bounce email. This is done using the +#bounce_with+ method,
which takes the mail object returned
+ # an actual bounce email. This is done using the #bounce_with method, which
takes the mail object returned
# by an Action Mailer method, like so:
#
# class ForwardsMailbox < ApplicationMailbox
@@ -51,7 +51,7 @@
#
# During the processing of the inbound email, the status will be tracked.
Before processing begins,
# the email will normally have the +pending+ status. Once processing begins,
just before callbacks
- # and the +#process+ method is called, the status is changed to
+processing+. If processing is allowed to
+ # and the #process method is called, the status is changed to +processing+.
If processing is allowed to
# complete, the status is changed to +delivered+. If a bounce is triggered,
then +bounced+. If an unhandled
# exception is bubbled up, then +failed+.
#
@@ -89,7 +89,7 @@
end
def process
- # Overwrite in subclasses
+ # Override in subclasses
end
def finished_processing? # :nodoc:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/action_mailbox/gem_version.rb
new/lib/action_mailbox/gem_version.rb
--- old/lib/action_mailbox/gem_version.rb 2022-04-26 21:32:47.000000000
+0200
+++ new/lib/action_mailbox/gem_version.rb 2022-05-09 15:41:22.000000000
+0200
@@ -1,7 +1,7 @@
# frozen_string_literal: true
module ActionMailbox
- # Returns the currently-loaded version of Action Mailbox as a
<tt>Gem::Version</tt>.
+ # Returns the currently loaded version of Action Mailbox 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/action_mailbox/router/route.rb
new/lib/action_mailbox/router/route.rb
--- old/lib/action_mailbox/router/route.rb 2022-04-26 21:32:47.000000000
+0200
+++ new/lib/action_mailbox/router/route.rb 2022-05-09 15:41:22.000000000
+0200
@@ -2,7 +2,7 @@
module ActionMailbox
# Encapsulates a route, which can then be matched against an inbound_email
and provide a lookup of the matching
- # mailbox class. See examples for the different route addresses and how to
use them in the +ActionMailbox::Base+
+ # mailbox class. See examples for the different route addresses and how to
use them in the ActionMailbox::Base
# documentation.
class Router::Route
attr_reader :address, :mailbox_name
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/action_mailbox/routing.rb
new/lib/action_mailbox/routing.rb
--- old/lib/action_mailbox/routing.rb 2022-04-26 21:32:47.000000000 +0200
+++ new/lib/action_mailbox/routing.rb 2022-05-09 15:41:22.000000000 +0200
@@ -1,7 +1,7 @@
# frozen_string_literal: true
module ActionMailbox
- # See +ActionMailbox::Base+ for how to specify routing.
+ # See ActionMailbox::Base for how to specify routing.
module Routing
extend ActiveSupport::Concern
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/action_mailbox/test_helper.rb
new/lib/action_mailbox/test_helper.rb
--- old/lib/action_mailbox/test_helper.rb 2022-04-26 21:32:47.000000000
+0200
+++ new/lib/action_mailbox/test_helper.rb 2022-05-09 15:41:22.000000000
+0200
@@ -4,18 +4,18 @@
module ActionMailbox
module TestHelper
- # Create an +InboundEmail+ record using an eml fixture in the format of
message/rfc822
+ # Create an InboundEmail record using an eml fixture in the format of
message/rfc822
# referenced with +fixture_name+ located in
+test/fixtures/files/fixture_name+.
def create_inbound_email_from_fixture(fixture_name, status: :processing)
create_inbound_email_from_source file_fixture(fixture_name).read,
status: status
end
- # Creates an +InboundEmail+ by specifying through options or a block.
+ # Creates an InboundEmail by specifying through options or a block.
#
# ==== Options
#
- # * <tt>:status</tt> - The +status+ to set for the created +InboundEmail+.
- # For possible statuses, see {its
documentation}[rdoc-ref:ActionMailbox::InboundEmail].
+ # * <tt>:status</tt> - The +status+ to set for the created InboundEmail.
+ # For possible statuses, see its documentation.
#
# ==== Creating a simple email
#
@@ -68,26 +68,25 @@
create_inbound_email_from_source mail.to_s, status: status
end
- # Create an +InboundEmail+ using the raw rfc822 +source+ as text.
+ # Create an InboundEmail using the raw rfc822 +source+ as text.
def create_inbound_email_from_source(source, status: :processing)
ActionMailbox::InboundEmail.create_and_extract_message_id! source,
status: status
end
- # Create an +InboundEmail+ from fixture using the same arguments as
+create_inbound_email_from_fixture+
+ # Create an InboundEmail from fixture using the same arguments as
create_inbound_email_from_fixture
# and immediately route it to processing.
def receive_inbound_email_from_fixture(*args)
create_inbound_email_from_fixture(*args).tap(&:route)
end
- # Create an +InboundEmail+ using the same options or block as
- #
{create_inbound_email_from_mail}[rdoc-ref:#create_inbound_email_from_mail],
- # then immediately route it for processing.
+ # Create an InboundEmail using the same options or block as
+ # create_inbound_email_from_mail, then immediately route it for processing.
def receive_inbound_email_from_mail(**kwargs, &block)
create_inbound_email_from_mail(**kwargs, &block).tap(&:route)
end
- # Create an +InboundEmail+ using the same arguments as
+create_inbound_email_from_source+ and immediately route it
+ # Create an InboundEmail using the same arguments as
create_inbound_email_from_source and immediately route it
# to processing.
def receive_inbound_email_from_source(*args)
create_inbound_email_from_source(*args).tap(&:route)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/action_mailbox/version.rb
new/lib/action_mailbox/version.rb
--- old/lib/action_mailbox/version.rb 2022-04-26 21:32:47.000000000 +0200
+++ new/lib/action_mailbox/version.rb 2022-05-09 15:41:22.000000000 +0200
@@ -3,7 +3,7 @@
require_relative "gem_version"
module ActionMailbox
- # Returns the currently-loaded version of Action Mailbox as a
<tt>Gem::Version</tt>.
+ # Returns the currently loaded version of Action Mailbox 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:47.000000000 +0200
+++ new/metadata 2022-05-09 15:41:22.000000000 +0200
@@ -1,7 +1,7 @@
--- !ruby/object:Gem::Specification
name: actionmailbox
version: !ruby/object:Gem::Version
- version: 7.0.2.4
+ version: 7.0.3
platform: ruby
authors:
- David Heinemeier Hansson
@@ -9,7 +9,7 @@
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
@@ -17,70 +17,70 @@
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: activerecord
requirement: !ruby/object:Gem::Requirement
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: activestorage
requirement: !ruby/object:Gem::Requirement
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: activejob
requirement: !ruby/object:Gem::Requirement
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: actionpack
requirement: !ruby/object:Gem::Requirement
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: mail
requirement: !ruby/object:Gem::Requirement
@@ -206,10 +206,10 @@
- MIT
metadata:
bug_tracker_uri: https://github.com/rails/rails/issues
- changelog_uri:
https://github.com/rails/rails/blob/v7.0.2.4/actionmailbox/CHANGELOG.md
- documentation_uri: https://api.rubyonrails.org/v7.0.2.4/
+ changelog_uri:
https://github.com/rails/rails/blob/v7.0.3/actionmailbox/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/actionmailbox
+ source_code_uri: https://github.com/rails/rails/tree/v7.0.3/actionmailbox
rubygems_mfa_required: 'true'
post_install_message:
rdoc_options: []
@@ -226,7 +226,7 @@
- !ruby/object:Gem::Version
version: '0'
requirements: []
-rubygems_version: 3.1.6
+rubygems_version: 3.3.7
signing_key:
specification_version: 4
summary: Inbound email handling framework.