Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package rubygem-actionmailbox-8.0 for 
openSUSE:Factory checked in at 2025-10-10 17:12:06
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/rubygem-actionmailbox-8.0 (Old)
 and      /work/SRC/openSUSE:Factory/.rubygem-actionmailbox-8.0.new.5300 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "rubygem-actionmailbox-8.0"

Fri Oct 10 17:12:06 2025 rev:5 rq:1310568 version:8.0.3

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/rubygem-actionmailbox-8.0/rubygem-actionmailbox-8.0.changes
      2025-08-22 17:50:37.959020932 +0200
+++ 
/work/SRC/openSUSE:Factory/.rubygem-actionmailbox-8.0.new.5300/rubygem-actionmailbox-8.0.changes
    2025-10-10 17:13:39.604127597 +0200
@@ -1,0 +2,6 @@
+Tue Sep 23 00:15:53 UTC 2025 - Marcus Rueckert <[email protected]>
+
+- Update to version 8.0.3:
+  https://rubyonrails.org/2025/9/22/Rails-Version-8-0-3-has-been-released
+
+-------------------------------------------------------------------

Old:
----
  actionmailbox-8.0.2.1.gem

New:
----
  actionmailbox-8.0.3.gem

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ rubygem-actionmailbox-8.0.spec ++++++
--- /var/tmp/diff_new_pack.K8pqCq/_old  2025-10-10 17:13:41.620212462 +0200
+++ /var/tmp/diff_new_pack.K8pqCq/_new  2025-10-10 17:13:41.636213135 +0200
@@ -24,7 +24,7 @@
 #
 
 Name:           rubygem-actionmailbox-8.0
-Version:        8.0.2.1
+Version:        8.0.3
 Release:        0
 %define mod_name actionmailbox
 %define mod_full_name %{mod_name}-%{version}

++++++ actionmailbox-8.0.2.1.gem -> actionmailbox-8.0.3.gem ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CHANGELOG.md new/CHANGELOG.md
--- old/CHANGELOG.md    1980-01-02 01:00:00.000000000 +0100
+++ new/CHANGELOG.md    1980-01-02 01:00:00.000000000 +0100
@@ -1,9 +1,9 @@
-## Rails 8.0.2.1 (August 13, 2025) ##
+## Rails 8.0.3 (September 22, 2025) ##
 
 *   No changes.
 
 
-## Rails 8.0.2 (March 12, 2025) ##
+## Rails 8.0.2.1 (August 13, 2025) ##
 
 *   No changes.
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/app/controllers/action_mailbox/ingresses/mandrill/inbound_emails_controller.rb
 
new/app/controllers/action_mailbox/ingresses/mandrill/inbound_emails_controller.rb
--- 
old/app/controllers/action_mailbox/ingresses/mandrill/inbound_emails_controller.rb
  1980-01-02 01:00:00.000000000 +0100
+++ 
new/app/controllers/action_mailbox/ingresses/mandrill/inbound_emails_controller.rb
  1980-01-02 01:00:00.000000000 +0100
@@ -22,7 +22,7 @@
       head :ok
     rescue JSON::ParserError => error
       logger.error error.message
-      head :unprocessable_entity
+      head ActionDispatch::Constants::UNPROCESSABLE_CONTENT
     end
 
     def health_check
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/app/controllers/action_mailbox/ingresses/postmark/inbound_emails_controller.rb
 
new/app/controllers/action_mailbox/ingresses/postmark/inbound_emails_controller.rb
--- 
old/app/controllers/action_mailbox/ingresses/postmark/inbound_emails_controller.rb
  1980-01-02 01:00:00.000000000 +0100
+++ 
new/app/controllers/action_mailbox/ingresses/postmark/inbound_emails_controller.rb
  1980-01-02 01:00:00.000000000 +0100
@@ -57,7 +57,7 @@
         When configuring your Postmark inbound webhook, be sure to check the 
box
         labeled "Include raw email content in JSON payload".
       MESSAGE
-      head :unprocessable_entity
+      head ActionDispatch::Constants::UNPROCESSABLE_CONTENT
     end
 
     private
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/app/controllers/action_mailbox/ingresses/relay/inbound_emails_controller.rb 
new/app/controllers/action_mailbox/ingresses/relay/inbound_emails_controller.rb
--- 
old/app/controllers/action_mailbox/ingresses/relay/inbound_emails_controller.rb 
    1980-01-02 01:00:00.000000000 +0100
+++ 
new/app/controllers/action_mailbox/ingresses/relay/inbound_emails_controller.rb 
    1980-01-02 01:00:00.000000000 +0100
@@ -55,7 +55,7 @@
       if request.body
         ActionMailbox::InboundEmail.create_and_extract_message_id! 
request.body.read
       else
-        head :unprocessable_entity
+        head ActionDispatch::Constants::UNPROCESSABLE_CONTENT
       end
     end
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/app/controllers/action_mailbox/ingresses/sendgrid/inbound_emails_controller.rb
 
new/app/controllers/action_mailbox/ingresses/sendgrid/inbound_emails_controller.rb
--- 
old/app/controllers/action_mailbox/ingresses/sendgrid/inbound_emails_controller.rb
  1980-01-02 01:00:00.000000000 +0100
+++ 
new/app/controllers/action_mailbox/ingresses/sendgrid/inbound_emails_controller.rb
  1980-01-02 01:00:00.000000000 +0100
@@ -52,7 +52,7 @@
       ActionMailbox::InboundEmail.create_and_extract_message_id! mail
     rescue JSON::ParserError => error
       logger.error error.message
-      head :unprocessable_entity
+      head ActionDispatch::Constants::UNPROCESSABLE_CONTENT
     end
 
     private
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/gem_version.rb 
new/lib/action_mailbox/gem_version.rb
--- old/lib/action_mailbox/gem_version.rb       1980-01-02 01:00:00.000000000 
+0100
+++ new/lib/action_mailbox/gem_version.rb       1980-01-02 01:00:00.000000000 
+0100
@@ -9,8 +9,8 @@
   module VERSION
     MAJOR = 8
     MINOR = 0
-    TINY  = 2
-    PRE   = "1"
+    TINY  = 3
+    PRE   = nil
 
     STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
   end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata        1980-01-02 01:00:00.000000000 +0100
+++ new/metadata        1980-01-02 01:00:00.000000000 +0100
@@ -1,7 +1,7 @@
 --- !ruby/object:Gem::Specification
 name: actionmailbox
 version: !ruby/object:Gem::Version
-  version: 8.0.2.1
+  version: 8.0.3
 platform: ruby
 authors:
 - David Heinemeier Hansson
@@ -16,70 +16,70 @@
     requirements:
     - - '='
       - !ruby/object:Gem::Version
-        version: 8.0.2.1
+        version: 8.0.3
   type: :runtime
   prerelease: false
   version_requirements: !ruby/object:Gem::Requirement
     requirements:
     - - '='
       - !ruby/object:Gem::Version
-        version: 8.0.2.1
+        version: 8.0.3
 - !ruby/object:Gem::Dependency
   name: activerecord
   requirement: !ruby/object:Gem::Requirement
     requirements:
     - - '='
       - !ruby/object:Gem::Version
-        version: 8.0.2.1
+        version: 8.0.3
   type: :runtime
   prerelease: false
   version_requirements: !ruby/object:Gem::Requirement
     requirements:
     - - '='
       - !ruby/object:Gem::Version
-        version: 8.0.2.1
+        version: 8.0.3
 - !ruby/object:Gem::Dependency
   name: activestorage
   requirement: !ruby/object:Gem::Requirement
     requirements:
     - - '='
       - !ruby/object:Gem::Version
-        version: 8.0.2.1
+        version: 8.0.3
   type: :runtime
   prerelease: false
   version_requirements: !ruby/object:Gem::Requirement
     requirements:
     - - '='
       - !ruby/object:Gem::Version
-        version: 8.0.2.1
+        version: 8.0.3
 - !ruby/object:Gem::Dependency
   name: activejob
   requirement: !ruby/object:Gem::Requirement
     requirements:
     - - '='
       - !ruby/object:Gem::Version
-        version: 8.0.2.1
+        version: 8.0.3
   type: :runtime
   prerelease: false
   version_requirements: !ruby/object:Gem::Requirement
     requirements:
     - - '='
       - !ruby/object:Gem::Version
-        version: 8.0.2.1
+        version: 8.0.3
 - !ruby/object:Gem::Dependency
   name: actionpack
   requirement: !ruby/object:Gem::Requirement
     requirements:
     - - '='
       - !ruby/object:Gem::Version
-        version: 8.0.2.1
+        version: 8.0.3
   type: :runtime
   prerelease: false
   version_requirements: !ruby/object:Gem::Requirement
     requirements:
     - - '='
       - !ruby/object:Gem::Version
-        version: 8.0.2.1
+        version: 8.0.3
 - !ruby/object:Gem::Dependency
   name: mail
   requirement: !ruby/object:Gem::Requirement
@@ -164,10 +164,10 @@
 - MIT
 metadata:
   bug_tracker_uri: https://github.com/rails/rails/issues
-  changelog_uri: 
https://github.com/rails/rails/blob/v8.0.2.1/actionmailbox/CHANGELOG.md
-  documentation_uri: https://api.rubyonrails.org/v8.0.2.1/
+  changelog_uri: 
https://github.com/rails/rails/blob/v8.0.3/actionmailbox/CHANGELOG.md
+  documentation_uri: https://api.rubyonrails.org/v8.0.3/
   mailing_list_uri: https://discuss.rubyonrails.org/c/rubyonrails-talk
-  source_code_uri: https://github.com/rails/rails/tree/v8.0.2.1/actionmailbox
+  source_code_uri: https://github.com/rails/rails/tree/v8.0.3/actionmailbox
   rubygems_mfa_required: 'true'
 rdoc_options: []
 require_paths:

Reply via email to