google-cloud-env 2.2.1 → 2.3.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 +4 -4
- data/CHANGELOG.md +12 -0
- data/lib/google/cloud/env/compute_metadata.rb +3 -0
- data/lib/google/cloud/env/version.rb +1 -1
- metadata +20 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ee30017f8ce2afb2e16bbc2454e11aedc0e84bec021a6d5c25d36e35f236559f
|
4
|
+
data.tar.gz: dca562b5ce756af8c59a338ec5745c0fa0655bb3a4c4f4c27b5d52541d747f6e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1712c626416d21011bd9b5d8997f745a0ffdd902f73f26c0cb2eb5cf5e4dac8f89edc38a732fad7986294b73399191774edfc635beb084be5e56e93a0840e7a7
|
7
|
+
data.tar.gz: 72fa796fdc5ad759cb1fb41d70a8869819aa51d1dc4ce679cb48211d83481d5b8a367046c36396f66516b42febc0082ae280498c318bed78e7d49e656c87a3ea
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,17 @@
|
|
1
1
|
# Release History
|
2
2
|
|
3
|
+
### 2.3.0 (2025-04-30)
|
4
|
+
|
5
|
+
#### Features
|
6
|
+
|
7
|
+
* updated required ruby version to 3.1 ([#84](https://github.com/googleapis/ruby-cloud-env/issues/84))
|
8
|
+
|
9
|
+
### 2.2.2 (2025-03-13)
|
10
|
+
|
11
|
+
#### Bug Fixes
|
12
|
+
|
13
|
+
* Updated dependencies to include base64 for Ruby 3.4 ([#81](https://github.com/googleapis/ruby-cloud-env/issues/81))
|
14
|
+
|
3
15
|
### 2.2.1 (2024-10-04)
|
4
16
|
|
5
17
|
#### Bug Fixes
|
@@ -14,6 +14,7 @@
|
|
14
14
|
# See the License for the specific language governing permissions and
|
15
15
|
# limitations under the License.
|
16
16
|
|
17
|
+
require "base64"
|
17
18
|
require "faraday"
|
18
19
|
require "json"
|
19
20
|
|
@@ -670,6 +671,7 @@ module Google
|
|
670
671
|
Errno::ETIMEDOUT,
|
671
672
|
Timeout::Error
|
672
673
|
].freeze
|
674
|
+
private_constant :TRANSIENT_EXCEPTIONS
|
673
675
|
|
674
676
|
##
|
675
677
|
# @private
|
@@ -693,6 +695,7 @@ module Google
|
|
693
695
|
# than the previous old token. See internal issue b/311414224.
|
694
696
|
#
|
695
697
|
TOKEN_EXPIRY_BUFFER = 210
|
698
|
+
private_constant :TOKEN_EXPIRY_BUFFER
|
696
699
|
|
697
700
|
##
|
698
701
|
# @private
|
metadata
CHANGED
@@ -1,15 +1,28 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-env
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Daniel Azuma
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
12
|
+
- !ruby/object:Gem::Dependency
|
13
|
+
name: base64
|
14
|
+
requirement: !ruby/object:Gem::Requirement
|
15
|
+
requirements:
|
16
|
+
- - "~>"
|
17
|
+
- !ruby/object:Gem::Version
|
18
|
+
version: '0.2'
|
19
|
+
type: :runtime
|
20
|
+
prerelease: false
|
21
|
+
version_requirements: !ruby/object:Gem::Requirement
|
22
|
+
requirements:
|
23
|
+
- - "~>"
|
24
|
+
- !ruby/object:Gem::Version
|
25
|
+
version: '0.2'
|
13
26
|
- !ruby/object:Gem::Dependency
|
14
27
|
name: faraday
|
15
28
|
requirement: !ruby/object:Gem::Requirement
|
@@ -59,11 +72,10 @@ homepage: https://github.com/googleapis/ruby-cloud-env
|
|
59
72
|
licenses:
|
60
73
|
- Apache-2.0
|
61
74
|
metadata:
|
62
|
-
changelog_uri: https://rubydoc.info/gems/google-cloud-env/2.
|
75
|
+
changelog_uri: https://rubydoc.info/gems/google-cloud-env/2.3.0/CHANGELOG.md
|
63
76
|
source_code_uri: https://github.com/googleapis/ruby-cloud-env
|
64
77
|
bug_tracker_uri: https://github.com/googleapis/ruby-cloud-env/issues
|
65
|
-
documentation_uri: https://rubydoc.info/gems/google-cloud-env/2.
|
66
|
-
post_install_message:
|
78
|
+
documentation_uri: https://rubydoc.info/gems/google-cloud-env/2.3.0
|
67
79
|
rdoc_options: []
|
68
80
|
require_paths:
|
69
81
|
- lib
|
@@ -71,15 +83,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
71
83
|
requirements:
|
72
84
|
- - ">="
|
73
85
|
- !ruby/object:Gem::Version
|
74
|
-
version: '3.
|
86
|
+
version: '3.1'
|
75
87
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
76
88
|
requirements:
|
77
89
|
- - ">="
|
78
90
|
- !ruby/object:Gem::Version
|
79
91
|
version: '0'
|
80
92
|
requirements: []
|
81
|
-
rubygems_version: 3.
|
82
|
-
signing_key:
|
93
|
+
rubygems_version: 3.6.8
|
83
94
|
specification_version: 4
|
84
95
|
summary: Google Cloud Platform hosting environment information.
|
85
96
|
test_files: []
|