google-cloud-pubsub 1.1.0 → 1.1.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 60202a1d96c472dc3bb05992db2ed19da1e34077ceeb5e0a066126a69d569f30
4
- data.tar.gz: b671179cf63643ec45598fe63b29440504f2d24ce9f2d8495ec0e16e66838809
3
+ metadata.gz: e4009798b16429d21a423b19e5e043a5e390725c24f3ba6cc474ec9955dc4cb0
4
+ data.tar.gz: 6a75238beec6c33c422fa8b21ec3c69f59e219fc9a97020c9a7b4372e64af33a
5
5
  SHA512:
6
- metadata.gz: 01ab09622f6773bfe6a0a5b96171eebb348c71dffd13b06d48eb1754d7cfde3464f81d51051f4a60d5d72c7e39b1b9e746b8417f0d9b86b50dd54280978f3ca4
7
- data.tar.gz: c0eeb49f436cd8e385ce16b37f5a93445dd29417729624edd572e5a5bc2454c8b3e4504edba9cd73ffe227be64b4b68bfcadceb6e65983b12dfccb222a2879e2
6
+ metadata.gz: 026a8e639966e883ad44448cf015fb5b4d40c802e07c7d61f840a761684f132da58722808247341741570dc65fe464a4e6c2e8a817c23b1dd087b923b398f091
7
+ data.tar.gz: badf354dbdf8eb305f67429b6c21b71af4237f4e4b78e90dd913513b416f4df6dae4faa844245096c9871d81c84d38553b0f5d6870b7b982f3dfd5e92818f63f
data/AUTHENTICATION.md CHANGED
@@ -55,32 +55,10 @@ code.
55
55
 
56
56
  ### Google Cloud Platform environments
57
57
 
58
- While running on Google Cloud Platform environments such as Google Compute
59
- Engine, Google App Engine and Google Kubernetes Engine, no extra work is needed.
60
- The **Project ID** and **Credentials** and are discovered automatically. Code
61
- should be written as if already authenticated. Just be sure when you [set up the
62
- GCE instance][gce-how-to], you add the correct scopes for the APIs you want to
63
- access. For example:
64
-
65
- * **All APIs**
66
- * `https://www.googleapis.com/auth/cloud-platform`
67
- * `https://www.googleapis.com/auth/cloud-platform.read-only`
68
- * **BigQuery**
69
- * `https://www.googleapis.com/auth/bigquery`
70
- * `https://www.googleapis.com/auth/bigquery.insertdata`
71
- * **Compute Engine**
72
- * `https://www.googleapis.com/auth/compute`
73
- * **Datastore**
74
- * `https://www.googleapis.com/auth/datastore`
75
- * `https://www.googleapis.com/auth/userinfo.email`
76
- * **DNS**
77
- * `https://www.googleapis.com/auth/ndev.clouddns.readwrite`
78
- * **Pub/Sub**
79
- * `https://www.googleapis.com/auth/pubsub`
80
- * **Storage**
81
- * `https://www.googleapis.com/auth/devstorage.full_control`
82
- * `https://www.googleapis.com/auth/devstorage.read_only`
83
- * `https://www.googleapis.com/auth/devstorage.read_write`
58
+ When running on Google Cloud Platform (GCP), including Google Compute Engine (GCE),
59
+ Google Kubernetes Engine (GKE), Google App Engine (GAE), Google Cloud Functions
60
+ (GCF) and Cloud Run, the **Project ID** and **Credentials** and are discovered
61
+ automatically. Code should be written as if already authenticated.
84
62
 
85
63
  ### Environment Variables
86
64
 
data/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # Release History
2
2
 
3
+ ### 1.1.1 / 2019-11-06
4
+
5
+ #### Bug Fixes
6
+
7
+ * Update minimum runtime dependencies
8
+
9
+ #### Documentation
10
+
11
+ * Update the list of GCP environments for automatic authentication
12
+
3
13
  ### 1.1.0 / 2019-10-23
4
14
 
5
15
  #### Features
data/OVERVIEW.md CHANGED
@@ -8,11 +8,11 @@ developers to communicate between independently written applications.
8
8
 
9
9
  The goal of google-cloud is to provide an API that is comfortable to Rubyists.
10
10
  Your authentication credentials are detected automatically in Google Cloud
11
- Platform environments such as Google Compute Engine, Google App Engine and
12
- Google Kubernetes Engine. In other environments you can configure authentication
13
- easily, either directly in your code or via environment variables. Read more
14
- about the options for connecting in the {file:AUTHENTICATION.md Authentication
15
- Guide}.
11
+ Platform (GCP), including Google Compute Engine (GCE), Google Kubernetes Engine
12
+ (GKE), Google App Engine (GAE), Google Cloud Functions (GCF) and Cloud Run. In
13
+ other environments you can configure authentication easily, either directly in
14
+ your code or via environment variables. Read more about the options for
15
+ connecting in the {file:AUTHENTICATION.md Authentication Guide}.
16
16
 
17
17
  ```ruby
18
18
  require "google/cloud/pubsub"
@@ -16,7 +16,7 @@
16
16
  module Google
17
17
  module Cloud
18
18
  module PubSub
19
- VERSION = "1.1.0".freeze
19
+ VERSION = "1.1.1".freeze
20
20
  end
21
21
 
22
22
  Pubsub = PubSub unless const_defined? :Pubsub
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-pubsub
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.1.1
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-23 00:00:00.000000000 Z
12
+ date: 2019-11-06 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: concurrent-ruby
@@ -73,6 +73,26 @@ dependencies:
73
73
  - - "<"
74
74
  - !ruby/object:Gem::Version
75
75
  version: '2.0'
76
+ - !ruby/object:Gem::Dependency
77
+ name: googleapis-common-protos-types
78
+ requirement: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: 1.0.4
83
+ - - "<"
84
+ - !ruby/object:Gem::Version
85
+ version: '2.0'
86
+ type: :runtime
87
+ prerelease: false
88
+ version_requirements: !ruby/object:Gem::Requirement
89
+ requirements:
90
+ - - ">="
91
+ - !ruby/object:Gem::Version
92
+ version: 1.0.4
93
+ - - "<"
94
+ - !ruby/object:Gem::Version
95
+ version: '2.0'
76
96
  - !ruby/object:Gem::Dependency
77
97
  name: grpc-google-iam-v1
78
98
  requirement: !ruby/object:Gem::Requirement