google-cloud-dns 0.31.0 → 0.32.0

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
  SHA256:
3
- metadata.gz: 8b9bafa762fcedbd09357499238445ae8824e00be1e5602da94efa1a03d981e6
4
- data.tar.gz: 6e77eec9ce5e726c19293614f3ead0c9d939225d098bcf25c7ba76b0c360fde9
3
+ metadata.gz: 2e77150fff3a7245a9735d39000f396495047d3baf1370c4eabdea0012d39bab
4
+ data.tar.gz: 174d908b6e611e3c984e765ca87a16424b5aa18692c2f42e84e8b438681d44a2
5
5
  SHA512:
6
- metadata.gz: eb1638265de6117fc67de4a15ae2d930c70d26b37d05810e8dadbe97d634b63116e72a67abad0c699628dc547d9b484f0f72148b897a0ed6ceb7af706fb6ec11
7
- data.tar.gz: e3073bc5c171b4e0f6cea8e1a1a45e9a4f0cfdff0286a034fc046ace99fb41e1b2e0f2e67dd3e70cc95debafbf32ee2b0b579839e205fdef2f4c3591dfa93dcc
6
+ metadata.gz: e8681e4ef2743ebd1d2f2d6d6ffb05240397fb6aeb03680c9cd567dec47bdca25ec05a5fc27e2dc2a8674eb15979265e9b355f371ced99a7237764ffd184efe8
7
+ data.tar.gz: ba11480040bb67d8f1a1af12e7189a9958ca20d2e99df7d362cef2e4d00669690c47b34f0a76c60098ef2b9f680b84c44c9de702d55db845dfc5b71cd770ea21
@@ -2,7 +2,9 @@
2
2
 
3
3
  In general, the google-cloud-dns library uses [Service
4
4
  Account](https://cloud.google.com/iam/docs/creating-managing-service-accounts)
5
- credentials to connect to Google Cloud services. When running on Compute Engine
5
+ credentials to connect to Google Cloud services. When running on Google Cloud
6
+ Platform (GCP), including Google Compute Engine (GCE), Google Kubernetes Engine
7
+ (GKE), Google App Engine (GAE), Google Cloud Functions (GCF) and Cloud Run,
6
8
  the credentials will be discovered automatically. When running on other
7
9
  environments, the Service Account credentials can be specified by providing the
8
10
  path to the [JSON
@@ -35,32 +37,10 @@ providing **Project ID** and **Service Account Credentials** directly in code.
35
37
 
36
38
  ### Google Cloud Platform environments
37
39
 
38
- While running on Google Cloud Platform environments such as Google Compute
39
- Engine, Google App Engine and Google Kubernetes Engine, no extra work is needed.
40
- The **Project ID** and **Credentials** and are discovered automatically. Code
41
- should be written as if already authenticated. Just be sure when you [set up the
42
- GCE instance][gce-how-to], you add the correct scopes for the APIs you want to
43
- access. For example:
44
-
45
- * **All APIs**
46
- * `https://www.googleapis.com/auth/cloud-platform`
47
- * `https://www.googleapis.com/auth/cloud-platform.read-only`
48
- * **BigQuery**
49
- * `https://www.googleapis.com/auth/bigquery`
50
- * `https://www.googleapis.com/auth/bigquery.insertdata`
51
- * **Compute Engine**
52
- * `https://www.googleapis.com/auth/compute`
53
- * **Datastore**
54
- * `https://www.googleapis.com/auth/datastore`
55
- * `https://www.googleapis.com/auth/userinfo.email`
56
- * **DNS**
57
- * `https://www.googleapis.com/auth/ndev.clouddns.readwrite`
58
- * **Pub/Sub**
59
- * `https://www.googleapis.com/auth/pubsub`
60
- * **Storage**
61
- * `https://www.googleapis.com/auth/devstorage.full_control`
62
- * `https://www.googleapis.com/auth/devstorage.read_only`
63
- * `https://www.googleapis.com/auth/devstorage.read_write`
40
+ When running on Google Cloud Platform (GCP), including Google Compute Engine (GCE),
41
+ Google Kubernetes Engine (GKE), Google App Engine (GAE), Google Cloud Functions
42
+ (GCF) and Cloud Run, the **Project ID** and **Credentials** and are discovered
43
+ automatically. Code should be written as if already authenticated.
64
44
 
65
45
  ### Environment Variables
66
46
 
@@ -1,5 +1,13 @@
1
1
  # Release History
2
2
 
3
+ ### 0.32.0 / 2019-10-29
4
+
5
+ This release requires Ruby 2.4 or later.
6
+
7
+ #### Documentation
8
+
9
+ * Clarify which Google Cloud Platform products support automatic authentication
10
+
3
11
  ### 0.31.0 / 2019-10-01
4
12
 
5
13
  #### Features
@@ -24,7 +24,7 @@ be able to accept your pull requests.
24
24
  In order to use the google-cloud-dns console and run the project's tests,
25
25
  there is a small amount of setup:
26
26
 
27
- 1. Install Ruby. google-cloud-dns requires Ruby 2.3+. You may choose to
27
+ 1. Install Ruby. google-cloud-dns requires Ruby 2.4+. You may choose to
28
28
  manage your Ruby and gem installations with [RVM](https://rvm.io/),
29
29
  [rbenv](https://github.com/rbenv/rbenv), or
30
30
  [chruby](https://github.com/postmodern/chruby).
@@ -7,13 +7,13 @@ be used to easily publish and manage DNS records using the same
7
7
  infrastructure relied upon by Google. To learn more, read [What is Google
8
8
  Cloud DNS?](https://cloud.google.com/dns/what-is-cloud-dns).
9
9
 
10
- The goal of google-cloud is to provide an API that is comfortable to
11
- Rubyists. Your authentication credentials are detected automatically in
12
- Google Cloud Platform environments such as Google Compute Engine, Google
13
- App Engine and Google Kubernetes Engine. In other environments you can
14
- configure authentication easily, either directly in your code or via
15
- environment variables. Read more about the options for connecting in the
16
- {file:AUTHENTICATION.md Authentication Guide}.
10
+ The goal of google-cloud is to provide an API that is comfortable to Rubyists.
11
+ Your authentication credentials are detected automatically in Google Cloud
12
+ Platform (GCP), including Google Compute Engine (GCE), Google Kubernetes Engine
13
+ (GKE), Google App Engine (GAE), Google Cloud Functions (GCF) and Cloud Run. In
14
+ other environments you can configure authentication easily, either directly in
15
+ your code or via environment variables. Read more about the options for
16
+ connecting in the {file:AUTHENTICATION.md Authentication Guide}.
17
17
 
18
18
  ## Creating Zones
19
19
 
@@ -16,7 +16,7 @@
16
16
  module Google
17
17
  module Cloud
18
18
  module Dns
19
- VERSION = "0.31.0".freeze
19
+ VERSION = "0.32.0".freeze
20
20
  end
21
21
  end
22
22
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-dns
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.31.0
4
+ version: 0.32.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mike Moore
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2019-10-02 00:00:00.000000000 Z
12
+ date: 2019-10-30 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: google-cloud-core
@@ -29,42 +29,30 @@ dependencies:
29
29
  name: google-api-client
30
30
  requirement: !ruby/object:Gem::Requirement
31
31
  requirements:
32
- - - ">="
33
- - !ruby/object:Gem::Version
34
- version: 0.30.4
35
- - - "<"
32
+ - - "~>"
36
33
  - !ruby/object:Gem::Version
37
- version: '1.0'
34
+ version: '0.33'
38
35
  type: :runtime
39
36
  prerelease: false
40
37
  version_requirements: !ruby/object:Gem::Requirement
41
38
  requirements:
42
- - - ">="
43
- - !ruby/object:Gem::Version
44
- version: 0.30.4
45
- - - "<"
39
+ - - "~>"
46
40
  - !ruby/object:Gem::Version
47
- version: '1.0'
41
+ version: '0.33'
48
42
  - !ruby/object:Gem::Dependency
49
43
  name: googleauth
50
44
  requirement: !ruby/object:Gem::Requirement
51
45
  requirements:
52
- - - ">="
53
- - !ruby/object:Gem::Version
54
- version: 0.6.2
55
- - - "<"
46
+ - - "~>"
56
47
  - !ruby/object:Gem::Version
57
- version: 0.10.0
48
+ version: '0.9'
58
49
  type: :runtime
59
50
  prerelease: false
60
51
  version_requirements: !ruby/object:Gem::Requirement
61
52
  requirements:
62
- - - ">="
63
- - !ruby/object:Gem::Version
64
- version: 0.6.2
65
- - - "<"
53
+ - - "~>"
66
54
  - !ruby/object:Gem::Version
67
- version: 0.10.0
55
+ version: '0.9'
68
56
  - !ruby/object:Gem::Dependency
69
57
  name: zonefile
70
58
  requirement: !ruby/object:Gem::Requirement
@@ -79,6 +67,20 @@ dependencies:
79
67
  - - "~>"
80
68
  - !ruby/object:Gem::Version
81
69
  version: '1.04'
70
+ - !ruby/object:Gem::Dependency
71
+ name: google-style
72
+ requirement: !ruby/object:Gem::Requirement
73
+ requirements:
74
+ - - "~>"
75
+ - !ruby/object:Gem::Version
76
+ version: 1.24.0
77
+ type: :development
78
+ prerelease: false
79
+ version_requirements: !ruby/object:Gem::Requirement
80
+ requirements:
81
+ - - "~>"
82
+ - !ruby/object:Gem::Version
83
+ version: 1.24.0
82
84
  - !ruby/object:Gem::Dependency
83
85
  name: minitest
84
86
  requirement: !ruby/object:Gem::Requirement
@@ -163,20 +165,6 @@ dependencies:
163
165
  - - "~>"
164
166
  - !ruby/object:Gem::Version
165
167
  version: '3.0'
166
- - !ruby/object:Gem::Dependency
167
- name: rubocop
168
- requirement: !ruby/object:Gem::Requirement
169
- requirements:
170
- - - "~>"
171
- - !ruby/object:Gem::Version
172
- version: 0.64.0
173
- type: :development
174
- prerelease: false
175
- version_requirements: !ruby/object:Gem::Requirement
176
- requirements:
177
- - - "~>"
178
- - !ruby/object:Gem::Version
179
- version: 0.64.0
180
168
  - !ruby/object:Gem::Dependency
181
169
  name: simplecov
182
170
  requirement: !ruby/object:Gem::Requirement
@@ -262,14 +250,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
262
250
  requirements:
263
251
  - - ">="
264
252
  - !ruby/object:Gem::Version
265
- version: 2.0.0
253
+ version: '2.4'
266
254
  required_rubygems_version: !ruby/object:Gem::Requirement
267
255
  requirements:
268
256
  - - ">="
269
257
  - !ruby/object:Gem::Version
270
258
  version: '0'
271
259
  requirements: []
272
- rubygems_version: 3.0.4
260
+ rubygems_version: 3.0.6
273
261
  signing_key:
274
262
  specification_version: 4
275
263
  summary: API Client library for Google Cloud DNS