googleauth 1.1.3 → 1.2.0

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: 967a6321e1ec2dafec23915f77028196ca588d1b0cd7d40c0824d918d4001298
4
- data.tar.gz: b85411d05c86ccc52727047c74d82dc30e16df41f374ac6f64d760776be923fc
3
+ metadata.gz: a8caed2ed693770223fcf3ec7e28c499c54ad1a2345e132bb182f4ca167a7f68
4
+ data.tar.gz: f8f49257aef8acc7fef826ffcb1c1ddb0c81a814488b45f5f0997f5dd6eec4cf
5
5
  SHA512:
6
- metadata.gz: d858caa697993c8c8336e2b15a5a8e1bf21d939678513874426207e7002a052d82f0ed2020ed7cef54ec14e97aca0e2ce23ff8442cd346d72ea45d4975d4373d
7
- data.tar.gz: fda398a2576f28e0dff7196e46ce0d51e4e73b4db4f4f59d10e3e2fd124913cc0af2533428bd0a8a8b83f7b6b334757540b556b1160c9adf8dbc6dd9dab827c6
6
+ metadata.gz: 1a1b02f55e19af0f26164a8c9dda4aef819791ccb0774ec793b72fa23a352e4c9c52044555d34871e26f04547f3f6bce011738668054fa69e88a800b689397b2
7
+ data.tar.gz: d9a68924f0e3f7d0796056f225d41ad905783b5ae1b6766434b8aaf85b6722ba6cfbbb1a92c12237edd4625f02f7e5a55bc0d5289ec6da555846d07c74ef767f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release History
2
2
 
3
+ ### 1.2.0 (2022-06-23)
4
+
5
+ * Updated minimum Ruby version to 2.6
6
+
3
7
  ### 1.1.3 (2022-04-20)
4
8
 
5
9
  #### Documentation
@@ -32,28 +32,24 @@ module Google
32
32
  PROJECT_ID_VAR = "GOOGLE_PROJECT_ID".freeze
33
33
  GCLOUD_POSIX_COMMAND = "gcloud".freeze
34
34
  GCLOUD_WINDOWS_COMMAND = "gcloud.cmd".freeze
35
- GCLOUD_CONFIG_COMMAND =
36
- "config config-helper --format json --verbosity none".freeze
35
+ GCLOUD_CONFIG_COMMAND = "config config-helper --format json --verbosity none".freeze
37
36
 
38
37
  CREDENTIALS_FILE_NAME = "application_default_credentials.json".freeze
39
- NOT_FOUND_ERROR =
40
- "Unable to read the credential file specified by #{ENV_VAR}".freeze
38
+ NOT_FOUND_ERROR = "Unable to read the credential file specified by #{ENV_VAR}".freeze
41
39
  WELL_KNOWN_PATH = "gcloud/#{CREDENTIALS_FILE_NAME}".freeze
42
40
  WELL_KNOWN_ERROR = "Unable to read the default credential file".freeze
43
41
 
44
- SYSTEM_DEFAULT_ERROR =
45
- "Unable to read the system default credential file".freeze
42
+ SYSTEM_DEFAULT_ERROR = "Unable to read the system default credential file".freeze
46
43
 
47
44
  CLOUD_SDK_CLIENT_ID = "764086051850-6qr4p6gpi6hn506pt8ejuq83di341hur.app"\
48
- "s.googleusercontent.com".freeze
49
-
50
- CLOUD_SDK_CREDENTIALS_WARNING = "Your application has authenticated using end user "\
51
- "credentials from Google Cloud SDK. We recommend that most server applications use "\
52
- "service accounts instead. If your application continues to use end user credentials "\
53
- 'from Cloud SDK, you might receive a "quota exceeded" or "API not enabled" error. For '\
54
- "more information about service accounts, see "\
55
- "https://cloud.google.com/docs/authentication/. To suppress this message, set the "\
56
- "GOOGLE_AUTH_SUPPRESS_CREDENTIALS_WARNINGS environment variable.".freeze
45
+ "s.googleusercontent.com".freeze
46
+
47
+ CLOUD_SDK_CREDENTIALS_WARNING =
48
+ "Your application has authenticated using end user credentials from Google Cloud SDK. We recommend that most" \
49
+ " server applications use service accounts instead. If your application continues to use end user credentials" \
50
+ ' from Cloud SDK, you might receive a "quota exceeded" or "API not enabled" error. For more information about' \
51
+ " service accounts, see https://cloud.google.com/docs/authentication/. To suppress this message, set the"\
52
+ " GOOGLE_AUTH_SUPPRESS_CREDENTIALS_WARNINGS environment variable.".freeze
57
53
 
58
54
  # make_creds proxies the construction of a credentials instance
59
55
  #
@@ -16,6 +16,6 @@ module Google
16
16
  # Module Auth provides classes that provide Google-specific authorization
17
17
  # used to access Google APIs.
18
18
  module Auth
19
- VERSION = "1.1.3".freeze
19
+ VERSION = "1.2.0".freeze
20
20
  end
21
21
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: googleauth
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.3
4
+ version: 1.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tim Emiola
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-04-20 00:00:00.000000000 Z
11
+ date: 2022-06-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday
@@ -170,14 +170,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
170
170
  requirements:
171
171
  - - ">="
172
172
  - !ruby/object:Gem::Version
173
- version: '2.5'
173
+ version: '2.6'
174
174
  required_rubygems_version: !ruby/object:Gem::Requirement
175
175
  requirements:
176
176
  - - ">="
177
177
  - !ruby/object:Gem::Version
178
178
  version: '0'
179
179
  requirements: []
180
- rubygems_version: 3.3.5
180
+ rubygems_version: 3.3.14
181
181
  signing_key:
182
182
  specification_version: 4
183
183
  summary: Google Auth Library for Ruby