google-apis-core 0.9.1 → 0.9.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +13 -0
- data/lib/google/api_client/client_secrets.rb +1 -1
- data/lib/google/apis/core/batch.rb +0 -1
- data/lib/google/apis/core/http_command.rb +3 -1
- data/lib/google/apis/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: 7e29025436ed278972d36fc429f233b081edc5d40fa68921b71ae65758ece231
|
4
|
+
data.tar.gz: 2a41e0145da41d66e0455f58b4ba0213ea4468b7d9ed94d4fcdcfba1bc8895f2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '0540862757c8e96b73c1378544d3aac273f446f16ef430e3c5a9c36859ead4a1542502e896603ec9b5a92f119c3c2b11b2fc1e376fd0e838d93787d8d71d73f4'
|
7
|
+
data.tar.gz: c6ffa51666f75b6de32ab113e36eb9774a0c77d8050e9b6f8d18ca6a9acbd5b3f1c84413339b8d58dfe8b7eefd8bf8b758b3d1fdb238e015c8a5ae41c8ebd701
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,18 @@
|
|
1
1
|
# Release History
|
2
2
|
|
3
|
+
### 0.9.3 (2023-01-04)
|
4
|
+
|
5
|
+
#### Bug Fixes
|
6
|
+
|
7
|
+
* Removed some dead code ([#13099](https://github.com/googleapis/google-api-ruby-client/issues/13099))
|
8
|
+
* Replace `File.exists?` with `File.exist?` for compatibility with Ruby 3.2 ([#13161](https://github.com/googleapis/google-api-ruby-client/issues/13161))
|
9
|
+
|
10
|
+
### 0.9.2 (2022-12-13)
|
11
|
+
|
12
|
+
#### Bug Fixes
|
13
|
+
|
14
|
+
* Update UNSAFE_CLASS_NAMES ([#13030](https://github.com/googleapis/google-api-ruby-client/issues/13030))
|
15
|
+
|
3
16
|
### 0.9.1 (2022-10-18)
|
4
17
|
|
5
18
|
#### Bug Fixes
|
@@ -61,7 +61,7 @@ module Google
|
|
61
61
|
end
|
62
62
|
while filename == nil
|
63
63
|
search_path ||= File.expand_path('.')
|
64
|
-
if File.
|
64
|
+
if File.exist?(File.join(search_path, 'client_secrets.json'))
|
65
65
|
filename = File.join(search_path, 'client_secrets.json')
|
66
66
|
elsif search_path == File.expand_path('..', search_path)
|
67
67
|
raise ArgumentError,
|
@@ -346,7 +346,9 @@ module Google
|
|
346
346
|
private
|
347
347
|
|
348
348
|
UNSAFE_CLASS_NAMES = [
|
349
|
-
"Google::Apis::CloudkmsV1::DecryptResponse"
|
349
|
+
"Google::Apis::CloudkmsV1::DecryptResponse",
|
350
|
+
"Google::Apis::SecretmanagerV1::SecretPayload",
|
351
|
+
"Google::Apis::SecretmanagerV1beta1::SecretPayload"
|
350
352
|
]
|
351
353
|
|
352
354
|
def safe_object_representation obj
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-core
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.9.
|
4
|
+
version: 0.9.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2023-01-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: representable
|
@@ -186,7 +186,7 @@ licenses:
|
|
186
186
|
metadata:
|
187
187
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
188
188
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/google-apis-core/CHANGELOG.md
|
189
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-core/v0.9.
|
189
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-core/v0.9.3
|
190
190
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/google-apis-core
|
191
191
|
post_install_message:
|
192
192
|
rdoc_options: []
|