Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package rubygem-activemodel-8.0 for openSUSE:Factory checked in at 2025-01-21 21:10:03 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/rubygem-activemodel-8.0 (Old) and /work/SRC/openSUSE:Factory/.rubygem-activemodel-8.0.new.5589 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "rubygem-activemodel-8.0" Tue Jan 21 21:10:03 2025 rev:3 rq:1239073 version:8.0.1 Changes: -------- --- /work/SRC/openSUSE:Factory/rubygem-activemodel-8.0/rubygem-activemodel-8.0.changes 2024-12-15 12:40:03.369371113 +0100 +++ /work/SRC/openSUSE:Factory/.rubygem-activemodel-8.0.new.5589/rubygem-activemodel-8.0.changes 2025-01-21 21:10:26.714904183 +0100 @@ -1,0 +2,11 @@ +Mon Jan 20 16:11:49 UTC 2025 - Marcus Rueckert <mrueck...@suse.de> + +- disable the my_apps handling + +------------------------------------------------------------------- +Fri Dec 13 21:43:34 UTC 2024 - Marcus Rueckert <mrueck...@suse.de> + +- Update to version 8.0.1: + https://rubyonrails.org/2024/12/13/Rails-Version-8-0-1-has-been-released + +------------------------------------------------------------------- @@ -4 +15 @@ -- Update to version 8.0.0.1: +- Update to version 8.0.0.1: (CVE-2024-54133 CVE-2024-53847) Old: ---- activemodel-8.0.0.1.gem New: ---- activemodel-8.0.1.gem ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ rubygem-activemodel-8.0.spec ++++++ --- /var/tmp/diff_new_pack.CJduuc/_old 2025-01-21 21:10:27.146922016 +0100 +++ /var/tmp/diff_new_pack.CJduuc/_new 2025-01-21 21:10:27.146922016 +0100 @@ -1,7 +1,7 @@ # # spec file for package rubygem-activemodel-8.0 # -# Copyright (c) 2024 SUSE LLC +# Copyright (c) 2025 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -24,14 +24,14 @@ # Name: rubygem-activemodel-8.0 -Version: 8.0.0.1 +Version: 8.0.1 Release: 0 %define mod_name activemodel %define mod_full_name %{mod_name}-%{version} %define mod_version_suffix -8.0 -BuildRequires: ruby-macros >= 5 BuildRequires: %{ruby >= 3.2.0} BuildRequires: %{rubygem gem2rpm} +BuildRequires: ruby-macros >= 5 URL: https://rubyonrails.org Source: https://rubygems.org/gems/%{mod_full_name}.gem Source1: gem2rpm.yml ++++++ activemodel-8.0.0.1.gem -> activemodel-8.0.1.gem ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/CHANGELOG.md new/CHANGELOG.md --- old/CHANGELOG.md 2024-12-10 22:46:14.000000000 +0100 +++ new/CHANGELOG.md 2024-12-13 21:02:34.000000000 +0100 @@ -1,3 +1,8 @@ +## Rails 8.0.1 (December 13, 2024) ## + +* No changes. + + ## Rails 8.0.0.1 (December 10, 2024) ## * 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_model/gem_version.rb new/lib/active_model/gem_version.rb --- old/lib/active_model/gem_version.rb 2024-12-10 22:46:14.000000000 +0100 +++ new/lib/active_model/gem_version.rb 2024-12-13 21:02:34.000000000 +0100 @@ -9,8 +9,8 @@ module VERSION MAJOR = 8 MINOR = 0 - TINY = 0 - PRE = "1" + TINY = 1 + PRE = nil STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".") end diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lib/active_model/validations.rb new/lib/active_model/validations.rb --- old/lib/active_model/validations.rb 2024-12-10 22:46:14.000000000 +0100 +++ new/lib/active_model/validations.rb 2024-12-13 21:02:34.000000000 +0100 @@ -176,7 +176,7 @@ options = options.dup options[:except_on] = Array(options[:except_on]) options[:unless] = [ - ->(o) { (options[:except_on] & Array(o.validation_context)).any? }, + ->(o) { options[:except_on].intersect?(Array(o.validation_context)) }, *options[:unless] ] end diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/metadata new/metadata --- old/metadata 2024-12-10 22:46:14.000000000 +0100 +++ new/metadata 2024-12-13 21:02:34.000000000 +0100 @@ -1,14 +1,14 @@ --- !ruby/object:Gem::Specification name: activemodel version: !ruby/object:Gem::Version - version: 8.0.0.1 + version: 8.0.1 platform: ruby authors: - David Heinemeier Hansson autorequire: bindir: bin cert_chain: [] -date: 2024-12-10 00:00:00.000000000 Z +date: 2024-12-13 00:00:00.000000000 Z dependencies: - !ruby/object:Gem::Dependency name: activesupport @@ -16,14 +16,14 @@ requirements: - - '=' - !ruby/object:Gem::Version - version: 8.0.0.1 + version: 8.0.1 type: :runtime prerelease: false version_requirements: !ruby/object:Gem::Requirement requirements: - - '=' - !ruby/object:Gem::Version - version: 8.0.0.1 + version: 8.0.1 description: A toolkit for building modeling frameworks like Active Record. Rich support for attributes, callbacks, validations, serialization, internationalization, and testing. @@ -112,10 +112,10 @@ - MIT metadata: bug_tracker_uri: https://github.com/rails/rails/issues - changelog_uri: https://github.com/rails/rails/blob/v8.0.0.1/activemodel/CHANGELOG.md - documentation_uri: https://api.rubyonrails.org/v8.0.0.1/ + changelog_uri: https://github.com/rails/rails/blob/v8.0.1/activemodel/CHANGELOG.md + documentation_uri: https://api.rubyonrails.org/v8.0.1/ mailing_list_uri: https://discuss.rubyonrails.org/c/rubyonrails-talk - source_code_uri: https://github.com/rails/rails/tree/v8.0.0.1/activemodel + source_code_uri: https://github.com/rails/rails/tree/v8.0.1/activemodel rubygems_mfa_required: 'true' post_install_message: rdoc_options: [] ++++++ gem2rpm.yml ++++++ --- /var/tmp/diff_new_pack.CJduuc/_old 2025-01-21 21:10:27.262926804 +0100 +++ /var/tmp/diff_new_pack.CJduuc/_new 2025-01-21 21:10:27.266926969 +0100 @@ -69,9 +69,9 @@ # bar # :post: |- # /bin/echo foo -# :preamble: |- -# %define rb_build_versions %{my_apps_rb_build_versions} -# %define rb_build_ruby_abis %{my_apps_rb_build_abi} +#:preamble: |- +# %define rb_build_versions %{my_apps_rb_build_versions} +# %define rb_build_ruby_abis %{my_apps_rb_build_abi} :disable_docs: true :version_suffix: '-8.0' (No newline at EOF)