google-cloud-bigquery 1.18.0 → 1.18.1
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 +8 -0
- data/lib/google/cloud/bigquery/table/async_inserter.rb +3 -3
- data/lib/google/cloud/bigquery/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5906552349d5601779e5fc80cbc4dbcb054ecbc810885fa6db0ec617e2253a2a
|
|
4
|
+
data.tar.gz: 3e077eaf5f351d697058b97a89cc2fccc0c8a9f2af6f8d8263f2ea5ae7f738da
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3c031b1150418cb31a835b9996c6ce31322ffc5b3cbefd05520283ffb11695967c920ec051ab53f726e8968f9c343fd1839b355bc23483145556f5c401ab1c4e
|
|
7
|
+
data.tar.gz: da68f76f39a126cc17069a7e071721771321faeade8ee916b3cf33a580c5fccb775a463ea2e8046be803b4ca984a84833b3c21589082dc0f6aacf101e85a5fb5
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release History
|
|
2
2
|
|
|
3
|
+
### 1.18.1 / 2019-12-18
|
|
4
|
+
|
|
5
|
+
#### Bug Fixes
|
|
6
|
+
|
|
7
|
+
* Fix MonitorMixin usage on Ruby 2.7
|
|
8
|
+
* Ruby 2.7 will error if new_cond is called before super().
|
|
9
|
+
* Make the call to super() be the first call in initialize
|
|
10
|
+
|
|
3
11
|
### 1.18.0 / 2019-11-06
|
|
4
12
|
|
|
5
13
|
#### Features
|
|
@@ -73,6 +73,9 @@ module Google
|
|
|
73
73
|
# @private
|
|
74
74
|
def initialize table, skip_invalid: nil, ignore_unknown: nil, max_bytes: 10_000_000, max_rows: 500,
|
|
75
75
|
interval: 10, threads: 4, &block
|
|
76
|
+
# init MonitorMixin
|
|
77
|
+
super()
|
|
78
|
+
|
|
76
79
|
@table = table
|
|
77
80
|
@skip_invalid = skip_invalid
|
|
78
81
|
@ignore_unknown = ignore_unknown
|
|
@@ -88,9 +91,6 @@ module Google
|
|
|
88
91
|
@thread_pool = Concurrent::ThreadPoolExecutor.new max_threads: @threads
|
|
89
92
|
|
|
90
93
|
@cond = new_cond
|
|
91
|
-
|
|
92
|
-
# init MonitorMixin
|
|
93
|
-
super()
|
|
94
94
|
end
|
|
95
95
|
|
|
96
96
|
##
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-cloud-bigquery
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.18.
|
|
4
|
+
version: 1.18.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Mike Moore
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2019-
|
|
12
|
+
date: 2019-12-20 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: concurrent-ruby
|