diff --git a/blob/BreakingChanges.md b/blob/BreakingChanges.md index f14368eda9cdf530df10303915455cd5ac3e613f..cec49b973c26e8841d3e6364e83b518dbb9bd8fc 100644 --- a/blob/BreakingChanges.md +++ b/blob/BreakingChanges.md @@ -1,3 +1,7 @@ +Tracking Breaking Changes in 2.0.0 + +* This module now supports Ruby versions to 2.3 through 2.7 + Tracking Breaking Changes in 1.0.0 * This module now only consists of functionalities to access Azure Storage Blob Service. diff --git a/blob/ChangeLog.md b/blob/ChangeLog.md index abb8f4f93edaa7958b3b82af6419b594513fc8f9..a6d197e2300a2bd709cf1710a09fbb23aab3573a 100644 --- a/blob/ChangeLog.md +++ b/blob/ChangeLog.md @@ -1,3 +1,7 @@ +2020.3 - version 2.0.0 +* This module now supports Ruby versions to 2.3 through 2.7 +* Add support for generating user delegation shared access signatures. + 2018.11 - version 1.1.0 * Added the support for sending a request with a bearer token. diff --git a/blob/README.md b/blob/README.md index 44fc42b8325043fce8e320d33aacaecf43b9ee71..1e8f8791464038dce804a54ec28308f1623e6b0d 100644 --- a/blob/README.md +++ b/blob/README.md @@ -9,12 +9,12 @@ This project provides a Ruby package that makes it easy to access and manage Mic # Supported Ruby Versions -* Ruby 1.9.3 to 2.5 +* Ruby 2.3 to 2.7 Note: * x64 Ruby for Windows is known to have some compatibility issues. -* azure-storage-blob depends on gem nokogiri. For Ruby version lower than 2.2, please install the compatible nokogiri before trying to install azure-storage-blob. +* azure-storage-blob depends on gem nokogiri. # Getting Started diff --git a/blob/azure-storage-blob.gemspec b/blob/azure-storage-blob.gemspec index 06a6f25b96486b7566497e41afcf53049ed172f4..0caa8427e458481a355f83aa69d0c7592fc8ba7c 100644 --- a/blob/azure-storage-blob.gemspec +++ b/blob/azure-storage-blob.gemspec @@ -40,7 +40,7 @@ Gem::Specification.new do |s| s.required_ruby_version = ">= 2.3.0" - s.add_runtime_dependency("azure-storage-common", "~> 1.0") + s.add_runtime_dependency("azure-storage-common", "~> 2.0") s.add_runtime_dependency("nokogiri", "~> 1.10.4") s.add_development_dependency("dotenv", "~> 2.0") diff --git a/blob/lib/azure/storage/blob/version.rb b/blob/lib/azure/storage/blob/version.rb index 090399fb06f9c26f104270fd7006dda0f5243598..25932e12da0f88d281c2564237dad9c7e0d8aac8 100644 --- a/blob/lib/azure/storage/blob/version.rb +++ b/blob/lib/azure/storage/blob/version.rb @@ -29,8 +29,8 @@ module Azure module Blob class Version # Fields represent the parts defined in http://semver.org/ - MAJOR = 1 unless defined? MAJOR - MINOR = 1 unless defined? MINOR + MAJOR = 2 unless defined? MAJOR + MINOR = 0 unless defined? MINOR UPDATE = 0 unless defined? UPDATE class << self diff --git a/common/BreakingChanges.md b/common/BreakingChanges.md index 98b8148474af0bc3aa48bce1ea31b5f8fead6547..b3d0f2775301779a15f525aa520753be1a457cfe 100644 --- a/common/BreakingChanges.md +++ b/common/BreakingChanges.md @@ -1,3 +1,7 @@ +Tracking Breaking Changes in 2.0.0 + +* This module now supports Ruby versions to 2.3 through 2.7 + Tracking Breaking Changes in 1.0.0 * This module now consists of functionalities to support service client library modules. diff --git a/common/ChangeLog.md b/common/ChangeLog.md index 5228ca143d0936adf388199d1233d92b68d29087..d91cb09ea10d0e811075c11b662fe15364c703e7 100644 --- a/common/ChangeLog.md +++ b/common/ChangeLog.md @@ -1,3 +1,8 @@ +2020.3 - version 2.0.0 +* This module now supports Ruby versions to 2.3 through 2.7 +* Add support for generating user delegation shared access signatures. +* Update the storage API version used to generate shared access signatures to 2018-11-09. + 2018.11 - version 1.1.0 * Added the support for sending a request with a bearer token. * Added the configuration for SSL versions. diff --git a/common/README.md b/common/README.md index f8e0fa62bd93f161cbdf40c83585c2f6a772ef07..b87eefbfefe5b7d6529b87b1f765401f2d33a64a 100644 --- a/common/README.md +++ b/common/README.md @@ -8,12 +8,12 @@ This project provides a Ruby package that supports service client libraries. # Supported Ruby Versions -* Ruby 1.9.3 to 2.5 +* Ruby 2.3 to 2.7 Note: * x64 Ruby for Windows is known to have some compatibility issues. -* azure-storage-common depends on gem nokogiri. For Ruby version lower than 2.2, please install the compatible nokogiri before trying to install azure-storage. +* azure-storage-common depends on gem nokogiri. # Getting Started diff --git a/common/lib/azure/storage/common/version.rb b/common/lib/azure/storage/common/version.rb index 7a00a8a3d9731b04bb619872cd62fc5797ca9c38..1e8723db147fdf08224b931b7a87272efefa6ee0 100644 --- a/common/lib/azure/storage/common/version.rb +++ b/common/lib/azure/storage/common/version.rb @@ -29,8 +29,8 @@ module Azure module Common class Version # Fields represent the parts defined in http://semver.org/ - MAJOR = 1 unless defined? MAJOR - MINOR = 1 unless defined? MINOR + MAJOR = 2 unless defined? MAJOR + MINOR = 0 unless defined? MINOR UPDATE = 0 unless defined? UPDATE class << self