azure-core 0.1.14 → 0.1.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/ChangeLog.md +3 -0
- data/lib/azure/core/auth/shared_key.rb +1 -2
- data/lib/azure/core/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d9b9c4ced28b3956ea1f975d0dc4eea592ba5fc4b6d75cee3269df510c0d1045
|
|
4
|
+
data.tar.gz: 50d31b09d0051f9cab7b0bab31fafa9b46009fbbfb3ef6242c1f4743decdef68
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 00f87784ccbac2849252914221cdccd21c6c06a83ff1d30e1e630c749f6bf9b143703bf37fba0f6bdec0a6614a396f5dba0df59f6416ff6e76377618a779d109
|
|
7
|
+
data.tar.gz: 58fa485db476eb85c67c668803a0d05fd08454ec3d9f96df6e417839f44a3a56fa4d7dd1ddc8969d2475de536c10d72beb3cc34f10cf0067b7f819ecbaae5c56
|
data/ChangeLog.md
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
# 2018.11.20 - azure-core gem @version 0.1.15
|
|
2
|
+
* Fixed the issue that consecutive spaces in the headers are replaced by one space. [Storage #127](https://github.com/Azure/azure-storage-ruby/issues/127)
|
|
3
|
+
|
|
1
4
|
# 2017.12.28 - azure-core gem @version 0.1.14
|
|
2
5
|
* Added `reason_phrase` as an alternative for HTTP error description if no error details is found in response body
|
|
3
6
|
* Fixed a bug of re-throwing previously stored response error when it retries. [#51](https://github.com/Azure/azure-ruby-asm-core/issues/51)
|
|
@@ -96,8 +96,7 @@ module Azure
|
|
|
96
96
|
headers = headers.map { |k,v| [k.to_s.downcase, v] }
|
|
97
97
|
headers.select! { |k,_| k =~ /^x-ms-/ }
|
|
98
98
|
headers.sort_by! { |(k,_)| k }
|
|
99
|
-
headers.map! { |k,v| '%s:%s' % [k, v] }
|
|
100
|
-
headers.map! { |h| h.gsub(/\s+/, ' ') }.join("\n")
|
|
99
|
+
headers.map! { |k,v| '%s:%s' % [k, v] }.join("\n")
|
|
101
100
|
end
|
|
102
101
|
|
|
103
102
|
# Calculate the Canonicalized Resource string for a request.
|
data/lib/azure/core/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: azure-core
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.15
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Microsoft Corporation
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date:
|
|
12
|
+
date: 2018-12-03 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: faraday
|
|
@@ -209,7 +209,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
209
209
|
version: '0'
|
|
210
210
|
requirements: []
|
|
211
211
|
rubyforge_project:
|
|
212
|
-
rubygems_version: 2.7.
|
|
212
|
+
rubygems_version: 2.7.8
|
|
213
213
|
signing_key:
|
|
214
214
|
specification_version: 4
|
|
215
215
|
summary: Core library to be consumed by Ruby SDK gems
|