Skip to content
Snippets Groups Projects
Unverified Commit dfcac565 authored by Kan Tang's avatar Kan Tang Committed by GitHub
Browse files

Merge pull request #203 from katmsft/prvalidation

Update gemspecs to resolve dependency hell for nokogiri.
parents 72968786 5c4a5848
No related branches found
No related tags found
No related merge requests found
2021.10 - version 2.0.2
* Allow to use any version 1.x of Nokogiri for Ruby version later than or equal to 2.5.0.
* Allowed to use any version 1.x of Nokogiri for Ruby version later than or equal to 2.5.0.
* Added access tier information and creation time of blob in response.
2020.8 - version 2.0.1
* Bumped up Nokogiri version to 1.11.0.rc2 for Ruby version later than or equal to 2.4.0.
......
2021.10 - version 2.0.3
* Allow to use any version 1.x of Nokogiri for Ruby version later than or equal to 2.5.0.
* Allowed to use any version 1.x of Nokogiri for Ruby version later than or equal to 2.5.0.
* Fixed handling of invalid connection strings
2020.8 - version 2.0.2
* Bumped up Nokogiri version to 1.11.0.rc2 for Ruby version later than or equal to 2.4.0.
......
......@@ -46,6 +46,8 @@ Gem::Specification.new do |s|
s.add_runtime_dependency("net-http-persistent", '~> 4.0')
if RUBY_VERSION < "2.4.0"
s.add_runtime_dependency("nokogiri", "~> 1.10.4")
elsif RUBY_VERSION < "2.5.0"
s.add_runtime_dependency("nokogiri", "~> 1.11.0.rc2")
else
s.add_runtime_dependency("nokogiri", "~> 1", ">= 1.12.5")
end
......
2021.10 - version 2.0.3
* Allow to use any version 1.x of Nokogiri for Ruby version later than or equal to 2.5.0.
* Allowed to use any version 1.x of Nokogiri for Ruby version later than or equal to 2.5.0.
2020.8 - version 2.0.2
* Bumped up Nokogiri version to 1.11.0.rc2 for Ruby version later than or equal to 2.4.0.
......
......@@ -43,6 +43,8 @@ Gem::Specification.new do |s|
s.add_runtime_dependency("azure-storage-common", "~> 2.0")
if RUBY_VERSION < "2.4.0"
s.add_runtime_dependency("nokogiri", "~> 1.10.4")
elsif RUBY_VERSION < "2.5.0"
s.add_runtime_dependency("nokogiri", "~> 1.11.0.rc2")
else
s.add_runtime_dependency("nokogiri", "~> 1", ">= 1.12.5")
end
......
2021.10 - version 2.0.3
* Allow to use any version 1.x of Nokogiri for Ruby version later than or equal to 2.5.0.
* Allowed to use any version 1.x of Nokogiri for Ruby version later than or equal to 2.5.0.
2020.8 - version 2.0.2
* Bumped up Nokogiri version to 1.11.0.rc2 for Ruby version later than or equal to 2.4.0.
......
......@@ -43,6 +43,8 @@ Gem::Specification.new do |s|
s.add_runtime_dependency("azure-storage-common", "~> 2.0")
if RUBY_VERSION < "2.4.0"
s.add_runtime_dependency("nokogiri", "~> 1.10.4")
elsif RUBY_VERSION < "2.5.0"
s.add_runtime_dependency("nokogiri", "~> 1.11.0.rc2")
else
s.add_runtime_dependency("nokogiri", "~> 1", ">= 1.12.5")
end
......
2021.10 - version 2.0.3
* Allow to use any version 1.x of Nokogiri for Ruby version later than or equal to 2.5.0.
* Allowed to use any version 1.x of Nokogiri for Ruby version later than or equal to 2.5.0.
2020.8 - version 2.0.2
* Bumped up Nokogiri version to 1.11.0.rc2 for Ruby version later than or equal to 2.4.0.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment