update to 2.0.8.1
(cherry picked from commit 3b2537a4f49562876e1c8c719c11edd4026fc578)
This commit is contained in:
parent
d7d1c8d890
commit
73427708a6
Binary file not shown.
BIN
rack-protection-2.0.8.1-spec.tar.gz
Normal file
BIN
rack-protection-2.0.8.1-spec.tar.gz
Normal file
Binary file not shown.
BIN
rack-protection-2.0.8.1.gem
Normal file
BIN
rack-protection-2.0.8.1.gem
Normal file
Binary file not shown.
34
rubygem-rack-protection-2.0.8.1-Fix-failing-tests.patch
Normal file
34
rubygem-rack-protection-2.0.8.1-Fix-failing-tests.patch
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
From 750aa3b0de06dad41539bdb402123b5416a3475d Mon Sep 17 00:00:00 2001
|
||||||
|
From: Jordan Owens <jkowens@gmail.com>
|
||||||
|
Date: Tue, 10 Mar 2020 10:24:05 -0400
|
||||||
|
Subject: [PATCH] Fix failing tests
|
||||||
|
|
||||||
|
Rack added support for Multi-part ranges and apparently changed the
|
||||||
|
format of cookie expires timestamp format to match specs.
|
||||||
|
---
|
||||||
|
.../spec/lib/rack/protection/cookie_tossing_spec.rb | 12 ++++++------
|
||||||
|
1 file changed, 6 insertions(+), 6 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/rack-protection/spec/lib/rack/protection/cookie_tossing_spec.rb b/rack-protection/spec/lib/rack/protection/cookie_tossing_spec.rb
|
||||||
|
index af46ffc2b..f973bd476 100644
|
||||||
|
--- a/rack-protection/spec/lib/rack/protection/cookie_tossing_spec.rb
|
||||||
|
+++ b/rack-protection/spec/lib/rack/protection/cookie_tossing_spec.rb
|
||||||
|
@@ -28,12 +28,12 @@
|
||||||
|
get '/some/path', {}, 'HTTP_COOKIE' => 'rack.%73ession=EVIL_SESSION_TOKEN; rack.session=EVIL_SESSION_TOKEN; rack.session=SESSION_TOKEN'
|
||||||
|
|
||||||
|
expected_header = <<-END.chomp
|
||||||
|
-rack.%2573ession=; domain=example.org; path=/; expires=Thu, 01 Jan 1970 00:00:00 -0000
|
||||||
|
-rack.%2573ession=; domain=example.org; path=/some; expires=Thu, 01 Jan 1970 00:00:00 -0000
|
||||||
|
-rack.%2573ession=; domain=example.org; path=/some/path; expires=Thu, 01 Jan 1970 00:00:00 -0000
|
||||||
|
-rack.session=; domain=example.org; path=/; expires=Thu, 01 Jan 1970 00:00:00 -0000
|
||||||
|
-rack.session=; domain=example.org; path=/some; expires=Thu, 01 Jan 1970 00:00:00 -0000
|
||||||
|
-rack.session=; domain=example.org; path=/some/path; expires=Thu, 01 Jan 1970 00:00:00 -0000
|
||||||
|
+rack.%2573ession=; domain=example.org; path=/; expires=Thu, 01 Jan 1970 00:00:00 GMT
|
||||||
|
+rack.%2573ession=; domain=example.org; path=/some; expires=Thu, 01 Jan 1970 00:00:00 GMT
|
||||||
|
+rack.%2573ession=; domain=example.org; path=/some/path; expires=Thu, 01 Jan 1970 00:00:00 GMT
|
||||||
|
+rack.session=; domain=example.org; path=/; expires=Thu, 01 Jan 1970 00:00:00 GMT
|
||||||
|
+rack.session=; domain=example.org; path=/some; expires=Thu, 01 Jan 1970 00:00:00 GMT
|
||||||
|
+rack.session=; domain=example.org; path=/some/path; expires=Thu, 01 Jan 1970 00:00:00 GMT
|
||||||
|
END
|
||||||
|
expect(last_response.headers['Set-Cookie']).to eq(expected_header)
|
||||||
|
end
|
||||||
@ -1,15 +1,20 @@
|
|||||||
%global gem_name rack-protection
|
%global gem_name rack-protection
|
||||||
%{?_with_bootstrap: %global bootstrap 1}
|
%bcond_with bootstrap
|
||||||
Summary: Ruby gem that protects against typical web attacks
|
Summary: Ruby gem that protects against typical web attacks
|
||||||
Name: rubygem-%{gem_name}
|
Name: rubygem-%{gem_name}
|
||||||
Version: 2.0.3
|
Version: 2.0.8.1
|
||||||
Release: 2
|
Release: 1
|
||||||
License: MIT
|
License: MIT
|
||||||
URL: http://github.com/sinatra/sinatra/tree/master/rack-protection
|
URL: http://github.com/sinatra/sinatra/tree/master/rack-protection
|
||||||
Source0: https://rubygems.org/gems/%{gem_name}-%{version}.gem
|
Source0: https://rubygems.org/gems/%{gem_name}-%{version}.gem
|
||||||
Source1: https://github.com/sinatra/sinatra/archive/v%{version}.tar.gz
|
# git clone https://github.com/sinatra/sinatra.git && cd sinatra/rack-protection
|
||||||
|
# git archive -v -o rack-protection-2.0.8.1-spec.tar.gz v2.0.8.1 spec/
|
||||||
|
Source1: %{gem_name}-%{version}-spec.tar.gz
|
||||||
|
# Fix test failure due to Rack 2.2.2 incompatibility.
|
||||||
|
# https://github.com/sinatra/sinatra/pull/1605
|
||||||
|
Patch0: rubygem-rack-protection-2.0.8.1-Fix-failing-tests.patch
|
||||||
BuildRequires: ruby(release) rubygems-devel ruby
|
BuildRequires: ruby(release) rubygems-devel ruby
|
||||||
%if ! 0%{?bootstrap}
|
%if %{without bootstrap}
|
||||||
BuildRequires: rubygem(rack) rubygem(rspec) rubygem(rack-test)
|
BuildRequires: rubygem(rack) rubygem(rspec) rubygem(rack-test)
|
||||||
%endif
|
%endif
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
@ -24,25 +29,30 @@ Requires: %{name} = %{version}-%{release}
|
|||||||
This package contains documentation for %{name}.
|
This package contains documentation for %{name}.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -c -T
|
%setup -q -n %{gem_name}-%{version} -b 1
|
||||||
%gem_install -n %{SOURCE0}
|
|
||||||
|
pushd %{_builddir}
|
||||||
|
%patch0 -p2
|
||||||
|
popd
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%if ! 0%{?bootstrap}
|
gem build ../%{gem_name}-%{version}.gemspec
|
||||||
|
%gem_install
|
||||||
|
|
||||||
|
%install
|
||||||
|
mkdir -p %{buildroot}%{gem_dir}
|
||||||
|
cp -a .%{gem_dir}/* \
|
||||||
|
%{buildroot}%{gem_dir}/
|
||||||
|
|
||||||
|
%if %{without bootstrap}
|
||||||
%check
|
%check
|
||||||
pushd .%{gem_instdir}
|
pushd .%{gem_instdir}
|
||||||
tar xzvf %{SOURCE1}
|
ln -s %{_builddir}/spec spec
|
||||||
sed -i 's/-0000/GMT/g' sinatra-2.0.3/rack-protection/spec/lib/rack/protection/cookie_tossing_spec.rb
|
|
||||||
ln -s sinatra-%{version}/%{gem_name}/spec spec
|
|
||||||
rspec -r 'spec_helper' spec
|
rspec -r 'spec_helper' spec
|
||||||
popd
|
popd
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%install
|
|
||||||
%{__mkdir_p} %{buildroot}%{gem_dir}
|
|
||||||
cp -rv .%{gem_dir}/* %{buildroot}%{gem_dir}
|
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%dir %{gem_instdir}
|
%dir %{gem_instdir}
|
||||||
%license %{gem_instdir}/License
|
%license %{gem_instdir}/License
|
||||||
@ -58,6 +68,9 @@ cp -rv .%{gem_dir}/* %{buildroot}%{gem_dir}
|
|||||||
%{gem_instdir}/Rakefile
|
%{gem_instdir}/Rakefile
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Feb 24 2022 liyanan <liyanan32@huawei.com> - 2.0.8.1-1
|
||||||
|
- update to 2.0.8.1
|
||||||
|
|
||||||
* Wed Feb 10 2021 jeff200902 <gaojianxing@huawei.com> - 2.0.3-2
|
* Wed Feb 10 2021 jeff200902 <gaojianxing@huawei.com> - 2.0.3-2
|
||||||
- fix check failed
|
- fix check failed
|
||||||
|
|
||||||
|
|||||||
BIN
v2.0.3.tar.gz
BIN
v2.0.3.tar.gz
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user