diff --git a/blob/ChangeLog.md b/blob/ChangeLog.md
index aa415420aaf5b282e77c210fded09c4bb7352c2f..c7144d8d22c4982d408d8977f665c2440c779eec 100644
--- a/blob/ChangeLog.md
+++ b/blob/ChangeLog.md
@@ -1,5 +1,6 @@
 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.
diff --git a/common/ChangeLog.md b/common/ChangeLog.md
index 4de2c428055268880255264b9fd66f0f5702f786..3222f7124574861db9bb99d108c467c067b7aa8a 100644
--- a/common/ChangeLog.md
+++ b/common/ChangeLog.md
@@ -1,5 +1,6 @@
 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.
diff --git a/common/azure-storage-common.gemspec b/common/azure-storage-common.gemspec
index 4320f04acca94140ae2431653d2b5e5e67be21ac..8f500ce69cc1b1a93a94a9f0c63c5fa59a6f2929 100644
--- a/common/azure-storage-common.gemspec
+++ b/common/azure-storage-common.gemspec
@@ -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
diff --git a/file/ChangeLog.md b/file/ChangeLog.md
index fc5d41edfa9852cfed4a27b83320917f286c75b1..9d9cffd15b7694757759d5a71380ee2588fedbe2 100644
--- a/file/ChangeLog.md
+++ b/file/ChangeLog.md
@@ -1,5 +1,5 @@
 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.
diff --git a/file/azure-storage-file.gemspec b/file/azure-storage-file.gemspec
index 5806803630cd8b052bd1298244cca46d96578e8f..0486218527488ba1cef1dde6ace13a2eb8cec3bd 100644
--- a/file/azure-storage-file.gemspec
+++ b/file/azure-storage-file.gemspec
@@ -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
diff --git a/queue/ChangeLog.md b/queue/ChangeLog.md
index f60a89e40cf5cf43782d492685bfe145386dfe54..0ae0bfe30de7be3d382efd270e0ba7e45afaedf2 100644
--- a/queue/ChangeLog.md
+++ b/queue/ChangeLog.md
@@ -1,5 +1,5 @@
 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.
diff --git a/queue/azure-storage-queue.gemspec b/queue/azure-storage-queue.gemspec
index 954271e0e12452ef0c7e024878af2f101df9270b..9382405155d42e04a91e9f1b50d04e0f962a44a6 100644
--- a/queue/azure-storage-queue.gemspec
+++ b/queue/azure-storage-queue.gemspec
@@ -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
diff --git a/table/ChangeLog.md b/table/ChangeLog.md
index aca61b126d9259e0e32be7e04abf20c38baafc78..a9b3aa9d3a1a9212493d9bde17011701e8154af9 100644
--- a/table/ChangeLog.md
+++ b/table/ChangeLog.md
@@ -1,5 +1,5 @@
 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.