google-cloud-logging 2.4.0 → 2.6.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/logging/project.rb +0 -1
- data/lib/google/cloud/logging/service.rb +0 -1
- data/lib/google/cloud/logging/version.rb +1 -1
- metadata +12 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ca9ac0a8f2d6ea841d775c3aacc3913b6f8ddaeb938bb6c1792ea9b8fec83bc8
|
4
|
+
data.tar.gz: 742cd54d99be989270fc9afe8a9ffcee60e7e581479402d0afe60de58b9ea311
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a78b0502fe81b9d886b2d4798be34b2c41365961c3fd2ddf93c36f97a3366b778d578c984f5bcfffb87b5f751df3a64f373e5fa751366db31de380c3118f5b27
|
7
|
+
data.tar.gz: d7ab6c4f585264b1453608d6d1073e6482ab47dd20d0aa0d001a4cdd0938c1e5b87d7db513818d91dc081f95610f3f6a6c3bc163946e4d84f27181cd9a30632f
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,17 @@
|
|
1
1
|
# Release History
|
2
2
|
|
3
|
+
### 2.6.0 (2025-03-04)
|
4
|
+
|
5
|
+
#### Features
|
6
|
+
|
7
|
+
* Update minimum Ruby version to 3.0 ([#29261](https://github.com/googleapis/google-cloud-ruby/issues/29261))
|
8
|
+
|
9
|
+
### 2.5.0 (2024-07-09)
|
10
|
+
|
11
|
+
#### Features
|
12
|
+
|
13
|
+
* compatibility with GA releases of underlying versioned clients ([#26361](https://github.com/googleapis/google-cloud-ruby/issues/26361))
|
14
|
+
|
3
15
|
### 2.4.0 (2024-03-07)
|
4
16
|
|
5
17
|
#### Features
|
@@ -360,7 +360,6 @@ module Google
|
|
360
360
|
def async_writer max_batch_count: 10_000, max_batch_bytes: 10_000_000,
|
361
361
|
max_queue_size: 100, interval: 5, threads: 10,
|
362
362
|
partial_success: false
|
363
|
-
|
364
363
|
AsyncWriter.new self, max_count: max_batch_count,
|
365
364
|
max_bytes: max_batch_bytes,
|
366
365
|
max_queue: max_queue_size,
|
@@ -83,7 +83,6 @@ module Google
|
|
83
83
|
|
84
84
|
def list_entries resources: nil, filter: nil, order: nil, token: nil,
|
85
85
|
max: nil, projects: nil
|
86
|
-
|
87
86
|
project_ids = Array(projects).map { |p| "projects/#{p}" }
|
88
87
|
resource_names = Array(resources) + project_ids
|
89
88
|
resource_names = ["projects/#{@project}"] if resource_names.empty?
|
metadata
CHANGED
@@ -1,15 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-logging
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.6.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Mike Moore
|
8
8
|
- Chris Smith
|
9
|
-
autorequire:
|
10
9
|
bindir: bin
|
11
10
|
cert_chain: []
|
12
|
-
date:
|
11
|
+
date: 2025-03-04 00:00:00.000000000 Z
|
13
12
|
dependencies:
|
14
13
|
- !ruby/object:Gem::Dependency
|
15
14
|
name: google-cloud-core
|
@@ -29,16 +28,22 @@ dependencies:
|
|
29
28
|
name: google-cloud-logging-v2
|
30
29
|
requirement: !ruby/object:Gem::Requirement
|
31
30
|
requirements:
|
32
|
-
- - "
|
31
|
+
- - ">="
|
33
32
|
- !ruby/object:Gem::Version
|
34
33
|
version: '0.0'
|
34
|
+
- - "<"
|
35
|
+
- !ruby/object:Gem::Version
|
36
|
+
version: 2.a
|
35
37
|
type: :runtime
|
36
38
|
prerelease: false
|
37
39
|
version_requirements: !ruby/object:Gem::Requirement
|
38
40
|
requirements:
|
39
|
-
- - "
|
41
|
+
- - ">="
|
40
42
|
- !ruby/object:Gem::Version
|
41
43
|
version: '0.0'
|
44
|
+
- - "<"
|
45
|
+
- !ruby/object:Gem::Version
|
46
|
+
version: 2.a
|
42
47
|
- !ruby/object:Gem::Dependency
|
43
48
|
name: stackdriver-core
|
44
49
|
requirement: !ruby/object:Gem::Requirement
|
@@ -114,7 +119,6 @@ homepage: https://github.com/googleapis/google-cloud-ruby/tree/master/google-clo
|
|
114
119
|
licenses:
|
115
120
|
- Apache-2.0
|
116
121
|
metadata: {}
|
117
|
-
post_install_message:
|
118
122
|
rdoc_options: []
|
119
123
|
require_paths:
|
120
124
|
- lib
|
@@ -122,15 +126,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
122
126
|
requirements:
|
123
127
|
- - ">="
|
124
128
|
- !ruby/object:Gem::Version
|
125
|
-
version: '
|
129
|
+
version: '3.0'
|
126
130
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
127
131
|
requirements:
|
128
132
|
- - ">="
|
129
133
|
- !ruby/object:Gem::Version
|
130
134
|
version: '0'
|
131
135
|
requirements: []
|
132
|
-
rubygems_version: 3.5
|
133
|
-
signing_key:
|
136
|
+
rubygems_version: 3.6.5
|
134
137
|
specification_version: 4
|
135
138
|
summary: API Client library for Stackdriver Logging
|
136
139
|
test_files: []
|