embulk-input-bigquery 0.0.6 → 0.0.7

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: efd02ce4fc80435c9c8201987b371039e9b95bd0c3cbcffb36e57abb7b7ebb84
4
- data.tar.gz: 4b5569cb00d85d942294f394288458cec16717f730044d5abe302ac280041ddf
3
+ metadata.gz: 74492a2fb00e8e6c9929271c9fd30297b2545b2e40632a0b2d39a1d4ba5a8eea
4
+ data.tar.gz: a035e8a01438ffc11c4d96391d18eebdcaa468262857db8efc59095a56a9a8e1
5
5
  SHA512:
6
- metadata.gz: f196cd00abd736c0ed95d9619af52035256e75685fb4e9c519dc3eb99aa566e61e1bc6096f01e701bbe74afa4618efbdecb3d4042745dce16abdd34990a3d6e2
7
- data.tar.gz: 89acc43d7c8f4add08b92235302936962ff55feb3c6dc50484b2866d97eaeac0b0b31751149761089657e2a079ae1330437b7e98c75aa0c1b0128522ded7fb9f
6
+ metadata.gz: 0aef9048ab2561f76567079d11bb8aac1afcd6fb9717bbadc3d90018504eb8c65766875a8dbee342622cb1908974b4770ad2344749dd7fe1f5027446d797ccf5
7
+ data.tar.gz: df5751afcffd44c33f0b7ddc18d30b400e68b4b1e68b1a4e0c3ab13154140f4748ba912dd55b4016208bb644de4056c72ca547d20d7851fb5ce8791d7df930a0
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ # 0.0.7 (2019/04/09)
2
+
3
+ * Allow google-cloud-bigquery version between v0.24 and v1.12
4
+
1
5
  # 0.0.6 (2018/05/16)
2
6
 
3
7
  * Support location option to allow to use location other than the US or EU multi-region.
data/README.md CHANGED
@@ -22,7 +22,7 @@ This plugin uses the gem [`google-cloud(Google Cloud Client Library for Ruby)`](
22
22
  | cache | boolean | optional | true | Whether to look for the result in the query cache. The query cache is a best-effort cache that will be flushed whenever tables in the query are modified. The default value is true. For more information, see [query caching](https://developers.google.com/bigquery/querying-data). |
23
23
  | standard\_sql | boolean | optional | true | Specifies whether to use BigQuery's [standard SQL](https://cloud.google.com/bigquery/docs/reference/standard-sql/) dialect for this query. If set to true, the query will use standard SQL rather than the [legacy SQL](https://cloud.google.com/bigquery/docs/reference/legacy-sql) dialect. When set to true, the values of `large_results` and `flatten` are ignored; the query will be run as if `large_results` is true and `flatten` is false. Optional. The default value is true. |
24
24
  | legacy\_sql | boolean | optional | false | legacy_sql Specifies whether to use BigQuery's [legacy SQL](https://cloud.google.com/bigquery/docs/reference/legacy-sql) dialect for this query. If set to false, the query will use BigQuery's [standard SQL](https://cloud.google.com/bigquery/docs/reference/standard-sql/) When set to false, the values of `large_results` and `flatten` are ignored; the query will be run as if `large_results` is true and `flatten` is false. Optional. The default value is false. |
25
- | location | string | optional | `null` | If your data is in a location other than the US or EU multi-region, you must specify the location. See also [Dataset Locations | BigQuery | Google Cloud](https://cloud.google.com/bigquery/docs/dataset-locations) |
25
+ | location | string | optional | `null` | If your data is in a location other than the US or EU multi-region, you must specify the location. See also [Dataset Locations \| BigQuery \| Google Cloud](https://cloud.google.com/bigquery/docs/dataset-locations) |
26
26
 
27
27
  ## Example
28
28
 
@@ -18,7 +18,7 @@ Gem::Specification.new do |spec|
18
18
  spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
19
  spec.require_paths = ['lib']
20
20
 
21
- spec.add_dependency 'google-cloud-bigquery', ['>= 0.24', '< 1.5.0']
21
+ spec.add_dependency 'google-cloud-bigquery', ['>= 0.24', '< 1.12']
22
22
  spec.add_development_dependency 'bundler', '~> 1.3'
23
23
  spec.add_development_dependency 'rake'
24
24
  end
@@ -1,7 +1,7 @@
1
1
  module Embulk
2
2
  module Input
3
3
  module Bigquery
4
- VERSION = '0.0.6'.freeze
4
+ VERSION = '0.0.7'.freeze
5
5
  end
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: embulk-input-bigquery
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.6
4
+ version: 0.0.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - potato2003
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2018-05-15 00:00:00.000000000 Z
13
+ date: 2019-04-09 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: google-cloud-bigquery
@@ -21,7 +21,7 @@ dependencies:
21
21
  version: '0.24'
22
22
  - - "<"
23
23
  - !ruby/object:Gem::Version
24
- version: 1.5.0
24
+ version: '1.12'
25
25
  type: :runtime
26
26
  prerelease: false
27
27
  version_requirements: !ruby/object:Gem::Requirement
@@ -31,7 +31,7 @@ dependencies:
31
31
  version: '0.24'
32
32
  - - "<"
33
33
  - !ruby/object:Gem::Version
34
- version: 1.5.0
34
+ version: '1.12'
35
35
  - !ruby/object:Gem::Dependency
36
36
  name: bundler
37
37
  requirement: !ruby/object:Gem::Requirement