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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a73d3045289c56feffa2def6b2f46764fa271e617629253b01e43bd689017f43
4
- data.tar.gz: ac4730e78ce2a9734bcfc9c8adc5bc87576e2cbd9171e59c970cf54972c7c93f
3
+ metadata.gz: 5906552349d5601779e5fc80cbc4dbcb054ecbc810885fa6db0ec617e2253a2a
4
+ data.tar.gz: 3e077eaf5f351d697058b97a89cc2fccc0c8a9f2af6f8d8263f2ea5ae7f738da
5
5
  SHA512:
6
- metadata.gz: 3b792a52259418fd31e3507723702b3d5934289e34bdc326b844f85b5495b57d6af208ccf4043f70c3ec3e5492691e03aa7ffadc92c223035b2a82dc2730b5ae
7
- data.tar.gz: 83eaa86026274ea0d0da3ee86770e0f10883510520fc35f3058bb37b5df09eb4f31f13db4fd5908f2056999128204bc4ab75606d4e4bffc1acd30dff7e334506
6
+ metadata.gz: 3c031b1150418cb31a835b9996c6ce31322ffc5b3cbefd05520283ffb11695967c920ec051ab53f726e8968f9c343fd1839b355bc23483145556f5c401ab1c4e
7
+ data.tar.gz: da68f76f39a126cc17069a7e071721771321faeade8ee916b3cf33a580c5fccb775a463ea2e8046be803b4ca984a84833b3c21589082dc0f6aacf101e85a5fb5
@@ -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
  ##
@@ -16,7 +16,7 @@
16
16
  module Google
17
17
  module Cloud
18
18
  module Bigquery
19
- VERSION = "1.18.0".freeze
19
+ VERSION = "1.18.1".freeze
20
20
  end
21
21
  end
22
22
  end
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.0
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-11-07 00:00:00.000000000 Z
12
+ date: 2019-12-20 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: concurrent-ruby