Skip to content

Commit dfcac56

Browse files
authored
Merge pull request #203 from katmsft/prvalidation
Update gemspecs to resolve dependency hell for nokogiri.
2 parents 7296878 + 5c4a584 commit dfcac56

File tree

8 files changed

+13
-5
lines changed

8 files changed

+13
-5
lines changed

blob/ChangeLog.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
2021.10 - version 2.0.2
2-
* Allow to use any version 1.x of Nokogiri for Ruby version later than or equal to 2.5.0.
2+
* Allowed to use any version 1.x of Nokogiri for Ruby version later than or equal to 2.5.0.
3+
* Added access tier information and creation time of blob in response.
34

45
2020.8 - version 2.0.1
56
* Bumped up Nokogiri version to 1.11.0.rc2 for Ruby version later than or equal to 2.4.0.

common/ChangeLog.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
2021.10 - version 2.0.3
2-
* Allow to use any version 1.x of Nokogiri for Ruby version later than or equal to 2.5.0.
2+
* Allowed to use any version 1.x of Nokogiri for Ruby version later than or equal to 2.5.0.
3+
* Fixed handling of invalid connection strings
34

45
2020.8 - version 2.0.2
56
* Bumped up Nokogiri version to 1.11.0.rc2 for Ruby version later than or equal to 2.4.0.

common/azure-storage-common.gemspec

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,8 @@ Gem::Specification.new do |s|
4646
s.add_runtime_dependency("net-http-persistent", '~> 4.0')
4747
if RUBY_VERSION < "2.4.0"
4848
s.add_runtime_dependency("nokogiri", "~> 1.10.4")
49+
elsif RUBY_VERSION < "2.5.0"
50+
s.add_runtime_dependency("nokogiri", "~> 1.11.0.rc2")
4951
else
5052
s.add_runtime_dependency("nokogiri", "~> 1", ">= 1.12.5")
5153
end

file/ChangeLog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
2021.10 - version 2.0.3
2-
* Allow to use any version 1.x of Nokogiri for Ruby version later than or equal to 2.5.0.
2+
* Allowed to use any version 1.x of Nokogiri for Ruby version later than or equal to 2.5.0.
33

44
2020.8 - version 2.0.2
55
* Bumped up Nokogiri version to 1.11.0.rc2 for Ruby version later than or equal to 2.4.0.

file/azure-storage-file.gemspec

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,8 @@ Gem::Specification.new do |s|
4343
s.add_runtime_dependency("azure-storage-common", "~> 2.0")
4444
if RUBY_VERSION < "2.4.0"
4545
s.add_runtime_dependency("nokogiri", "~> 1.10.4")
46+
elsif RUBY_VERSION < "2.5.0"
47+
s.add_runtime_dependency("nokogiri", "~> 1.11.0.rc2")
4648
else
4749
s.add_runtime_dependency("nokogiri", "~> 1", ">= 1.12.5")
4850
end

queue/ChangeLog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
2021.10 - version 2.0.3
2-
* Allow to use any version 1.x of Nokogiri for Ruby version later than or equal to 2.5.0.
2+
* Allowed to use any version 1.x of Nokogiri for Ruby version later than or equal to 2.5.0.
33

44
2020.8 - version 2.0.2
55
* Bumped up Nokogiri version to 1.11.0.rc2 for Ruby version later than or equal to 2.4.0.

queue/azure-storage-queue.gemspec

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,8 @@ Gem::Specification.new do |s|
4343
s.add_runtime_dependency("azure-storage-common", "~> 2.0")
4444
if RUBY_VERSION < "2.4.0"
4545
s.add_runtime_dependency("nokogiri", "~> 1.10.4")
46+
elsif RUBY_VERSION < "2.5.0"
47+
s.add_runtime_dependency("nokogiri", "~> 1.11.0.rc2")
4648
else
4749
s.add_runtime_dependency("nokogiri", "~> 1", ">= 1.12.5")
4850
end

table/ChangeLog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
2021.10 - version 2.0.3
2-
* Allow to use any version 1.x of Nokogiri for Ruby version later than or equal to 2.5.0.
2+
* Allowed to use any version 1.x of Nokogiri for Ruby version later than or equal to 2.5.0.
33

44
2020.8 - version 2.0.2
55
* Bumped up Nokogiri version to 1.11.0.rc2 for Ruby version later than or equal to 2.4.0.

0 commit comments

Comments
 (0)