commit
f29890db4c
@ -0,0 +1,3 @@
|
|||||||
|
SOURCES/activesupport-7.0.4.3-tests.txz
|
||||||
|
SOURCES/activesupport-7.0.4.3.gem
|
||||||
|
SOURCES/rails-7.0.4.3-tools.txz
|
@ -0,0 +1,3 @@
|
|||||||
|
1a1b5a1c553f3437bad33696964b46dea53dbe40 SOURCES/activesupport-7.0.4.3-tests.txz
|
||||||
|
71424328120f883f13f98b3e3467edd155fab3d5 SOURCES/activesupport-7.0.4.3.gem
|
||||||
|
4dc615e6c13afd52672b3ead35de969b65d56ae5 SOURCES/rails-7.0.4.3-tools.txz
|
@ -0,0 +1,72 @@
|
|||||||
|
From 9766eb4a833c26c64012230b96dd1157ebb8e8a2 Mon Sep 17 00:00:00 2001
|
||||||
|
From: eileencodes <eileencodes@gmail.com>
|
||||||
|
Date: Wed, 15 Jun 2022 12:44:11 -0400
|
||||||
|
Subject: [PATCH] Fix tests for minitest 5.16
|
||||||
|
|
||||||
|
In minitest/minitest@6e06ac9 minitest changed such that it now accepts
|
||||||
|
`kwargs` instead of requiring kwargs to be shoved into the args array.
|
||||||
|
This is a good change but required some updates to our test code to get
|
||||||
|
the new version of minitest passing.
|
||||||
|
|
||||||
|
Changes are as follows:
|
||||||
|
|
||||||
|
1) Lock minitest to 5.15 for Ruby 2.7. We don't love this change but
|
||||||
|
it's pretty difficult to get 2.7 and 3.0 to play nicely together with
|
||||||
|
the new kwargs changes. Dropping 2.7 support isn't an option right
|
||||||
|
now for Rails. This is safe because all of the code changes here are
|
||||||
|
internal methods to Rails like assert_called_with. Applications
|
||||||
|
shouldn't be consuming them as they are no-doc'd.
|
||||||
|
2) Update the `assert_called_with` method to take any kwargs but also
|
||||||
|
the returns kwarg.
|
||||||
|
3) Update callers of `assert_called_with` to move the kwargs outside the
|
||||||
|
args array.
|
||||||
|
4) Update the message from marshaled exceptions. In 5.16 the exception
|
||||||
|
message is "result not reported" instead of "Wrapped undumpable
|
||||||
|
exception".
|
||||||
|
|
||||||
|
Co-authored-by: Matthew Draper <matthew@trebex.net>
|
||||||
|
---
|
||||||
|
.../testing/method_call_assertions.rb | 22 +++-
|
||||||
|
1 file changed, 20 insertions(+), 2 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/activesupport/lib/active_support/testing/method_call_assertions.rb b/activesupport/lib/active_support/testing/method_call_assertions.rb
|
||||||
|
index 72451faaa8cc4..f146eefce0354 100644
|
||||||
|
--- a/activesupport/lib/active_support/testing/method_call_assertions.rb
|
||||||
|
+++ b/activesupport/lib/active_support/testing/method_call_assertions.rb
|
||||||
|
@@ -17,9 +17,9 @@ def assert_called(object, method_name, message = nil, times: 1, returns: nil, &b
|
||||||
|
assert_equal times, times_called, error
|
||||||
|
end
|
||||||
|
|
||||||
|
- def assert_called_with(object, method_name, args, returns: nil, &block)
|
||||||
|
+ def assert_called_with(object, method_name, args, returns: false, **kwargs, &block)
|
||||||
|
mock = Minitest::Mock.new
|
||||||
|
- mock.expect(:call, returns, args)
|
||||||
|
+ expect_called_with(mock, args, returns: returns, **kwargs)
|
||||||
|
|
||||||
|
object.stub(method_name, mock, &block)
|
||||||
|
|
||||||
|
@@ -30,6 +30,24 @@ def assert_not_called(object, method_name, message = nil, &block)
|
||||||
|
assert_called(object, method_name, message, times: 0, &block)
|
||||||
|
end
|
||||||
|
|
||||||
|
+ #--
|
||||||
|
+ # This method is a temporary wrapper for mock.expect as part of
|
||||||
|
+ # the Minitest 5.16 / Ruby 3.0 kwargs transition. It can go away
|
||||||
|
+ # when we drop support for Ruby 2.7.
|
||||||
|
+ if Minitest::Mock.instance_method(:expect).parameters.map(&:first).include?(:keyrest)
|
||||||
|
+ def expect_called_with(mock, args, returns: false, **kwargs)
|
||||||
|
+ mock.expect(:call, returns, args, **kwargs)
|
||||||
|
+ end
|
||||||
|
+ else
|
||||||
|
+ def expect_called_with(mock, args, returns: false, **kwargs)
|
||||||
|
+ if !kwargs.empty?
|
||||||
|
+ mock.expect(:call, returns, [*args, kwargs])
|
||||||
|
+ else
|
||||||
|
+ mock.expect(:call, returns, args)
|
||||||
|
+ end
|
||||||
|
+ end
|
||||||
|
+ end
|
||||||
|
+
|
||||||
|
def assert_called_on_instance_of(klass, method_name, message = nil, times: 1, returns: nil)
|
||||||
|
times_called = 0
|
||||||
|
klass.define_method("stubbed_#{method_name}") do |*|
|
@ -0,0 +1,39 @@
|
|||||||
|
From df0de681dc1873534ecd2fc8371e1f2562984b68 Mon Sep 17 00:00:00 2001
|
||||||
|
From: John Crepezzi <john.crepezzi@gmail.com>
|
||||||
|
Date: Thu, 16 Jun 2022 08:34:05 -0400
|
||||||
|
Subject: [PATCH] Remove the multi-call form of assert_called_with
|
||||||
|
|
||||||
|
The `assert_called_with` helper allows passing a multi-dimensional array to
|
||||||
|
mock multiple calls to the same method for a given block. This works
|
||||||
|
fine now, but when adding support for real kwargs arguments to line up with
|
||||||
|
recent upgrades in Minitest, this approach is no longer workable because
|
||||||
|
we can't pass multiple sets of differing kwargs.
|
||||||
|
|
||||||
|
Rather than complicated this method further, this commit removes the
|
||||||
|
multi-call form of `assert_called_with` and modifies the tests that
|
||||||
|
currently make use of that functionality to just use the underlying
|
||||||
|
`Minitest::Mock` calls.
|
||||||
|
|
||||||
|
Co-authored-by: Eileen M. Uchitelle <eileencodes@gmail.com>
|
||||||
|
---
|
||||||
|
.../testing/method_call_assertions_test.rb | 7 --
|
||||||
|
1 file changed, 7 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/activesupport/test/testing/method_call_assertions_test.rb b/activesupport/test/testing/method_call_assertions_test.rb
|
||||||
|
index e75630d2e4228..4d59e0bd3c222 100644
|
||||||
|
--- a/activesupport/test/testing/method_call_assertions_test.rb
|
||||||
|
+++ b/activesupport/test/testing/method_call_assertions_test.rb
|
||||||
|
@@ -82,13 +82,6 @@ def test_assert_called_with_failure
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
- def test_assert_called_with_multiple_expected_arguments
|
||||||
|
- assert_called_with(@object, :<<, [ [ 1 ], [ 2 ] ]) do
|
||||||
|
- @object << 1
|
||||||
|
- @object << 2
|
||||||
|
- end
|
||||||
|
- end
|
||||||
|
-
|
||||||
|
def test_assert_called_on_instance_of_with_defaults_to_expect_once
|
||||||
|
assert_called_on_instance_of Level, :increment do
|
||||||
|
@object.increment
|
@ -0,0 +1,39 @@
|
|||||||
|
From df0de681dc1873534ecd2fc8371e1f2562984b68 Mon Sep 17 00:00:00 2001
|
||||||
|
From: John Crepezzi <john.crepezzi@gmail.com>
|
||||||
|
Date: Thu, 16 Jun 2022 08:34:05 -0400
|
||||||
|
Subject: [PATCH] Remove the multi-call form of assert_called_with
|
||||||
|
|
||||||
|
The `assert_called_with` helper allows passing a multi-dimensional array to
|
||||||
|
mock multiple calls to the same method for a given block. This works
|
||||||
|
fine now, but when adding support for real kwargs arguments to line up with
|
||||||
|
recent upgrades in Minitest, this approach is no longer workable because
|
||||||
|
we can't pass multiple sets of differing kwargs.
|
||||||
|
|
||||||
|
Rather than complicated this method further, this commit removes the
|
||||||
|
multi-call form of `assert_called_with` and modifies the tests that
|
||||||
|
currently make use of that functionality to just use the underlying
|
||||||
|
`Minitest::Mock` calls.
|
||||||
|
|
||||||
|
Co-authored-by: Eileen M. Uchitelle <eileencodes@gmail.com>
|
||||||
|
---
|
||||||
|
.../testing/method_call_assertions.rb | 7 +-
|
||||||
|
1 file changed, 1 insertion(+), 6 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/activesupport/lib/active_support/testing/method_call_assertions.rb b/activesupport/lib/active_support/testing/method_call_assertions.rb
|
||||||
|
index c8d2dbaa52ab5..72451faaa8cc4 100644
|
||||||
|
--- a/activesupport/lib/active_support/testing/method_call_assertions.rb
|
||||||
|
+++ b/activesupport/lib/active_support/testing/method_call_assertions.rb
|
||||||
|
@@ -19,12 +19,7 @@ def assert_called(object, method_name, message = nil, times: 1, returns: nil, &b
|
||||||
|
|
||||||
|
def assert_called_with(object, method_name, args, returns: nil, &block)
|
||||||
|
mock = Minitest::Mock.new
|
||||||
|
-
|
||||||
|
- if args.all?(Array)
|
||||||
|
- args.each { |arg| mock.expect(:call, returns, arg) }
|
||||||
|
- else
|
||||||
|
- mock.expect(:call, returns, args)
|
||||||
|
- end
|
||||||
|
+ mock.expect(:call, returns, args)
|
||||||
|
|
||||||
|
object.stub(method_name, mock, &block)
|
||||||
|
|
@ -0,0 +1,23 @@
|
|||||||
|
From 60ffaac2e9644076e53afa1a2b1a716e289b7085 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Akira Matsuda <ronnie@dio.jp>
|
||||||
|
Date: Thu, 15 Dec 2022 15:45:27 +0900
|
||||||
|
Subject: [PATCH] RubyVM class serial is no longer available in Ruby 3.2
|
||||||
|
|
||||||
|
since ruby/ruby@13bd617ea6fdf72467c593639cf33312a06c330c
|
||||||
|
---
|
||||||
|
activesupport/test/executor_test.rb | 2 +-
|
||||||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||||
|
|
||||||
|
diff --git a/activesupport/test/executor_test.rb b/activesupport/test/executor_test.rb
|
||||||
|
index d366ae55b6e0..27872458d95b 100644
|
||||||
|
--- a/activesupport/test/executor_test.rb
|
||||||
|
+++ b/activesupport/test/executor_test.rb
|
||||||
|
@@ -226,7 +226,7 @@ def test_hook_insertion_order
|
||||||
|
end
|
||||||
|
|
||||||
|
def test_class_serial_is_unaffected
|
||||||
|
- skip if !defined?(RubyVM)
|
||||||
|
+ skip if !defined?(RubyVM) || !RubyVM.stat.has_key?(:class_serial)
|
||||||
|
|
||||||
|
hook = Class.new do
|
||||||
|
define_method(:run) do
|
@ -0,0 +1,526 @@
|
|||||||
|
%global gem_name activesupport
|
||||||
|
|
||||||
|
#%%global prerelease
|
||||||
|
|
||||||
|
Name: rubygem-%{gem_name}
|
||||||
|
Epoch: 1
|
||||||
|
Version: 7.0.4.3
|
||||||
|
Release: 1%{?dist}
|
||||||
|
Summary: A support libraries and Ruby core extensions extracted from the Rails framework
|
||||||
|
License: MIT
|
||||||
|
URL: http://rubyonrails.org
|
||||||
|
Source0: https://rubygems.org/gems/%{gem_name}-%{version}%{?prerelease}.gem
|
||||||
|
# The activesupport gem doesn't ship with the test suite.
|
||||||
|
# You may check it out like so
|
||||||
|
# git clone http://github.com/rails/rails.git
|
||||||
|
# cd rails/activesupport && git archive -v -o activesupport-7.0.4.3-tests.txz v7.0.4.3 test/
|
||||||
|
Source1: %{gem_name}-%{version}%{?prerelease}-tests.txz
|
||||||
|
# The tools are needed for the test suite, are however unpackaged in gem file.
|
||||||
|
# You may get them like so
|
||||||
|
# git clone http://github.com/rails/rails.git --no-checkout
|
||||||
|
# cd rails && git archive -v -o rails-7.0.4.3-tools.txz v7.0.4.3 tools/
|
||||||
|
Source2: rails-%{version}%{?prerelease}-tools.txz
|
||||||
|
# Fixes for Minitest 5.16+
|
||||||
|
# https://github.com/rails/rails/pull/45380
|
||||||
|
Patch1: rubygem-activesupport-7.0.2.3-Remove-the-multi-call-form-of-assert_called_with.patch
|
||||||
|
Patch2: rubygem-activesupport-7.0.2.3-Remove-the-multi-call-form-of-assert_called_with-test.patch
|
||||||
|
# https://github.com/rails/rails/pull/45370
|
||||||
|
Patch3: rubygem-activesupport-7.0.2.3-Fix-tests-for-minitest-5.16.patch
|
||||||
|
# https://github.com/rails/rails/pull/46735
|
||||||
|
# Fix for test failure with ruby3.2 wrt class_serial removal
|
||||||
|
Patch4: rubygem-activesupport-7.0.4-ruby32-rubyvm-class_serial-removal.patch
|
||||||
|
|
||||||
|
# ruby package has just soft dependency on rubygem({bigdecimal,json}), while
|
||||||
|
# ActiveSupport always requires them.
|
||||||
|
Requires: rubygem(bigdecimal)
|
||||||
|
Requires: rubygem(json)
|
||||||
|
|
||||||
|
# Let's keep Requires and BuildRequires sorted alphabeticaly
|
||||||
|
BuildRequires: ruby(release)
|
||||||
|
BuildRequires: rubygems-devel
|
||||||
|
BuildRequires: ruby >= 2.2.2
|
||||||
|
BuildRequires: rubygem(bigdecimal)
|
||||||
|
BuildRequires: rubygem(builder)
|
||||||
|
BuildRequires: rubygem(concurrent-ruby)
|
||||||
|
BuildRequires: rubygem(connection_pool)
|
||||||
|
BuildRequires: rubygem(dalli)
|
||||||
|
BuildRequires: (rubygem(i18n) >= 0.7 with rubygem(i18n) < 2)
|
||||||
|
BuildRequires: rubygem(minitest) >= 5.0.0
|
||||||
|
BuildRequires: rubygem(rack)
|
||||||
|
BuildRequires: rubygem(tzinfo) >= 2.0
|
||||||
|
BuildRequires: rubygem(listen)
|
||||||
|
BuildRequires: rubygem(redis)
|
||||||
|
BuildRequires: rubygem(rexml)
|
||||||
|
BuildRequires: memcached
|
||||||
|
BuildArch: noarch
|
||||||
|
|
||||||
|
|
||||||
|
%description
|
||||||
|
A toolkit of support libraries and Ruby core extensions extracted from the
|
||||||
|
Rails framework. Rich support for multibyte strings, internationalization,
|
||||||
|
time zones, and testing.
|
||||||
|
|
||||||
|
%package doc
|
||||||
|
Summary: Documentation for %{name}
|
||||||
|
Requires: %{name} = %{epoch}:%{version}-%{release}
|
||||||
|
BuildArch: noarch
|
||||||
|
|
||||||
|
%description doc
|
||||||
|
Documentation for %{name}.
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%setup -q -n %{gem_name}-%{version}%{?prerelease} -b1 -b2
|
||||||
|
|
||||||
|
%patch1 -p2
|
||||||
|
%patch3 -p2
|
||||||
|
|
||||||
|
pushd %{_builddir}
|
||||||
|
%patch2 -p2
|
||||||
|
%patch4 -p2
|
||||||
|
popd
|
||||||
|
|
||||||
|
%build
|
||||||
|
gem build ../%{gem_name}-%{version}%{?prerelease}.gemspec
|
||||||
|
%gem_install
|
||||||
|
|
||||||
|
%install
|
||||||
|
mkdir -p %{buildroot}%{gem_dir}
|
||||||
|
cp -a .%{gem_dir}/* \
|
||||||
|
%{buildroot}%{gem_dir}/
|
||||||
|
|
||||||
|
%check
|
||||||
|
pushd .%{gem_instdir}
|
||||||
|
# Move the tests into place
|
||||||
|
ln -s %{_builddir}/tools ..
|
||||||
|
mv %{_builddir}/test .
|
||||||
|
|
||||||
|
# These tests are really unstable, but they seems to be passing upstream :/
|
||||||
|
# mem_cache_store_test: These tests do not pass in Koji; but work locally
|
||||||
|
# redis_cache_store_test: failed to require "redis/connection/hiredis"
|
||||||
|
for f in \
|
||||||
|
test/evented_file_update_checker_test.rb \
|
||||||
|
test/cache/stores/redis_cache_store_test.rb \
|
||||||
|
test/cache/stores/mem_cache_store_test.rb
|
||||||
|
do
|
||||||
|
mv $f{,.disable}
|
||||||
|
done
|
||||||
|
|
||||||
|
# This seems to be unstable as well ...
|
||||||
|
# https://github.com/rails/rails/issues/25682
|
||||||
|
sed -i '/def test_iso8601_output_and_reparsing$/,/^ end$/ s/^/#/' test/core_ext/duration_test.rb
|
||||||
|
|
||||||
|
# Workaround TransformValuesTest#test_default_procs_do_not_persist_*_mapping
|
||||||
|
# test failures due to bug in Ruby 2.7.{0,1}.
|
||||||
|
# https://bugs.ruby-lang.org/issues/16498
|
||||||
|
sed -i '/assert_nil mapped\[:b\]/ s/^/#/' test/core_ext/hash/transform_values_test.rb
|
||||||
|
|
||||||
|
sed -i '/require .bundler./ s/^/#/' test/abstract_unit.rb
|
||||||
|
|
||||||
|
memcached &
|
||||||
|
mPID=$!
|
||||||
|
sleep 1
|
||||||
|
ruby -Ilib:test -e 'Dir.glob "./test/**/*_test.rb", &method(:require)'
|
||||||
|
kill -15 $mPID
|
||||||
|
popd
|
||||||
|
|
||||||
|
%files
|
||||||
|
%dir %{gem_instdir}
|
||||||
|
%license %{gem_instdir}/MIT-LICENSE
|
||||||
|
%{gem_libdir}
|
||||||
|
%exclude %{gem_cache}
|
||||||
|
%{gem_spec}
|
||||||
|
|
||||||
|
%files doc
|
||||||
|
%doc %{gem_docdir}
|
||||||
|
%doc %{gem_instdir}/CHANGELOG.md
|
||||||
|
%doc %{gem_instdir}/README.rdoc
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Wed Jan 10 2024 MSVSphere Packaging Team <packager@msvsphere-os.ru> - 1:7.0.4.3-1
|
||||||
|
- Rebuilt for MSVSphere 9.3
|
||||||
|
|
||||||
|
* Tue Mar 14 2023 Pavel Valena <pvalena@redhat.com> - 1:7.0.4.3-1
|
||||||
|
- Update to activesupport 7.0.4.3.
|
||||||
|
|
||||||
|
* Wed Jan 25 2023 Pavel Valena <pvalena@redhat.com> - 1:7.0.4.2-1
|
||||||
|
- Update to activesupport 7.0.4.2.
|
||||||
|
|
||||||
|
* Fri Jan 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1:7.0.4-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Dec 21 2022 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1:7.0.4-2
|
||||||
|
- Backport upstream fix for test failure with ruby3.2 wrt class_serial removal
|
||||||
|
|
||||||
|
* Thu Sep 15 2022 Pavel Valena <pvalena@redhat.com> - 1:7.0.4-1
|
||||||
|
- Update to activesupport 7.0.4.
|
||||||
|
|
||||||
|
* Tue Aug 02 2022 Vít Ondruch <vondruch@redhat.com> - 1:7.0.2.3-3
|
||||||
|
- Fix Minitest 5.16+ compatibility.
|
||||||
|
|
||||||
|
* Sat Jul 23 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1:7.0.2.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Mar 14 2022 Pavel Valena <pvalena@redhat.com> - 1:7.0.2.3-1
|
||||||
|
- Update to activesupport 7.0.2.3.
|
||||||
|
|
||||||
|
* Wed Feb 09 2022 Pavel Valena <pvalena@redhat.com> - 1:7.0.2-1
|
||||||
|
- Update to activesupport 7.0.2.
|
||||||
|
|
||||||
|
* Thu Feb 03 2022 Pavel Valena <pvalena@redhat.com> - 1:7.0.1-1
|
||||||
|
- Update to activesupport 7.0.1.
|
||||||
|
|
||||||
|
* Fri Jan 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1:6.1.4.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Sep 17 2021 Pavel Valena <pvalena@redhat.com> - 1:6.1.4.1-1
|
||||||
|
- Update to activesupport 6.1.4.1.
|
||||||
|
|
||||||
|
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1:6.1.4-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jun 30 2021 Pavel Valena <pvalena@redhat.com> - 1:6.1.4-1
|
||||||
|
- Update to activesupport 6.1.4.
|
||||||
|
|
||||||
|
* Tue May 18 2021 Pavel Valena <pvalena@redhat.com> - 1:6.1.3.2-1
|
||||||
|
- Update to activesupport 6.1.3.2.
|
||||||
|
|
||||||
|
* Fri Apr 09 2021 Pavel Valena <pvalena@redhat.com> - 1:6.1.3.1-1
|
||||||
|
- Update to activesupport 6.1.3.1.
|
||||||
|
|
||||||
|
* Thu Feb 18 2021 Pavel Valena <pvalena@redhat.com> - 1:6.1.3-1
|
||||||
|
- Update to activesupport 6.1.3.
|
||||||
|
|
||||||
|
* Mon Feb 15 2021 Pavel Valena <pvalena@redhat.com> - 1:6.1.2.1-1
|
||||||
|
- Update to activesupport 6.1.2.1.
|
||||||
|
|
||||||
|
* Wed Jan 27 2021 Pavel Valena <pvalena@redhat.com> - 1:6.1.1-1
|
||||||
|
- Update to activesupport 6.1.1.
|
||||||
|
|
||||||
|
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1:6.0.3.4-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jan 20 2021 Vít Ondruch <vondruch@redhat.com> - 1:6.0.3.4-2
|
||||||
|
- Fix FTBFS due to Ruby 3.0 update.
|
||||||
|
|
||||||
|
* Thu Oct 8 10:45:37 CEST 2020 Pavel Valena <pvalena@redhat.com> - 1:6.0.3.4-1
|
||||||
|
- Update to activesupport 6.0.3.4.
|
||||||
|
Resolves: rhbz#1886136
|
||||||
|
|
||||||
|
* Fri Sep 18 17:58:30 CEST 2020 Pavel Valena <pvalena@redhat.com> - 1:6.0.3.3-1
|
||||||
|
- Update to activesupport 6.0.3.3.
|
||||||
|
Resolves: rhbz#1877502
|
||||||
|
|
||||||
|
* Thu Sep 10 08:42:03 GMT 2020 Vít Ondruch <vondruch@redhat.com> - 1:6.0.3.2-3
|
||||||
|
- Fix evaluator test from web-console.
|
||||||
|
|
||||||
|
* Tue Sep 01 2020 Vít Ondruch <vondruch@redhat.com> - 1:6.0.3.2-2
|
||||||
|
- Properly fix flaky `FileStoreTest#test_filename_max_size` test case.
|
||||||
|
|
||||||
|
* Mon Aug 17 04:41:17 GMT 2020 Pavel Valena <pvalena@redhat.com> - 1:6.0.3.2-1
|
||||||
|
- Update to activesupport 6.0.3.2.
|
||||||
|
Resolves: rhbz#1742797
|
||||||
|
|
||||||
|
* Mon Aug 03 07:01:37 GMT 2020 Pavel Valena <pvalena@redhat.com> - 6.0.3.1-1
|
||||||
|
- Update to ActiveSupport 6.0.3.1.
|
||||||
|
Resolves: rhbz#1742797
|
||||||
|
|
||||||
|
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1:5.2.3-5
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Apr 16 2020 Vít Ondruch <vondruch@redhat.com> - 1:5.2.3-4
|
||||||
|
- Ruby 2.7 compatibility.
|
||||||
|
Resolves: rhbz#1799093
|
||||||
|
- TZInfo 2.0 compatibility.
|
||||||
|
Resolves: rhbz#1805531
|
||||||
|
|
||||||
|
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1:5.2.3-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1:5.2.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Mar 28 2019 Pavel Valena <pvalena@redhat.com> - 1:5.2.3-1
|
||||||
|
- Update to Active Support 5.2.3.
|
||||||
|
|
||||||
|
* Thu Mar 14 2019 Pavel Valena <pvalena@redhat.com> - 1:5.2.2.1-1
|
||||||
|
- Update to Active Support 5.2.2.1.
|
||||||
|
|
||||||
|
* Mon Feb 04 2019 Vít Ondruch <vondruch@redhat.com> - 1:5.2.2-3
|
||||||
|
- Fix Range and BigDecimal compatibility with Ruby 2.6.
|
||||||
|
|
||||||
|
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1:5.2.2-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Dec 05 2018 Pavel Valena <pvalena@redhat.com> - 1:5.2.2-1
|
||||||
|
- Update to Active Support 5.2.2.
|
||||||
|
|
||||||
|
* Wed Nov 14 2018 Vít Ondruch <vondruch@redhat.com> - 1:5.2.1-2
|
||||||
|
- Update I18n fallbacks configuration to be compatible with i18n 1.1.0.
|
||||||
|
|
||||||
|
* Wed Aug 08 2018 Pavel Valena <pvalena@redhat.com> - 1:5.2.1-1
|
||||||
|
- Update to Active Support 5.2.1.
|
||||||
|
|
||||||
|
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1:5.2.0-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Apr 23 2018 Pavel Valena <pvalena@redhat.com> - 1:5.2.0-1
|
||||||
|
- Update to Active Support 5.2.0.
|
||||||
|
|
||||||
|
* Mon Apr 16 2018 Vít Ondruch <vondruch@redhat.com> - 1:5.1.5-3
|
||||||
|
- Fix test suite issue caused by fix of CVE-2018-6914 in Ruby.
|
||||||
|
|
||||||
|
* Wed Feb 21 2018 Pavel Valena <pvalena@redhat.com> - 1:5.1.5-2
|
||||||
|
- Allow rubygem-i18n ~> 1.0
|
||||||
|
https://github.com/rails/rails/pull/31991
|
||||||
|
|
||||||
|
* Fri Feb 16 2018 Pavel Valena <pvalena@redhat.com> - 1:5.1.5-1
|
||||||
|
- Update to Active Support 5.1.5.
|
||||||
|
|
||||||
|
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1:5.1.4-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jan 19 2018 Vít Ondruch <vondruch@redhat.com> - 1:5.1.4-2
|
||||||
|
- Fix MiniTest 5.11 compatibility.
|
||||||
|
|
||||||
|
* Mon Sep 11 2017 Pavel Valena <pvalena@redhat.com> - 1:5.1.4-1
|
||||||
|
- Update to Active Support 5.1.4.
|
||||||
|
|
||||||
|
* Tue Aug 22 2017 Vít Ondruch <vondruch@redhat.com> - 1:5.1.3-2
|
||||||
|
- Explicitly require rubygem(json).
|
||||||
|
- Once again disable unstable test.
|
||||||
|
|
||||||
|
* Tue Aug 08 2017 Pavel Valena <pvalena@redhat.com> - 1:5.1.3-1
|
||||||
|
- Update to Active Support 5.1.3.
|
||||||
|
|
||||||
|
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1:5.1.2-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jun 27 2017 Pavel Valena <pvalena@redhat.com> - 1:5.1.2-1
|
||||||
|
- Update to Active Support 5.1.2.
|
||||||
|
- Run tests that need memcached
|
||||||
|
|
||||||
|
* Mon May 22 2017 Pavel Valena <pvalena@redhat.com> - 1:5.1.1-1
|
||||||
|
- Update to Active Support 5.1.1.
|
||||||
|
|
||||||
|
* Thu Mar 02 2017 Pavel Valena <pvalena@redhat.com> - 1:5.0.2-1
|
||||||
|
- Update to Active Support 5.0.2.
|
||||||
|
|
||||||
|
* Mon Feb 13 2017 Jun Aruga <jaruga@redhat.com> - 1:5.0.1-4
|
||||||
|
- Fix Fixnum/Bignum deprecated warning for Ruby 2.4.0.
|
||||||
|
|
||||||
|
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1:5.0.1-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jan 12 2017 Jun Aruga <jaruga@redhat.com> - 1:5.0.1-2
|
||||||
|
- Fix Ruby 2.4.0 compatibility.
|
||||||
|
|
||||||
|
* Mon Jan 02 2017 Pavel Valena <pvalena@redhat.com> - 1:5.0.1-1
|
||||||
|
- Update to Active Support 5.0.1.
|
||||||
|
- Remove Patch0: rubygem-activesupport-5.0.0-Do-not-depend-on-Rails-git-repository-layout-in-Acti.patch; subsumed
|
||||||
|
- Fix warnings: Fixnum and Bignum are deprecated in Ruby trunk
|
||||||
|
|
||||||
|
* Mon Aug 15 2016 Pavel Valena <pvalena@redhat.com> - 1:5.0.0.1-1
|
||||||
|
- Update to Activesupport 5.0.0.1
|
||||||
|
|
||||||
|
* Wed Jul 27 2016 Vít Ondruch <vondruch@redhat.com> - 1:5.0.0-2
|
||||||
|
- Fix missing epoch in -doc subpackage.
|
||||||
|
|
||||||
|
* Fri Jul 01 2016 Vít Ondruch <vondruch@redhat.com> - 1:5.0.0-1
|
||||||
|
- Update to ActiveSupport 5.0.0.
|
||||||
|
|
||||||
|
* Fri Apr 08 2016 Vít Ondruch <vondruch@redhat.com> - 1:4.2.6-2
|
||||||
|
- Explicitly set rubygem(bigdecimal) dependency.
|
||||||
|
|
||||||
|
* Tue Mar 08 2016 Pavel Valena <pvalena@redhat.com> - 1:4.2.6-1
|
||||||
|
- Update to activesupport 4.2.6
|
||||||
|
|
||||||
|
* Tue Mar 01 2016 Pavel Valena <pvalena@redhat.com> - 1:4.2.5.2-1
|
||||||
|
- Update to activesupport 4.2.5.2
|
||||||
|
|
||||||
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1:4.2.5.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jan 26 2016 Pavel Valena <pvalena@redhat.com> - 1:4.2.5.1-1
|
||||||
|
- Update to activesupport 4.2.5.1
|
||||||
|
|
||||||
|
* Wed Nov 18 2015 Pavel Valena <pvalena@redhat.com> - 1:4.2.5-1
|
||||||
|
- Update to activesupport 4.2.5
|
||||||
|
|
||||||
|
* Wed Aug 26 2015 Josef Stribny <jstribny@redhat.com> - 1:4.2.4-1
|
||||||
|
- Update to activesupport 4.2.4
|
||||||
|
|
||||||
|
* Tue Jun 30 2015 Josef Stribny <jstribny@redhat.com> - 1:4.2.3-1
|
||||||
|
- Update to activesupport 4.2.3
|
||||||
|
|
||||||
|
* Mon Jun 22 2015 Josef Stribny <jstribny@redhat.com> - 1:4.2.2-1
|
||||||
|
- Update to activesupport 4.2.2
|
||||||
|
|
||||||
|
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:4.2.1-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Mar 20 2015 Josef Stribny <jstribny@redhat.com> - 1:4.2.1-2
|
||||||
|
- Fix tests
|
||||||
|
|
||||||
|
* Fri Mar 20 2015 Josef Stribny <jstribny@redhat.com> - 1:4.2.1-1
|
||||||
|
- Update to activesupport 4.2.1
|
||||||
|
|
||||||
|
* Mon Feb 09 2015 Josef Stribny <jstribny@redhat.com> - 1:4.2.0-1
|
||||||
|
- Update to activesupport 4.2.0
|
||||||
|
|
||||||
|
* Tue Aug 19 2014 Josef Stribny <jstribny@redhat.com> - 4.1.5-1
|
||||||
|
- Update to activesupport 4.1.5
|
||||||
|
|
||||||
|
* Fri Jul 04 2014 Josef Stribny <jstribny@redhat.com> - 1:4.1.4-1
|
||||||
|
- Update to ActiveSupport 4.1.4
|
||||||
|
|
||||||
|
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:4.1.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu May 22 2014 Josef Stribny <jstribny@redhat.com> - 1:4.1.1-1
|
||||||
|
- Update to ActiveSupport 4.1.1
|
||||||
|
|
||||||
|
* Thu Apr 17 2014 Josef Stribny <jstribny@redhat.com> - 1:4.1.0-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Changes/Ruby_2.1
|
||||||
|
|
||||||
|
* Thu Apr 10 2014 Josef Stribny <jstribny@redhat.com> - 1:4.1.0-1
|
||||||
|
- Update to ActiveSupport 4.1.0
|
||||||
|
|
||||||
|
* Wed Feb 26 2014 Josef Stribny <jstribny@redhat.com> - 1:4.0.3-1
|
||||||
|
- Update to ActiveSupport 4.0.3
|
||||||
|
|
||||||
|
* Thu Dec 05 2013 Josef Stribny <jstribny@redhat.com> - 1:4.0.2-1
|
||||||
|
- Update to ActiveSupport 4.0.2
|
||||||
|
|
||||||
|
* Fri Aug 09 2013 Josef Stribny <jstribny@redhat.com> - 1:4.0.1-1
|
||||||
|
- Update to ActiveSupport 4.0.1
|
||||||
|
|
||||||
|
* Fri Aug 09 2013 Josef Stribny <jstribny@redhat.com> - 1:4.0.0-2
|
||||||
|
- Fix: add minitest to requires
|
||||||
|
|
||||||
|
* Tue Jul 30 2013 Josef Stribny <jstribny@redhat.com> - 1:4.0.0-1
|
||||||
|
- Update to ActiveSupport 4.0.0.
|
||||||
|
|
||||||
|
* Tue Mar 19 2013 Vít Ondruch <vondruch@redhat.com> - 1:3.2.13-1
|
||||||
|
- Update to ActiveSupport 3.2.13.
|
||||||
|
|
||||||
|
* Fri Mar 01 2013 Vít Ondruch <vondruch@redhat.com> - 1:3.2.12-2
|
||||||
|
- Rebuild for https://fedoraproject.org/wiki/Features/Ruby_2.0.0
|
||||||
|
|
||||||
|
* Tue Feb 12 2013 Vít Ondruch <vondruch@redhat.com> - 1:3.2.12-1
|
||||||
|
- Update to ActiveSupport 3.2.12.
|
||||||
|
|
||||||
|
* Wed Jan 09 2013 Vít Ondruch <vondruch@redhat.com> - 1:3.2.11-1
|
||||||
|
- Update to ActiveSupport 3.2.11.
|
||||||
|
|
||||||
|
* Thu Jan 03 2013 Vít Ondruch <vondruch@redhat.com> - 1:3.2.10-1
|
||||||
|
- Update to ActiveSupport 3.2.10.
|
||||||
|
|
||||||
|
* Mon Aug 13 2012 Vít Ondruch <vondruch@redhat.com> - 1:3.2.8-1
|
||||||
|
- Update to ActiveSupport 3.2.8.
|
||||||
|
|
||||||
|
* Mon Jul 30 2012 Vít Ondruch <vondruch@redhat.com> - 1:3.2.7-1
|
||||||
|
- Update to ActiveSupport 3.2.7.
|
||||||
|
|
||||||
|
* Wed Jul 18 2012 Bohuslav Kabrda <bkabrda@redhat.com> - 1:3.2.6-1
|
||||||
|
- Update to ActiveSupport 3.2.6.
|
||||||
|
- Removed unneeded BuildRoot tag.
|
||||||
|
- Tests no longer fail with newer versions of Mocha, remove workaround.
|
||||||
|
|
||||||
|
* Fri Jun 15 2012 Vít Ondruch <vondruch@redhat.com> - 1:3.0.15-1
|
||||||
|
- Update to ActiveSupport 3.0.15.
|
||||||
|
|
||||||
|
* Fri Jun 01 2012 Vít Ondruch <vondruch@redhat.com> - 1:3.0.13-1
|
||||||
|
- Update to ActiveSupport 3.0.13.
|
||||||
|
|
||||||
|
* Wed Apr 18 2012 Bohuslav Kabrda <bkabrda@redhat.com> - 1:3.0.11-5
|
||||||
|
- Add the bigdecimal dependency to gemspec.
|
||||||
|
|
||||||
|
* Fri Mar 16 2012 Bohuslav Kabrda <bkabrda@redhat.com> - 1:3.0.11-4
|
||||||
|
- The CVE patch name now contains the CVE id.
|
||||||
|
|
||||||
|
* Mon Mar 05 2012 Bohuslav Kabrda <bkabrda@redhat.com> - 1:3.0.11-3
|
||||||
|
- Patch for CVE-2012-1098
|
||||||
|
|
||||||
|
* Tue Jan 24 2012 Bohuslav Kabrda <bkabrda@redhat.com> - 1:3.0.11-1
|
||||||
|
- Rebuilt for Ruby 1.9.3.
|
||||||
|
- Update to ActiveSupport 3.0.11.
|
||||||
|
|
||||||
|
* Mon Aug 22 2011 Vít Ondruch <vondruch@redhat.com> - 1:3.0.10-1
|
||||||
|
- Update to ActiveSupport 3.0.10
|
||||||
|
|
||||||
|
* Fri Jul 01 2011 Vít Ondruch <vondruch@redhat.com> - 1:3.0.9-1
|
||||||
|
- Update to ActiveSupport 3.0.9
|
||||||
|
- Changed %%define into %%global
|
||||||
|
- Removed unnecessary %%clean section
|
||||||
|
|
||||||
|
* Thu Jun 16 2011 Mo Morsi <mmorsi@redhat.com> - 1:3.0.5-3
|
||||||
|
- Reverting accidental change adding a few gem flags
|
||||||
|
|
||||||
|
* Thu Jun 16 2011 Mo Morsi <mmorsi@redhat.com> - 1:3.0.5-2
|
||||||
|
- Include fix for CVE-2011-2197
|
||||||
|
|
||||||
|
* Thu Mar 24 2011 Vít Ondruch <vondruch@redhat.com> - 1:3.0.5-1
|
||||||
|
- Update to ActiveSupport 3.0.5
|
||||||
|
- Remove Rake dependnecy
|
||||||
|
|
||||||
|
* Mon Feb 14 2011 Mohammed Morsi <mmorsi@redhat.com> - 1:3.0.3-4
|
||||||
|
- fix bad dates in the spec changelog
|
||||||
|
|
||||||
|
* Thu Feb 10 2011 Mohammed Morsi <mmorsi@redhat.com> - 1:3.0.3-3
|
||||||
|
- include i18n runtime dependency
|
||||||
|
|
||||||
|
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:3.0.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Jan 10 2011 Mohammed Morsi <mmorsi@redhat.com> - 1:3.0.3-1
|
||||||
|
- update to rails 3
|
||||||
|
|
||||||
|
* Wed Aug 25 2010 Mohammed Morsi <mmorsi@redhat.com> - 1:2.3.8-2
|
||||||
|
- bumped version
|
||||||
|
|
||||||
|
* Wed Aug 04 2010 Mohammed Morsi <mmorsi@redhat.com> - 1:2.3.8-1
|
||||||
|
- Update to 2.3.8
|
||||||
|
- Added check section with rubygem-mocha dependency
|
||||||
|
- Added upsteam Rakefile and test suite to run tests
|
||||||
|
|
||||||
|
* Thu Jan 28 2010 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 1:2.3.5-1
|
||||||
|
- Update to 2.3.5
|
||||||
|
|
||||||
|
* Wed Oct 7 2009 David Lutterkort <lutter@redhat.com> - 1:2.3.4-2
|
||||||
|
- Bump Epoch to ensure upgrade path from F-11
|
||||||
|
|
||||||
|
* Mon Sep 7 2009 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 2.3.4-1
|
||||||
|
- Update to 2.3.4 (bug 520843, CVE-2009-3009)
|
||||||
|
|
||||||
|
* Sun Jul 26 2009 Jeroen van Meeuwen <j.van.meeuwen@ogd.nl> - 2.3.3-1
|
||||||
|
- New upstream version
|
||||||
|
|
||||||
|
* Mon Mar 16 2009 Jeroen van Meeuwen <kanarip@fedoraproject.org> - 2.3.2-1
|
||||||
|
- New upstream version
|
||||||
|
|
||||||
|
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2.2-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Nov 24 2008 Jeroen van Meeuwen <kanarip@fedoraproject.org> - 2.2.2-1
|
||||||
|
- New upstream version
|
||||||
|
|
||||||
|
* Tue Sep 16 2008 David Lutterkort <dlutter@redhat.com> - 2.1.1-1
|
||||||
|
- New version (fixes CVE-2008-4094)
|
||||||
|
|
||||||
|
* Thu Jul 31 2008 Michael Stahnke <stahnma@fedoraproject.org> - 2.1.0-1
|
||||||
|
- New Upstream
|
||||||
|
|
||||||
|
* Mon Apr 07 2008 David Lutterkort <dlutter@redhat.com> - 2.0.2-1
|
||||||
|
- New version
|
||||||
|
|
||||||
|
* Mon Dec 10 2007 David Lutterkort <dlutter@redhat.com> - 2.0.1-1
|
||||||
|
- New version
|
||||||
|
|
||||||
|
* Wed Nov 28 2007 David Lutterkort <dlutter@redhat.com> - 1.4.4-3
|
||||||
|
- Fix buildroot
|
||||||
|
|
||||||
|
* Tue Nov 13 2007 David Lutterkort <dlutter@redhat.com> - 1.4.4-2
|
||||||
|
- Install README and CHANGELOG in _docdir
|
||||||
|
|
||||||
|
* Tue Oct 30 2007 David Lutterkort <dlutter@redhat.com> - 1.4.4-1
|
||||||
|
- Initial package
|
Loading…
Reference in new issue