logstash-output-google_bigquery 4.5.0-java → 4.6.0-java
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 +3 -0
- data/docs/index.asciidoc +1 -18
- data/lib/logstash/outputs/google_bigquery.rb +0 -1
- data/lib/logstash-output-google_bigquery_jars.rb +1 -1
- data/vendor/jar-dependencies/org/logstash/outputs/plugin/4.6.0/plugin-4.6.0.jar +0 -0
- data/version +1 -1
- metadata +10 -10
- data/vendor/jar-dependencies/org/logstash/outputs/plugin/4.5.0/plugin-4.5.0.jar +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8025de1bcc74d306ea04a391541abac9d4a45050645a4e0084cdbfac370566ee
|
|
4
|
+
data.tar.gz: c91a8206dd182f37e13c6e047374d9fc8d4c3656b1d76a94ba2042790e2d1947
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 360e758583bdb7c612ed97c9a6d2a2554a6b7e429f26fd7ecf454c4925300cb02f825582c1b345125c65b2cd31fa0f8f6e2fa4f92dd7bcda89189e2c74cd29b0
|
|
7
|
+
data.tar.gz: 6e1a6e166b4139745fa347c65553ee0ddd499f037416dcb4a69ae4230994f559655abaff92079ef3fbd5931680b40d47bab3b124839b7d80eb20d41045e85503
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
## 4.6.0
|
|
2
|
+
- Removed obsolete `key_path` option [#75](https://github.com/logstash-plugins/logstash-output-google_bigquery/pull/75)
|
|
3
|
+
|
|
1
4
|
## 4.5.0
|
|
2
5
|
- Updated Google Cloud Storage client library, from `2.31.1` to `2.36.0` [#72](https://github.com/logstash-plugins/logstash-output-google_bigquery/pull/72)
|
|
3
6
|
|
data/docs/index.asciidoc
CHANGED
|
@@ -97,7 +97,6 @@ This plugin supports the following configuration options plus the <<plugins-{typ
|
|
|
97
97
|
| <<plugins-{type}s-{plugin}-json_key_file>> |<<string,string>>|No
|
|
98
98
|
| <<plugins-{type}s-{plugin}-json_schema>> |<<hash,hash>>|No
|
|
99
99
|
| <<plugins-{type}s-{plugin}-key_password>> |<<string,string>>|__Deprecated__
|
|
100
|
-
| <<plugins-{type}s-{plugin}-key_path>> |<<string,string>>|*Obsolete*
|
|
101
100
|
| <<plugins-{type}s-{plugin}-project_id>> |<<string,string>>|Yes
|
|
102
101
|
| <<plugins-{type}s-{plugin}-service_account>> |<<string,string>>|__Deprecated__
|
|
103
102
|
| <<plugins-{type}s-{plugin}-skip_invalid_rows>> |<<boolean,boolean>>|No
|
|
@@ -225,7 +224,7 @@ mutate {
|
|
|
225
224
|
[id="plugins-{type}s-{plugin}-json_key_file"]
|
|
226
225
|
===== `json_key_file`
|
|
227
226
|
|
|
228
|
-
added[4.0.0, "Replaces <<plugins-{type}s-{plugin}-key_password
|
|
227
|
+
added[4.0.0, "Replaces <<plugins-{type}s-{plugin}-key_password>> and <<plugins-{type}s-{plugin}-service_account>>."]
|
|
229
228
|
|
|
230
229
|
* Value type is <<string,string>>
|
|
231
230
|
* Default value is `nil`
|
|
@@ -278,22 +277,6 @@ deprecated[4.0.0, Replaced by `json_key_file` or by using ADC. See <<plugins-{ty
|
|
|
278
277
|
* Value type is <<string,string>>
|
|
279
278
|
|
|
280
279
|
|
|
281
|
-
[id="plugins-{type}s-{plugin}-key_path"]
|
|
282
|
-
===== `key_path`
|
|
283
|
-
|
|
284
|
-
* Value type is <<string,string>>
|
|
285
|
-
|
|
286
|
-
**Obsolete:** The PKCS12 key file format is no longer supported.
|
|
287
|
-
|
|
288
|
-
Please use one of the following mechanisms:
|
|
289
|
-
|
|
290
|
-
* https://cloud.google.com/docs/authentication/production[Application Default Credentials (ADC)],
|
|
291
|
-
configured via environment variables on Compute Engine, Kubernetes Engine, App Engine, or
|
|
292
|
-
Cloud Functions.
|
|
293
|
-
* A JSON authentication key file. You can generate them in the console for the service account
|
|
294
|
-
like you did with the `.P12` file or with the following command:
|
|
295
|
-
`gcloud iam service-accounts keys create key.json --iam-account my-sa-123@my-project-123.iam.gserviceaccount.com`
|
|
296
|
-
|
|
297
280
|
[id="plugins-{type}s-{plugin}-project_id"]
|
|
298
281
|
===== `project_id`
|
|
299
282
|
|
|
@@ -168,7 +168,6 @@ class LogStash::Outputs::GoogleBigQuery < LogStash::Outputs::Base
|
|
|
168
168
|
# The following configuration options still exist to alert users that are using them
|
|
169
169
|
config :uploader_interval_secs, validate: :number, deprecated: 'No longer used.'
|
|
170
170
|
config :deleter_interval_secs, validate: :number, deprecated: 'No longer used.'
|
|
171
|
-
config :key_path, validate: :string, obsolete: 'Use json_key_file or ADC instead.'
|
|
172
171
|
config :key_password, validate: :string, deprecated: 'No longer needed with json_key_file or ADC.'
|
|
173
172
|
config :service_account, validate: :string, deprecated: 'No longer needed with json_key_file or ADC.'
|
|
174
173
|
config :temp_file_prefix, validate: :string, deprecated: 'No longer used.'
|
|
@@ -71,4 +71,4 @@ require_jar('org.json', 'json', '20231013')
|
|
|
71
71
|
require_jar('org.slf4j', 'slf4j-api', '1.7.25')
|
|
72
72
|
require_jar('org.threeten', 'threeten-extra', '1.7.2')
|
|
73
73
|
require_jar('org.threeten', 'threetenbp', '1.6.8')
|
|
74
|
-
require_jar('org.logstash.outputs', 'plugin', '4.
|
|
74
|
+
require_jar('org.logstash.outputs', 'plugin', '4.6.0')
|
data/version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
4.
|
|
1
|
+
4.6.0
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: logstash-output-google_bigquery
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 4.
|
|
4
|
+
version: 4.6.0
|
|
5
5
|
platform: java
|
|
6
6
|
authors:
|
|
7
7
|
- Elastic
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-
|
|
11
|
+
date: 2024-09-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -17,8 +17,8 @@ dependencies:
|
|
|
17
17
|
- !ruby/object:Gem::Version
|
|
18
18
|
version: 8.3.0
|
|
19
19
|
name: logstash-core
|
|
20
|
-
prerelease: false
|
|
21
20
|
type: :runtime
|
|
21
|
+
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
24
|
- - ">="
|
|
@@ -31,8 +31,8 @@ dependencies:
|
|
|
31
31
|
- !ruby/object:Gem::Version
|
|
32
32
|
version: '0'
|
|
33
33
|
name: logstash-codec-plain
|
|
34
|
-
prerelease: false
|
|
35
34
|
type: :runtime
|
|
35
|
+
prerelease: false
|
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
|
37
37
|
requirements:
|
|
38
38
|
- - ">="
|
|
@@ -45,8 +45,8 @@ dependencies:
|
|
|
45
45
|
- !ruby/object:Gem::Version
|
|
46
46
|
version: '2'
|
|
47
47
|
name: mime-types
|
|
48
|
-
prerelease: false
|
|
49
48
|
type: :runtime
|
|
49
|
+
prerelease: false
|
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
|
51
51
|
requirements:
|
|
52
52
|
- - "~>"
|
|
@@ -62,8 +62,8 @@ dependencies:
|
|
|
62
62
|
- !ruby/object:Gem::Version
|
|
63
63
|
version: '2.99'
|
|
64
64
|
name: logstash-core-plugin-api
|
|
65
|
-
prerelease: false
|
|
66
65
|
type: :runtime
|
|
66
|
+
prerelease: false
|
|
67
67
|
version_requirements: !ruby/object:Gem::Requirement
|
|
68
68
|
requirements:
|
|
69
69
|
- - ">="
|
|
@@ -79,8 +79,8 @@ dependencies:
|
|
|
79
79
|
- !ruby/object:Gem::Version
|
|
80
80
|
version: '0'
|
|
81
81
|
name: logstash-devutils
|
|
82
|
-
prerelease: false
|
|
83
82
|
type: :development
|
|
83
|
+
prerelease: false
|
|
84
84
|
version_requirements: !ruby/object:Gem::Requirement
|
|
85
85
|
requirements:
|
|
86
86
|
- - ">="
|
|
@@ -93,8 +93,8 @@ dependencies:
|
|
|
93
93
|
- !ruby/object:Gem::Version
|
|
94
94
|
version: '0.4'
|
|
95
95
|
name: jar-dependencies
|
|
96
|
-
prerelease: false
|
|
97
96
|
type: :development
|
|
97
|
+
prerelease: false
|
|
98
98
|
version_requirements: !ruby/object:Gem::Requirement
|
|
99
99
|
requirements:
|
|
100
100
|
- - "~>"
|
|
@@ -193,7 +193,7 @@ files:
|
|
|
193
193
|
- vendor/jar-dependencies/org/checkerframework/checker-qual/3.40.0/checker-qual-3.40.0.jar
|
|
194
194
|
- vendor/jar-dependencies/org/conscrypt/conscrypt-openjdk-uber/2.5.2/conscrypt-openjdk-uber-2.5.2.jar
|
|
195
195
|
- vendor/jar-dependencies/org/json/json/20231013/json-20231013.jar
|
|
196
|
-
- vendor/jar-dependencies/org/logstash/outputs/plugin/4.
|
|
196
|
+
- vendor/jar-dependencies/org/logstash/outputs/plugin/4.6.0/plugin-4.6.0.jar
|
|
197
197
|
- vendor/jar-dependencies/org/slf4j/slf4j-api/1.7.25/slf4j-api-1.7.25.jar
|
|
198
198
|
- vendor/jar-dependencies/org/threeten/threeten-extra/1.7.2/threeten-extra-1.7.2.jar
|
|
199
199
|
- vendor/jar-dependencies/org/threeten/threetenbp/1.6.8/threetenbp-1.6.8.jar
|
|
@@ -220,7 +220,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
220
220
|
- !ruby/object:Gem::Version
|
|
221
221
|
version: '0'
|
|
222
222
|
requirements: []
|
|
223
|
-
rubygems_version: 3.
|
|
223
|
+
rubygems_version: 3.3.26
|
|
224
224
|
signing_key:
|
|
225
225
|
specification_version: 4
|
|
226
226
|
summary: Writes events to Google BigQuery
|
|
Binary file
|