azure-armrest 0.5.1 → 0.5.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f920c8f07cf2383273490cdf251f88dc3e4ecc17
4
- data.tar.gz: 7e9cb3164cc07b3e54bca526c20b298bc17da944
3
+ metadata.gz: 73beabef1814841487327de9d64c582c7dabd35a
4
+ data.tar.gz: 6cdc3b6d754f2974c41de3b8cb57c8bc6aa64a07
5
5
  SHA512:
6
- metadata.gz: cc5dd973b5b8d52978cbdd3521cd1fca87c91f5b560da041793b1dd73bf9b3d57b08572af182fc7a6f8a2ea4943e0594f4a5c658088eb3dc34a3e71c32b28039
7
- data.tar.gz: b81b2da518221a91fee8bbe13926962b9d18f85c57c84c8c6b707c9b48dbb2847c0926b3d8b520e56d80e8366380cb1c652b97e06b9de7298d18af700fda2330
6
+ metadata.gz: c3a3cf9f3f4b5d0b8fc38b4e46d79c6686259e3ec5a24a1263a4c0543dcf802ad0d0c17a82fb759b58f38a8a560b78089176bf9670ecf0927e9d4316291575d4
7
+ data.tar.gz: 7230dcf6df9ade9181e5d18f222578a75ff4b37fb7dbd56d04a096c013f99080f4280999e31700dff409949ce2269898bd06c0995a10a64b63360a8912ca66ab
data/CHANGES CHANGED
@@ -1,3 +1,8 @@
1
+ = 0.5.2 - 22-Dec-2016
2
+ * The Configuration#hash method, which is used internally to cache auth
3
+ tokens, was modified to include the environment name. This prevents
4
+ conflicts for apps in mixed environments.
5
+
1
6
  = 0.5.1 - 21-Dec-2016
2
7
  * The Configuration#subscription_id= method does not validate or fetch
3
8
  provider information if the argument is nil or blank.
@@ -130,7 +130,7 @@ module Azure
130
130
  end
131
131
 
132
132
  def hash
133
- [tenant_id, client_id, client_key].join('_').hash
133
+ [environment.name, tenant_id, client_id, client_key].join('_').hash
134
134
  end
135
135
 
136
136
  # Allow for strings or URI objects when assigning a proxy.
@@ -1,6 +1,6 @@
1
1
  module Azure
2
2
  module Armrest
3
3
  # The version of the azure-armrest library.
4
- VERSION = '0.5.1'.freeze
4
+ VERSION = '0.5.2'.freeze
5
5
  end
6
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: azure-armrest
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.1
4
+ version: 0.5.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel J. Berger
@@ -11,7 +11,7 @@ authors:
11
11
  autorequire:
12
12
  bindir: bin
13
13
  cert_chain: []
14
- date: 2016-12-21 00:00:00.000000000 Z
14
+ date: 2016-12-22 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: json