aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatarUnit 193 <unit193@ubuntu.com>2020-03-18 00:22:40 -0400
committerLibravatarUnit 193 <unit193@ubuntu.com>2020-03-18 00:22:40 -0400
commit9e07e8cd4836ddc89accdb7b20152c9a4f06fd03 (patch)
tree878c06f18392f6cf399d39468f5037f73495e537
parent46eadd2724cd841328d90c3143a485fcdf423ed6 (diff)
downloadruby-roo-9e07e8cd4836ddc89accdb7b20152c9a4f06fd03.tar.bz2
ruby-roo-9e07e8cd4836ddc89accdb7b20152c9a4f06fd03.tar.xz
ruby-roo-9e07e8cd4836ddc89accdb7b20152c9a4f06fd03.tar.zst
New upstream version 2.8.3upstream/2.8.3
-rw-r--r--CHANGELOG.md4
-rw-r--r--README.md2
-rw-r--r--lib/roo/version.rb2
-rw-r--r--roo.gemspec2
-rw-r--r--test/roo/test_excelx.rb2
-rw-r--r--test/roo/test_open_office.rb2
6 files changed, 9 insertions, 5 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index fb1734a..a1c3a40 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,9 @@
## Unreleased
+## [2.8.3] 2020-02-03
+### Changed/Added
+- Updated rubyzip version. Now minimal version is 1.3.0 [515](https://github.com/roo-rb/roo/pull/515) - [CVE-2019-16892](https://github.com/rubyzip/rubyzip/pull/403)
+
## [2.8.2] 2019-02-01
### Changed/Added
- Support range cell for Excelx's links [490](https://github.com/roo-rb/roo/pull/490)
diff --git a/README.md b/README.md
index 0b18055..faf983a 100644
--- a/README.md
+++ b/README.md
@@ -18,7 +18,7 @@ Install as a gem
Or add it to your Gemfile
```ruby
-gem "roo", "~> 2.7.0"
+gem "roo", "~> 2.8.0"
```
## Usage
diff --git a/lib/roo/version.rb b/lib/roo/version.rb
index 1f2140b..262847c 100644
--- a/lib/roo/version.rb
+++ b/lib/roo/version.rb
@@ -1,3 +1,3 @@
module Roo
- VERSION = "2.8.2"
+ VERSION = "2.8.3"
end
diff --git a/roo.gemspec b/roo.gemspec
index c674025..814c5fc 100644
--- a/roo.gemspec
+++ b/roo.gemspec
@@ -20,7 +20,7 @@ Gem::Specification.new do |spec|
spec.required_ruby_version = ">= 2.3.0"
spec.add_dependency 'nokogiri', '~> 1'
- spec.add_dependency 'rubyzip', '>= 1.2.1', '< 2.0.0'
+ spec.add_dependency 'rubyzip', '>= 1.3.0', '< 3.0.0'
spec.add_development_dependency 'rake', '~> 10.1'
spec.add_development_dependency 'minitest', '~> 5.4', '>= 5.4.3'
diff --git a/test/roo/test_excelx.rb b/test/roo/test_excelx.rb
index 9d460af..90c7167 100644
--- a/test/roo/test_excelx.rb
+++ b/test/roo/test_excelx.rb
@@ -3,7 +3,7 @@ require "test_helper"
class TestRworkbookExcelx < Minitest::Test
def test_download_uri_with_invalid_host
assert_raises(RuntimeError) do
- Roo::Excelx.new("http://example.com/file.xlsx")
+ Roo::Excelx.new("http://examples.com/file.xlsx")
end
end
diff --git a/test/roo/test_open_office.rb b/test/roo/test_open_office.rb
index e6118b6..18083a5 100644
--- a/test/roo/test_open_office.rb
+++ b/test/roo/test_open_office.rb
@@ -15,7 +15,7 @@ class TestRooOpenOffice < Minitest::Test
def test_download_uri_with_invalid_host
assert_raises(RuntimeError) do
- roo_class.new("http://example.com/file.ods")
+ roo_class.new("http://examples.com/file.ods")
end
end